blob: e42484a81903e33abe2a352a43162e997d1b651b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef DAEMONSYSTEM_H
#define DAEMONSYSTEM_H
#include "netfsComms.h"
#include "daemonModule.h"
class SystemServer : public DaemonModule, public NetFSComms::System {
public:
SystemServer(DaemonGlobalStatePtr dgs);
virtual NetFSComms::VFS statfs(const NetFSComms::ReqEnv &, const std::string & path, const Ice::Current&);
};
#endif
|