diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-06-26 17:25:10 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-06-26 17:25:10 +0200 |
commit | 18568ff0ff3dce89d694b494c5dfc9a32e63c9e6 (patch) | |
tree | cd36895fdab3b30b8b61fcc3e12f8a92bb292203 /tests/cli/lib/libtest/test/test.cli | |
parent | 95239b7c5404965d4f5ef997b5b75bf542a25192 (diff) |
Part two of dependency injection with auto-generation support
Diffstat (limited to 'tests/cli/lib/libtest/test/test.cli')
-rw-r--r-- | tests/cli/lib/libtest/test/test.cli | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/cli/lib/libtest/test/test.cli b/tests/cli/lib/libtest/test/test.cli index 8bc51e8..f19d56c 100644 --- a/tests/cli/lib/libtest/test/test.cli +++ b/tests/cli/lib/libtest/test/test.cli @@ -1,8 +1,9 @@ +include <test/base.cli>; + namespace test { - class options + class options: base { bool --help; - bool --version; }; } |