summaryrefslogtreecommitdiff
path: root/netfs/daemonSystem.h
blob: 3d5f2be1ad57ce7050ed76b8ca96b076d5a4f802 (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 std::string & path, const Ice::Current&);
};

#endif