From 8e761289a2446367267c6c0d9a26e734f0f78306 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Wed, 16 Dec 2020 20:29:05 +0300 Subject: Get rid of legacy build systems and rename cutl/ to libcutl/ --- libcutl/meta/answer.hxx | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 libcutl/meta/answer.hxx (limited to 'libcutl/meta/answer.hxx') diff --git a/libcutl/meta/answer.hxx b/libcutl/meta/answer.hxx new file mode 100644 index 0000000..4a94c90 --- /dev/null +++ b/libcutl/meta/answer.hxx @@ -0,0 +1,23 @@ +// file : libcutl/meta/answer.hxx +// license : MIT; see accompanying LICENSE file + +#ifndef LIBCUTL_META_ANSWER_HXX +#define LIBCUTL_META_ANSWER_HXX + +namespace cutl +{ + namespace meta + { + struct yes + { + char filling; + }; + + struct no + { + char filling[2]; + }; + } +} + +#endif // LIBCUTL_META_ANSWER_HXX -- cgit v1.1