blob: 48670fc665099726fc76fb054f5c608fcd855293 (
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(Ice::Long tok, const std::string & path, const Ice::Current&);
};
#endif
|