From 45b86d409100912e321135a5c0e5181ce45c0495 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Thu, 16 Jul 2015 00:55:21 +0300 Subject: add libtest --- utils/libtest/include/libtest/all.hpp | 11 +++++++++++ utils/libtest/include/libtest/device.hpp | 22 ++++++++++++++++++++++ 2 files changed, 33 insertions(+) create mode 100644 utils/libtest/include/libtest/all.hpp create mode 100644 utils/libtest/include/libtest/device.hpp (limited to 'utils/libtest/include') 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 + * \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 + * \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; + }; +} -- cgit v1.2.3