aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/utils/libtest/include
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2015-07-16 00:55:21 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2015-07-16 00:55:21 +0300
commit45b86d409100912e321135a5c0e5181ce45c0495 (patch)
tree3ab94aaca1d4e3e07a361a68572cfadc575b0358 /utils/libtest/include
parentlibnt_path_converter: README update (diff)
downloadwindows7-drivers-45b86d409100912e321135a5c0e5181ce45c0495.tar.gz
windows7-drivers-45b86d409100912e321135a5c0e5181ce45c0495.zip
add libtest
Diffstat (limited to 'utils/libtest/include')
-rw-r--r--utils/libtest/include/libtest/all.hpp11
-rw-r--r--utils/libtest/include/libtest/device.hpp22
2 files changed, 33 insertions, 0 deletions
diff --git a/utils/libtest/include/libtest/all.hpp b/utils/libtest/include/libtest/all.hpp
new file mode 100644
index 0000000..899fc3d
--- /dev/null
+++ b/utils/libtest/include/libtest/all.hpp
@@ -0,0 +1,11 @@
+/**
+ * \file
+ * \author Egor Tensin <Egor.Tensin@gmail.com>
+ * \date 2015
+ * \copyright This file is licensed under the terms of the MIT License.
+ * See LICENSE.txt for details.
+ */
+
+#pragma once
+
+#include "device.hpp"
diff --git a/utils/libtest/include/libtest/device.hpp b/utils/libtest/include/libtest/device.hpp
new file mode 100644
index 0000000..365088d
--- /dev/null
+++ b/utils/libtest/include/libtest/device.hpp
@@ -0,0 +1,22 @@
+/**
+ * \file
+ * \author Egor Tensin <Egor.Tensin@gmail.com>
+ * \date 2015
+ * \copyright This file is licensed under the terms of the MIT License.
+ * See LICENSE.txt for details.
+ */
+
+#pragma once
+
+#include "libservice/all.hpp"
+
+namespace libtest
+{
+ class Device : libservice::Device
+ {
+ public:
+ Device();
+
+ unsigned int exchange_ints(unsigned int) const;
+ };
+}