summaryrefslogtreecommitdiff
path: root/netfs/daemonModule.h
blob: 7525e742fb85509ba7fe5febeaa760f6ee6c5fab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef DAEMONMODULE_H
#define DAEMONMODULE_H

#include "daemon.h"

class DaemonModule {
	protected:
		DaemonModule(DaemonGlobalStatePtr dgs);

		DaemonGlobalStatePtr dgs;
};

#endif