├── .travis.yml ├── CMakeLists.txt ├── LICENSE ├── README.md ├── demo └── interop_with_boost_optional.hpp ├── documentation ├── how_do_i_do_x.md ├── overview.adoc ├── rationale.md ├── reference.adoc └── revisions.adoc ├── include └── ak_toolkit │ └── markable.hpp └── test └── test_markable.cpp /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akrzemi1/markable/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akrzemi1/markable/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akrzemi1/markable/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akrzemi1/markable/HEAD/README.md -------------------------------------------------------------------------------- /demo/interop_with_boost_optional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akrzemi1/markable/HEAD/demo/interop_with_boost_optional.hpp -------------------------------------------------------------------------------- /documentation/how_do_i_do_x.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akrzemi1/markable/HEAD/documentation/how_do_i_do_x.md -------------------------------------------------------------------------------- /documentation/overview.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akrzemi1/markable/HEAD/documentation/overview.adoc -------------------------------------------------------------------------------- /documentation/rationale.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akrzemi1/markable/HEAD/documentation/rationale.md -------------------------------------------------------------------------------- /documentation/reference.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akrzemi1/markable/HEAD/documentation/reference.adoc -------------------------------------------------------------------------------- /documentation/revisions.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akrzemi1/markable/HEAD/documentation/revisions.adoc -------------------------------------------------------------------------------- /include/ak_toolkit/markable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akrzemi1/markable/HEAD/include/ak_toolkit/markable.hpp -------------------------------------------------------------------------------- /test/test_markable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akrzemi1/markable/HEAD/test/test_markable.cpp --------------------------------------------------------------------------------