diff options
Diffstat (limited to 'utils/libtest/include')
-rw-r--r-- | utils/libtest/include/libtest/all.hpp | 11 | ||||
-rw-r--r-- | utils/libtest/include/libtest/device.hpp | 22 |
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; + }; +} |