8 |
|
#define _Mounter_hpp_ |
9 |
|
|
10 |
|
#include "Daemon.hpp" |
11 |
+ |
#include "Share.hpp" |
12 |
|
|
13 |
|
#ifdef MENES_PRAGMA_ONCE |
14 |
|
#pragma once |
17 |
|
class Mounter : public Daemon |
18 |
|
{ |
19 |
|
private: |
20 |
< |
const ext::String& config; |
20 |
> |
const api::Path& config; |
21 |
|
#ifdef __FreeBSD__ |
22 |
|
static ext::String secret; |
23 |
|
#endif |
24 |
|
virtual void load(); |
25 |
|
virtual void run(); |
26 |
|
public: |
27 |
< |
Mounter(const ext::String& config); |
27 |
> |
Mounter(const api::Path& config); |
28 |
|
virtual ~Mounter(); |
29 |
|
}; |
30 |
|
|
31 |
< |
#endif // _Mounter_hpp_ |
31 |
> |
#endif//_Mounter_hpp_ |