1
0
mirror of https://github.com/falk-werner/webfuse synced 2024-09-29 06:50:43 +00:00
falk-werner_webfuse/test-src/integration/webfuse/test/daemon.hpp

26 lines
420 B
C++
Raw Normal View History

2022-12-31 19:41:45 +00:00
#ifndef WEBFUSE_DAEMOM_HPP
#define WEBFUSE_DAEMOM_HPP
#include "webfuse/test/process.hpp"
#include <string>
namespace webfuse
{
class daemon
{
daemon(daemon const &) = delete;
daemon& operator=(daemon const &) = delete;
daemon(daemon &&) = delete;
daemon& operator=(daemon &&) = delete;
public:
explicit daemon(std::string const & mountpoint);
~daemon();
private:
process p;
};
}
#endif