1
0
mirror of https://github.com/falk-werner/webfuse synced 2024-10-27 20:34:10 +00:00
falk-werner_webfuse/src/webfuse/webfuse.hpp

24 lines
335 B
C++
Raw Normal View History

2022-11-12 11:29:30 +00:00
#ifndef WEBFUSE_HPP
#define WEBFUSE_HPP
namespace webfuse
{
class app
{
app(app const &) = delete;
app& operator=(app const &) = delete;
app(app &&) = delete;
app& operator=(app &&) = delete;
public:
app(int argc, char * argv[]);
~app();
int run();
private:
class detail;
detail * d;
};
}
#endif