diff options
Diffstat (limited to '')
-rw-r--r-- | utils/libtest/include/libtest/device.hpp | 22 |
1 files changed, 22 insertions, 0 deletions
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; + }; +} |