You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
420 B

#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