├── .clang-format ├── .github └── workflows │ ├── build_and_test.yml │ ├── release.yml │ └── version_check.yml ├── CMakeLists.txt ├── CMakePresets.json ├── LICENSE.md ├── README.md ├── doc └── logo.jpg ├── examples ├── CMakeLists.txt ├── demo.h ├── demo.ini ├── demo.json ├── demo.shoal ├── demo.toml ├── demo.xml ├── demo.yaml ├── demo_all.cpp ├── demo_ini.cpp ├── demo_json.cpp ├── demo_json_root_list.cpp ├── demo_parser.cpp ├── demo_root_list.json ├── demo_root_list.yaml ├── demo_shoal.cpp ├── demo_toml.cpp ├── demo_xml.cpp ├── demo_yaml.cpp ├── demo_yaml_root_list.cpp ├── ex01.cpp ├── ex02.cpp ├── ex03.cpp ├── ex04.cpp ├── ex05.cpp └── print_demo.h ├── examples_static_refl ├── CMakeLists.txt ├── ex01_static_refl.cpp ├── ex02_static_refl.cpp ├── ex03_static_refl.cpp ├── ex04_static_refl.cpp └── ex05_static_refl.cpp ├── external └── seal_lake ├── formats └── CMakeLists.txt ├── functional_tests ├── error_dir_instead_of_file │ └── test.toast ├── error_nonexistent_file │ └── test.toast ├── example_1 │ └── test.toast ├── example_1_static_refl │ └── test.toast ├── example_2 │ └── test.toast ├── example_2_static_refl │ └── test.toast ├── example_3 │ └── test.toast ├── example_3_static_refl │ └── test.toast ├── example_4 │ └── test.toast ├── example_4_static_refl │ └── test.toast ├── lunchtoast.cfg ├── paths_to_filename.sh ├── test_ini │ └── test.toast ├── test_ini_static_refl │ └── test.toast ├── test_json │ └── test.toast ├── test_json_static_refl │ └── test.toast ├── test_shoal │ └── test.toast ├── test_shoal_static_refl │ └── test.toast ├── test_toml │ └── test.toast ├── test_toml_static_refl │ └── test.toast ├── test_xml │ └── test.toast ├── test_xml_static_refl │ └── test.toast ├── test_yaml │ └── test.toast └── test_yaml_static_refl │ └── test.toast ├── include └── figcone │ ├── config.h │ ├── configreader.h │ ├── detail │ ├── configmacros.h │ ├── configreaderaccess.h │ ├── configreaderptr.h │ ├── creatormode.h │ ├── dict.h │ ├── dictcreator.h │ ├── fieldtraits.h │ ├── figcone_ini_import.h │ ├── figcone_json_import.h │ ├── figcone_shoal_import.h │ ├── figcone_toml_import.h │ ├── figcone_xml_import.h │ ├── figcone_yaml_import.h │ ├── iconfigentity.h │ ├── initializedoptional.h │ ├── inode.h │ ├── iparam.h │ ├── ivalidator.h │ ├── loadingerror.h │ ├── nameof_import.h │ ├── nameutils.h │ ├── node.h │ ├── nodecreator.h │ ├── nodelist.h │ ├── nodelistcreator.h │ ├── param.h │ ├── paramcreator.h │ ├── paramlist.h │ ├── paramlistcreator.h │ ├── stringconverter.h │ ├── unregisteredfieldutils.h │ ├── utils.h │ └── validator.h │ ├── errors.h │ ├── figcone.h │ ├── nameformat.h │ ├── postprocessor.h │ ├── shortmacros.h │ └── unregisteredfieldhandler.h ├── release_pack ├── CMakeLists.txt ├── figcone_deps │ └── CMakeLists.txt ├── figcone_formats_deps │ └── CMakeLists.txt ├── formats │ └── CMakeLists.txt └── release.sh ├── tests ├── CMakeLists.txt ├── assert_exception.h ├── test_copynodelist.cpp ├── test_defaultunregisteredfieldhandler.cpp ├── test_dict.cpp ├── test_nameformat.cpp ├── test_node.cpp ├── test_nodelist.cpp ├── test_param.cpp ├── test_paramlist.cpp ├── test_postprocessor.cpp └── test_unregisteredfieldhandler.cpp ├── tests_cpp20 └── CMakeLists.txt └── tests_static_refl ├── CMakeLists.txt ├── assert_exception.h ├── test_copynodelist_cpp20.cpp ├── test_dict_cpp20.cpp ├── test_node_cpp20.cpp ├── test_nodelist_cpp20.cpp ├── test_param_cpp20.cpp └── test_paramlist_cpp20.cpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/workflows/build_and_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/.github/workflows/build_and_test.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/version_check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/.github/workflows/version_check.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/CMakePresets.json -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/README.md -------------------------------------------------------------------------------- /doc/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/doc/logo.jpg -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/examples/demo.h -------------------------------------------------------------------------------- /examples/demo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/examples/demo.ini -------------------------------------------------------------------------------- /examples/demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/examples/demo.json -------------------------------------------------------------------------------- /examples/demo.shoal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/examples/demo.shoal -------------------------------------------------------------------------------- /examples/demo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/examples/demo.toml -------------------------------------------------------------------------------- /examples/demo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/examples/demo.xml -------------------------------------------------------------------------------- /examples/demo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/examples/demo.yaml -------------------------------------------------------------------------------- /examples/demo_all.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/examples/demo_all.cpp -------------------------------------------------------------------------------- /examples/demo_ini.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/examples/demo_ini.cpp -------------------------------------------------------------------------------- /examples/demo_json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/examples/demo_json.cpp -------------------------------------------------------------------------------- /examples/demo_json_root_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/examples/demo_json_root_list.cpp -------------------------------------------------------------------------------- /examples/demo_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/examples/demo_parser.cpp -------------------------------------------------------------------------------- /examples/demo_root_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/examples/demo_root_list.json -------------------------------------------------------------------------------- /examples/demo_root_list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/examples/demo_root_list.yaml -------------------------------------------------------------------------------- /examples/demo_shoal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/examples/demo_shoal.cpp -------------------------------------------------------------------------------- /examples/demo_toml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/examples/demo_toml.cpp -------------------------------------------------------------------------------- /examples/demo_xml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/examples/demo_xml.cpp -------------------------------------------------------------------------------- /examples/demo_yaml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/examples/demo_yaml.cpp -------------------------------------------------------------------------------- /examples/demo_yaml_root_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/examples/demo_yaml_root_list.cpp -------------------------------------------------------------------------------- /examples/ex01.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/examples/ex01.cpp -------------------------------------------------------------------------------- /examples/ex02.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/examples/ex02.cpp -------------------------------------------------------------------------------- /examples/ex03.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/examples/ex03.cpp -------------------------------------------------------------------------------- /examples/ex04.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/examples/ex04.cpp -------------------------------------------------------------------------------- /examples/ex05.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/examples/ex05.cpp -------------------------------------------------------------------------------- /examples/print_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/examples/print_demo.h -------------------------------------------------------------------------------- /examples_static_refl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/examples_static_refl/CMakeLists.txt -------------------------------------------------------------------------------- /examples_static_refl/ex01_static_refl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/examples_static_refl/ex01_static_refl.cpp -------------------------------------------------------------------------------- /examples_static_refl/ex02_static_refl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/examples_static_refl/ex02_static_refl.cpp -------------------------------------------------------------------------------- /examples_static_refl/ex03_static_refl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/examples_static_refl/ex03_static_refl.cpp -------------------------------------------------------------------------------- /examples_static_refl/ex04_static_refl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/examples_static_refl/ex04_static_refl.cpp -------------------------------------------------------------------------------- /examples_static_refl/ex05_static_refl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/examples_static_refl/ex05_static_refl.cpp -------------------------------------------------------------------------------- /external/seal_lake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/external/seal_lake -------------------------------------------------------------------------------- /formats/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/formats/CMakeLists.txt -------------------------------------------------------------------------------- /functional_tests/error_dir_instead_of_file/test.toast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/functional_tests/error_dir_instead_of_file/test.toast -------------------------------------------------------------------------------- /functional_tests/error_nonexistent_file/test.toast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/functional_tests/error_nonexistent_file/test.toast -------------------------------------------------------------------------------- /functional_tests/example_1/test.toast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/functional_tests/example_1/test.toast -------------------------------------------------------------------------------- /functional_tests/example_1_static_refl/test.toast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/functional_tests/example_1_static_refl/test.toast -------------------------------------------------------------------------------- /functional_tests/example_2/test.toast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/functional_tests/example_2/test.toast -------------------------------------------------------------------------------- /functional_tests/example_2_static_refl/test.toast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/functional_tests/example_2_static_refl/test.toast -------------------------------------------------------------------------------- /functional_tests/example_3/test.toast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/functional_tests/example_3/test.toast -------------------------------------------------------------------------------- /functional_tests/example_3_static_refl/test.toast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/functional_tests/example_3_static_refl/test.toast -------------------------------------------------------------------------------- /functional_tests/example_4/test.toast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/functional_tests/example_4/test.toast -------------------------------------------------------------------------------- /functional_tests/example_4_static_refl/test.toast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/functional_tests/example_4_static_refl/test.toast -------------------------------------------------------------------------------- /functional_tests/lunchtoast.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/functional_tests/lunchtoast.cfg -------------------------------------------------------------------------------- /functional_tests/paths_to_filename.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/functional_tests/paths_to_filename.sh -------------------------------------------------------------------------------- /functional_tests/test_ini/test.toast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/functional_tests/test_ini/test.toast -------------------------------------------------------------------------------- /functional_tests/test_ini_static_refl/test.toast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/functional_tests/test_ini_static_refl/test.toast -------------------------------------------------------------------------------- /functional_tests/test_json/test.toast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/functional_tests/test_json/test.toast -------------------------------------------------------------------------------- /functional_tests/test_json_static_refl/test.toast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/functional_tests/test_json_static_refl/test.toast -------------------------------------------------------------------------------- /functional_tests/test_shoal/test.toast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/functional_tests/test_shoal/test.toast -------------------------------------------------------------------------------- /functional_tests/test_shoal_static_refl/test.toast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/functional_tests/test_shoal_static_refl/test.toast -------------------------------------------------------------------------------- /functional_tests/test_toml/test.toast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/functional_tests/test_toml/test.toast -------------------------------------------------------------------------------- /functional_tests/test_toml_static_refl/test.toast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/functional_tests/test_toml_static_refl/test.toast -------------------------------------------------------------------------------- /functional_tests/test_xml/test.toast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/functional_tests/test_xml/test.toast -------------------------------------------------------------------------------- /functional_tests/test_xml_static_refl/test.toast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/functional_tests/test_xml_static_refl/test.toast -------------------------------------------------------------------------------- /functional_tests/test_yaml/test.toast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/functional_tests/test_yaml/test.toast -------------------------------------------------------------------------------- /functional_tests/test_yaml_static_refl/test.toast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/functional_tests/test_yaml_static_refl/test.toast -------------------------------------------------------------------------------- /include/figcone/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/include/figcone/config.h -------------------------------------------------------------------------------- /include/figcone/configreader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/include/figcone/configreader.h -------------------------------------------------------------------------------- /include/figcone/detail/configmacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/include/figcone/detail/configmacros.h -------------------------------------------------------------------------------- /include/figcone/detail/configreaderaccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/include/figcone/detail/configreaderaccess.h -------------------------------------------------------------------------------- /include/figcone/detail/configreaderptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/include/figcone/detail/configreaderptr.h -------------------------------------------------------------------------------- /include/figcone/detail/creatormode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/include/figcone/detail/creatormode.h -------------------------------------------------------------------------------- /include/figcone/detail/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/include/figcone/detail/dict.h -------------------------------------------------------------------------------- /include/figcone/detail/dictcreator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/include/figcone/detail/dictcreator.h -------------------------------------------------------------------------------- /include/figcone/detail/fieldtraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/include/figcone/detail/fieldtraits.h -------------------------------------------------------------------------------- /include/figcone/detail/figcone_ini_import.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/include/figcone/detail/figcone_ini_import.h -------------------------------------------------------------------------------- /include/figcone/detail/figcone_json_import.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/include/figcone/detail/figcone_json_import.h -------------------------------------------------------------------------------- /include/figcone/detail/figcone_shoal_import.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/include/figcone/detail/figcone_shoal_import.h -------------------------------------------------------------------------------- /include/figcone/detail/figcone_toml_import.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/include/figcone/detail/figcone_toml_import.h -------------------------------------------------------------------------------- /include/figcone/detail/figcone_xml_import.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/include/figcone/detail/figcone_xml_import.h -------------------------------------------------------------------------------- /include/figcone/detail/figcone_yaml_import.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/include/figcone/detail/figcone_yaml_import.h -------------------------------------------------------------------------------- /include/figcone/detail/iconfigentity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/include/figcone/detail/iconfigentity.h -------------------------------------------------------------------------------- /include/figcone/detail/initializedoptional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/include/figcone/detail/initializedoptional.h -------------------------------------------------------------------------------- /include/figcone/detail/inode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/include/figcone/detail/inode.h -------------------------------------------------------------------------------- /include/figcone/detail/iparam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/include/figcone/detail/iparam.h -------------------------------------------------------------------------------- /include/figcone/detail/ivalidator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/include/figcone/detail/ivalidator.h -------------------------------------------------------------------------------- /include/figcone/detail/loadingerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/include/figcone/detail/loadingerror.h -------------------------------------------------------------------------------- /include/figcone/detail/nameof_import.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/include/figcone/detail/nameof_import.h -------------------------------------------------------------------------------- /include/figcone/detail/nameutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/include/figcone/detail/nameutils.h -------------------------------------------------------------------------------- /include/figcone/detail/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/include/figcone/detail/node.h -------------------------------------------------------------------------------- /include/figcone/detail/nodecreator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/include/figcone/detail/nodecreator.h -------------------------------------------------------------------------------- /include/figcone/detail/nodelist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/include/figcone/detail/nodelist.h -------------------------------------------------------------------------------- /include/figcone/detail/nodelistcreator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/include/figcone/detail/nodelistcreator.h -------------------------------------------------------------------------------- /include/figcone/detail/param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/include/figcone/detail/param.h -------------------------------------------------------------------------------- /include/figcone/detail/paramcreator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/include/figcone/detail/paramcreator.h -------------------------------------------------------------------------------- /include/figcone/detail/paramlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/include/figcone/detail/paramlist.h -------------------------------------------------------------------------------- /include/figcone/detail/paramlistcreator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/include/figcone/detail/paramlistcreator.h -------------------------------------------------------------------------------- /include/figcone/detail/stringconverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/include/figcone/detail/stringconverter.h -------------------------------------------------------------------------------- /include/figcone/detail/unregisteredfieldutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/include/figcone/detail/unregisteredfieldutils.h -------------------------------------------------------------------------------- /include/figcone/detail/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/include/figcone/detail/utils.h -------------------------------------------------------------------------------- /include/figcone/detail/validator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/include/figcone/detail/validator.h -------------------------------------------------------------------------------- /include/figcone/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/include/figcone/errors.h -------------------------------------------------------------------------------- /include/figcone/figcone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/include/figcone/figcone.h -------------------------------------------------------------------------------- /include/figcone/nameformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/include/figcone/nameformat.h -------------------------------------------------------------------------------- /include/figcone/postprocessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/include/figcone/postprocessor.h -------------------------------------------------------------------------------- /include/figcone/shortmacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/include/figcone/shortmacros.h -------------------------------------------------------------------------------- /include/figcone/unregisteredfieldhandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/include/figcone/unregisteredfieldhandler.h -------------------------------------------------------------------------------- /release_pack/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/release_pack/CMakeLists.txt -------------------------------------------------------------------------------- /release_pack/figcone_deps/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/release_pack/figcone_deps/CMakeLists.txt -------------------------------------------------------------------------------- /release_pack/figcone_formats_deps/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/release_pack/figcone_formats_deps/CMakeLists.txt -------------------------------------------------------------------------------- /release_pack/formats/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/release_pack/formats/CMakeLists.txt -------------------------------------------------------------------------------- /release_pack/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/release_pack/release.sh -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/assert_exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/tests/assert_exception.h -------------------------------------------------------------------------------- /tests/test_copynodelist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/tests/test_copynodelist.cpp -------------------------------------------------------------------------------- /tests/test_defaultunregisteredfieldhandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/tests/test_defaultunregisteredfieldhandler.cpp -------------------------------------------------------------------------------- /tests/test_dict.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/tests/test_dict.cpp -------------------------------------------------------------------------------- /tests/test_nameformat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/tests/test_nameformat.cpp -------------------------------------------------------------------------------- /tests/test_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/tests/test_node.cpp -------------------------------------------------------------------------------- /tests/test_nodelist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/tests/test_nodelist.cpp -------------------------------------------------------------------------------- /tests/test_param.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/tests/test_param.cpp -------------------------------------------------------------------------------- /tests/test_paramlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/tests/test_paramlist.cpp -------------------------------------------------------------------------------- /tests/test_postprocessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/tests/test_postprocessor.cpp -------------------------------------------------------------------------------- /tests/test_unregisteredfieldhandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/tests/test_unregisteredfieldhandler.cpp -------------------------------------------------------------------------------- /tests_cpp20/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/tests_cpp20/CMakeLists.txt -------------------------------------------------------------------------------- /tests_static_refl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/tests_static_refl/CMakeLists.txt -------------------------------------------------------------------------------- /tests_static_refl/assert_exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/tests_static_refl/assert_exception.h -------------------------------------------------------------------------------- /tests_static_refl/test_copynodelist_cpp20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/tests_static_refl/test_copynodelist_cpp20.cpp -------------------------------------------------------------------------------- /tests_static_refl/test_dict_cpp20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/tests_static_refl/test_dict_cpp20.cpp -------------------------------------------------------------------------------- /tests_static_refl/test_node_cpp20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/tests_static_refl/test_node_cpp20.cpp -------------------------------------------------------------------------------- /tests_static_refl/test_nodelist_cpp20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/tests_static_refl/test_nodelist_cpp20.cpp -------------------------------------------------------------------------------- /tests_static_refl/test_param_cpp20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/tests_static_refl/test_param_cpp20.cpp -------------------------------------------------------------------------------- /tests_static_refl/test_paramlist_cpp20.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamchatka-volcano/figcone/HEAD/tests_static_refl/test_paramlist_cpp20.cpp --------------------------------------------------------------------------------