aboutsummaryrefslogtreecommitdiffstats
path: root/fnet/src/tests/locking/dummy.h
diff options
context:
space:
mode:
Diffstat (limited to 'fnet/src/tests/locking/dummy.h')
-rw-r--r--fnet/src/tests/locking/dummy.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/fnet/src/tests/locking/dummy.h b/fnet/src/tests/locking/dummy.h
new file mode 100644
index 00000000000..9a3578b43e5
--- /dev/null
+++ b/fnet/src/tests/locking/dummy.h
@@ -0,0 +1,17 @@
+// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+#pragma once
+
+class DummyObj
+{
+public:
+ DummyObj();
+ ~DummyObj();
+};
+
+class DummyLock
+{
+public:
+ void Lock();
+ void Unlock();
+};
+