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