summaryrefslogtreecommitdiff
path: root/netfs/unittests/mockGlacier.h
blob: 61adcee644eb7e09f8c5807f0c0c825dd09c0705 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma once

#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;
};