summaryrefslogtreecommitdiff
path: root/netfs/unittests/mockGlacier.h
blob: 007715d12707840861af056d77d13a19dd7a4bb0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef MOCKGLACIER_H
#define MOCKGLACIER_H

#include <c++11Helpers.h>
#include <sys/types.h>
#include <visibility.h>

class DLL_PUBLIC Glacier {
public:
	Glacier();
	~Glacier();
	SPECIAL_MEMBERS_DELETE(Glacier);

private:
	const int lockdir;
	pid_t glacier;
};

#endif