├── .clang-format ├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE │ ├── bug_fix.md │ └── feature.md └── workflows │ └── tagged-release.yml ├── .gitignore ├── .gitmodules ├── .hyde-config ├── CMakeLists.txt ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── docs ├── Gemfile ├── _config.yml ├── _includes │ └── head.html ├── _posts │ └── 2018-10-30-welcome.markdown ├── _sass │ ├── _overrides-dark.scss │ ├── _overrides-light.scss │ └── _overrides.scss ├── about.md ├── favicon.ico ├── feed.xml ├── images │ └── site │ │ └── hyde.svg ├── index.html ├── libraries │ ├── classes.cpp │ │ ├── class_example │ │ │ ├── color.md │ │ │ ├── index.md │ │ │ ├── m_class_example.md │ │ │ ├── m_deprecated.md │ │ │ ├── m_deprecated_with_message.md │ │ │ ├── m_member_function.md │ │ │ ├── m_member_function_trailing_return_type.md │ │ │ ├── m_overloaded.md │ │ │ ├── m_static_method.md │ │ │ ├── m_template_member_function.md │ │ │ └── nested_class_example │ │ │ │ ├── index.md │ │ │ │ ├── m_nested_class_example.md │ │ │ │ └── m_~nested_class_example.md │ │ ├── index.md │ │ ├── partial_specialization_.4b7bfe45 │ │ │ └── index.md │ │ ├── partial_specialization_.edfbc14d │ │ │ └── index.md │ │ ├── specialization_example3.ed9d8cc7 │ │ │ ├── index.md │ │ │ └── m_as_tuple.md │ │ ├── specialization_example3CT3E │ │ │ ├── index.md │ │ │ └── m_as_tuple.md │ │ └── specialization_example3Cfloat3E │ │ │ ├── index.md │ │ │ └── m_as_tuple.md │ ├── comments.cpp │ │ ├── compiler_generated │ │ │ ├── index.md │ │ │ ├── m_assign.md │ │ │ ├── m_compiler_generated.md │ │ │ └── m_operator3D.md │ │ ├── f_template_function.md │ │ ├── index.md │ │ ├── some_other_struct │ │ │ ├── index.md │ │ │ ├── m_operator3D.md │ │ │ ├── m_some_other_struct.md │ │ │ ├── m_virtual_function.md │ │ │ └── m_~some_other_struct.md │ │ └── some_struct │ │ │ ├── index.md │ │ │ ├── m_operator3D.md │ │ │ ├── m_some_function.md │ │ │ ├── m_some_struct.md │ │ │ ├── m_virtual_function.md │ │ │ └── m_~some_struct.md │ ├── enums.cpp │ │ ├── color_channel.md │ │ ├── index.md │ │ └── untyped.md │ ├── functions.cpp │ │ ├── f_binary_function_example.md │ │ ├── f_nullary_function_example.md │ │ ├── f_overloaded.md │ │ ├── f_static_auto_function_example.md │ │ ├── f_static_function_example.md │ │ ├── f_static_trailing_type_function_example.md │ │ ├── f_template_function_example.md │ │ └── index.md │ ├── index.md │ ├── namespaces.cpp │ │ ├── f_function.md │ │ └── index.md │ ├── point.cpp │ │ ├── index.md │ │ └── point3CT3E │ │ │ ├── f_operator-.md │ │ │ ├── f_operator213D.md │ │ │ ├── f_operator3D3D.md │ │ │ ├── index.md │ │ │ ├── m_operator-3D.md │ │ │ ├── m_origin.md │ │ │ └── m_point3CT3E.md │ └── typedef_and_alias.cpp │ │ ├── index.md │ │ ├── template_example3CT2C20U3E │ │ └── index.md │ │ └── template_example_instantiator │ │ └── index.md └── serve.sh ├── emitters ├── yaml_base_emitter.cpp ├── yaml_base_emitter.hpp ├── yaml_base_emitter_fwd.hpp ├── yaml_class_emitter.cpp ├── yaml_class_emitter.hpp ├── yaml_enum_emitter.cpp ├── yaml_enum_emitter.hpp ├── yaml_function_emitter.cpp ├── yaml_function_emitter.hpp ├── yaml_library_emitter.cpp ├── yaml_library_emitter.hpp ├── yaml_sourcefile_emitter.cpp └── yaml_sourcefile_emitter.hpp ├── generate_test_files.sh ├── include ├── _clang_include_prefix.hpp ├── _clang_include_suffix.hpp ├── autodetect.hpp ├── config.hpp ├── json.hpp ├── json_fwd.hpp └── output_yaml.hpp ├── matchers ├── class_matcher.cpp ├── class_matcher.hpp ├── enum_matcher.cpp ├── enum_matcher.hpp ├── function_matcher.cpp ├── function_matcher.hpp ├── matcher_fwd.hpp ├── namespace_matcher.cpp ├── namespace_matcher.hpp ├── typealias_matcher.cpp ├── typealias_matcher.hpp ├── typedef_matcher.cpp ├── typedef_matcher.hpp ├── utilities.cpp └── utilities.hpp ├── sources ├── autodetect.cpp ├── main.cpp └── output_yaml.cpp └── test_files ├── classes.cpp ├── comments.cpp ├── enums.cpp ├── functions.cpp ├── namespaces.cpp ├── point.cpp └── typedef_and_alias.cpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/.clang-format -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/bug_fix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/.github/PULL_REQUEST_TEMPLATE/bug_fix.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/.github/PULL_REQUEST_TEMPLATE/feature.md -------------------------------------------------------------------------------- /.github/workflows/tagged-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/.github/workflows/tagged-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/.gitmodules -------------------------------------------------------------------------------- /.hyde-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/.hyde-config -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/README.md -------------------------------------------------------------------------------- /docs/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/Gemfile -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/_includes/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/_includes/head.html -------------------------------------------------------------------------------- /docs/_posts/2018-10-30-welcome.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/_posts/2018-10-30-welcome.markdown -------------------------------------------------------------------------------- /docs/_sass/_overrides-dark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/_sass/_overrides-dark.scss -------------------------------------------------------------------------------- /docs/_sass/_overrides-light.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/_sass/_overrides-light.scss -------------------------------------------------------------------------------- /docs/_sass/_overrides.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/_sass/_overrides.scss -------------------------------------------------------------------------------- /docs/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/about.md -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/feed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/feed.xml -------------------------------------------------------------------------------- /docs/images/site/hyde.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/images/site/hyde.svg -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/libraries/classes.cpp/class_example/color.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/libraries/classes.cpp/class_example/color.md -------------------------------------------------------------------------------- /docs/libraries/classes.cpp/class_example/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/libraries/classes.cpp/class_example/index.md -------------------------------------------------------------------------------- /docs/libraries/classes.cpp/class_example/m_class_example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/libraries/classes.cpp/class_example/m_class_example.md -------------------------------------------------------------------------------- /docs/libraries/classes.cpp/class_example/m_deprecated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/libraries/classes.cpp/class_example/m_deprecated.md -------------------------------------------------------------------------------- /docs/libraries/classes.cpp/class_example/m_deprecated_with_message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/libraries/classes.cpp/class_example/m_deprecated_with_message.md -------------------------------------------------------------------------------- /docs/libraries/classes.cpp/class_example/m_member_function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/libraries/classes.cpp/class_example/m_member_function.md -------------------------------------------------------------------------------- /docs/libraries/classes.cpp/class_example/m_member_function_trailing_return_type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/libraries/classes.cpp/class_example/m_member_function_trailing_return_type.md -------------------------------------------------------------------------------- /docs/libraries/classes.cpp/class_example/m_overloaded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/libraries/classes.cpp/class_example/m_overloaded.md -------------------------------------------------------------------------------- /docs/libraries/classes.cpp/class_example/m_static_method.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/libraries/classes.cpp/class_example/m_static_method.md -------------------------------------------------------------------------------- /docs/libraries/classes.cpp/class_example/m_template_member_function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/libraries/classes.cpp/class_example/m_template_member_function.md -------------------------------------------------------------------------------- /docs/libraries/classes.cpp/class_example/nested_class_example/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/libraries/classes.cpp/class_example/nested_class_example/index.md -------------------------------------------------------------------------------- /docs/libraries/classes.cpp/class_example/nested_class_example/m_nested_class_example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/libraries/classes.cpp/class_example/nested_class_example/m_nested_class_example.md -------------------------------------------------------------------------------- /docs/libraries/classes.cpp/class_example/nested_class_example/m_~nested_class_example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/libraries/classes.cpp/class_example/nested_class_example/m_~nested_class_example.md -------------------------------------------------------------------------------- /docs/libraries/classes.cpp/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/libraries/classes.cpp/index.md -------------------------------------------------------------------------------- /docs/libraries/classes.cpp/partial_specialization_.4b7bfe45/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/libraries/classes.cpp/partial_specialization_.4b7bfe45/index.md -------------------------------------------------------------------------------- /docs/libraries/classes.cpp/partial_specialization_.edfbc14d/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/libraries/classes.cpp/partial_specialization_.edfbc14d/index.md -------------------------------------------------------------------------------- /docs/libraries/classes.cpp/specialization_example3.ed9d8cc7/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/libraries/classes.cpp/specialization_example3.ed9d8cc7/index.md -------------------------------------------------------------------------------- /docs/libraries/classes.cpp/specialization_example3.ed9d8cc7/m_as_tuple.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/libraries/classes.cpp/specialization_example3.ed9d8cc7/m_as_tuple.md -------------------------------------------------------------------------------- /docs/libraries/classes.cpp/specialization_example3CT3E/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/libraries/classes.cpp/specialization_example3CT3E/index.md -------------------------------------------------------------------------------- /docs/libraries/classes.cpp/specialization_example3CT3E/m_as_tuple.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/libraries/classes.cpp/specialization_example3CT3E/m_as_tuple.md -------------------------------------------------------------------------------- /docs/libraries/classes.cpp/specialization_example3Cfloat3E/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/libraries/classes.cpp/specialization_example3Cfloat3E/index.md -------------------------------------------------------------------------------- /docs/libraries/classes.cpp/specialization_example3Cfloat3E/m_as_tuple.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/libraries/classes.cpp/specialization_example3Cfloat3E/m_as_tuple.md -------------------------------------------------------------------------------- /docs/libraries/comments.cpp/compiler_generated/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/libraries/comments.cpp/compiler_generated/index.md -------------------------------------------------------------------------------- /docs/libraries/comments.cpp/compiler_generated/m_assign.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/libraries/comments.cpp/compiler_generated/m_assign.md -------------------------------------------------------------------------------- /docs/libraries/comments.cpp/compiler_generated/m_compiler_generated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/libraries/comments.cpp/compiler_generated/m_compiler_generated.md -------------------------------------------------------------------------------- /docs/libraries/comments.cpp/compiler_generated/m_operator3D.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/libraries/comments.cpp/compiler_generated/m_operator3D.md -------------------------------------------------------------------------------- /docs/libraries/comments.cpp/f_template_function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/libraries/comments.cpp/f_template_function.md -------------------------------------------------------------------------------- /docs/libraries/comments.cpp/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/libraries/comments.cpp/index.md -------------------------------------------------------------------------------- /docs/libraries/comments.cpp/some_other_struct/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/libraries/comments.cpp/some_other_struct/index.md -------------------------------------------------------------------------------- /docs/libraries/comments.cpp/some_other_struct/m_operator3D.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/libraries/comments.cpp/some_other_struct/m_operator3D.md -------------------------------------------------------------------------------- /docs/libraries/comments.cpp/some_other_struct/m_some_other_struct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/libraries/comments.cpp/some_other_struct/m_some_other_struct.md -------------------------------------------------------------------------------- /docs/libraries/comments.cpp/some_other_struct/m_virtual_function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/libraries/comments.cpp/some_other_struct/m_virtual_function.md -------------------------------------------------------------------------------- /docs/libraries/comments.cpp/some_other_struct/m_~some_other_struct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/libraries/comments.cpp/some_other_struct/m_~some_other_struct.md -------------------------------------------------------------------------------- /docs/libraries/comments.cpp/some_struct/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/libraries/comments.cpp/some_struct/index.md -------------------------------------------------------------------------------- /docs/libraries/comments.cpp/some_struct/m_operator3D.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/libraries/comments.cpp/some_struct/m_operator3D.md -------------------------------------------------------------------------------- /docs/libraries/comments.cpp/some_struct/m_some_function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/libraries/comments.cpp/some_struct/m_some_function.md -------------------------------------------------------------------------------- /docs/libraries/comments.cpp/some_struct/m_some_struct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/libraries/comments.cpp/some_struct/m_some_struct.md -------------------------------------------------------------------------------- /docs/libraries/comments.cpp/some_struct/m_virtual_function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/libraries/comments.cpp/some_struct/m_virtual_function.md -------------------------------------------------------------------------------- /docs/libraries/comments.cpp/some_struct/m_~some_struct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/libraries/comments.cpp/some_struct/m_~some_struct.md -------------------------------------------------------------------------------- /docs/libraries/enums.cpp/color_channel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/libraries/enums.cpp/color_channel.md -------------------------------------------------------------------------------- /docs/libraries/enums.cpp/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/libraries/enums.cpp/index.md -------------------------------------------------------------------------------- /docs/libraries/enums.cpp/untyped.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/libraries/enums.cpp/untyped.md -------------------------------------------------------------------------------- /docs/libraries/functions.cpp/f_binary_function_example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/libraries/functions.cpp/f_binary_function_example.md -------------------------------------------------------------------------------- /docs/libraries/functions.cpp/f_nullary_function_example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/libraries/functions.cpp/f_nullary_function_example.md -------------------------------------------------------------------------------- /docs/libraries/functions.cpp/f_overloaded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/libraries/functions.cpp/f_overloaded.md -------------------------------------------------------------------------------- /docs/libraries/functions.cpp/f_static_auto_function_example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/libraries/functions.cpp/f_static_auto_function_example.md -------------------------------------------------------------------------------- /docs/libraries/functions.cpp/f_static_function_example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/libraries/functions.cpp/f_static_function_example.md -------------------------------------------------------------------------------- /docs/libraries/functions.cpp/f_static_trailing_type_function_example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/libraries/functions.cpp/f_static_trailing_type_function_example.md -------------------------------------------------------------------------------- /docs/libraries/functions.cpp/f_template_function_example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/libraries/functions.cpp/f_template_function_example.md -------------------------------------------------------------------------------- /docs/libraries/functions.cpp/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/libraries/functions.cpp/index.md -------------------------------------------------------------------------------- /docs/libraries/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/libraries/index.md -------------------------------------------------------------------------------- /docs/libraries/namespaces.cpp/f_function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/libraries/namespaces.cpp/f_function.md -------------------------------------------------------------------------------- /docs/libraries/namespaces.cpp/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/libraries/namespaces.cpp/index.md -------------------------------------------------------------------------------- /docs/libraries/point.cpp/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/libraries/point.cpp/index.md -------------------------------------------------------------------------------- /docs/libraries/point.cpp/point3CT3E/f_operator-.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/libraries/point.cpp/point3CT3E/f_operator-.md -------------------------------------------------------------------------------- /docs/libraries/point.cpp/point3CT3E/f_operator213D.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/libraries/point.cpp/point3CT3E/f_operator213D.md -------------------------------------------------------------------------------- /docs/libraries/point.cpp/point3CT3E/f_operator3D3D.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/libraries/point.cpp/point3CT3E/f_operator3D3D.md -------------------------------------------------------------------------------- /docs/libraries/point.cpp/point3CT3E/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/libraries/point.cpp/point3CT3E/index.md -------------------------------------------------------------------------------- /docs/libraries/point.cpp/point3CT3E/m_operator-3D.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/libraries/point.cpp/point3CT3E/m_operator-3D.md -------------------------------------------------------------------------------- /docs/libraries/point.cpp/point3CT3E/m_origin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/libraries/point.cpp/point3CT3E/m_origin.md -------------------------------------------------------------------------------- /docs/libraries/point.cpp/point3CT3E/m_point3CT3E.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/libraries/point.cpp/point3CT3E/m_point3CT3E.md -------------------------------------------------------------------------------- /docs/libraries/typedef_and_alias.cpp/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/libraries/typedef_and_alias.cpp/index.md -------------------------------------------------------------------------------- /docs/libraries/typedef_and_alias.cpp/template_example3CT2C20U3E/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/libraries/typedef_and_alias.cpp/template_example3CT2C20U3E/index.md -------------------------------------------------------------------------------- /docs/libraries/typedef_and_alias.cpp/template_example_instantiator/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/docs/libraries/typedef_and_alias.cpp/template_example_instantiator/index.md -------------------------------------------------------------------------------- /docs/serve.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | bundle exec jekyll serve --watch 4 | -------------------------------------------------------------------------------- /emitters/yaml_base_emitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/emitters/yaml_base_emitter.cpp -------------------------------------------------------------------------------- /emitters/yaml_base_emitter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/emitters/yaml_base_emitter.hpp -------------------------------------------------------------------------------- /emitters/yaml_base_emitter_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/emitters/yaml_base_emitter_fwd.hpp -------------------------------------------------------------------------------- /emitters/yaml_class_emitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/emitters/yaml_class_emitter.cpp -------------------------------------------------------------------------------- /emitters/yaml_class_emitter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/emitters/yaml_class_emitter.hpp -------------------------------------------------------------------------------- /emitters/yaml_enum_emitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/emitters/yaml_enum_emitter.cpp -------------------------------------------------------------------------------- /emitters/yaml_enum_emitter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/emitters/yaml_enum_emitter.hpp -------------------------------------------------------------------------------- /emitters/yaml_function_emitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/emitters/yaml_function_emitter.cpp -------------------------------------------------------------------------------- /emitters/yaml_function_emitter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/emitters/yaml_function_emitter.hpp -------------------------------------------------------------------------------- /emitters/yaml_library_emitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/emitters/yaml_library_emitter.cpp -------------------------------------------------------------------------------- /emitters/yaml_library_emitter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/emitters/yaml_library_emitter.hpp -------------------------------------------------------------------------------- /emitters/yaml_sourcefile_emitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/emitters/yaml_sourcefile_emitter.cpp -------------------------------------------------------------------------------- /emitters/yaml_sourcefile_emitter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/emitters/yaml_sourcefile_emitter.hpp -------------------------------------------------------------------------------- /generate_test_files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/generate_test_files.sh -------------------------------------------------------------------------------- /include/_clang_include_prefix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/include/_clang_include_prefix.hpp -------------------------------------------------------------------------------- /include/_clang_include_suffix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/include/_clang_include_suffix.hpp -------------------------------------------------------------------------------- /include/autodetect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/include/autodetect.hpp -------------------------------------------------------------------------------- /include/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/include/config.hpp -------------------------------------------------------------------------------- /include/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/include/json.hpp -------------------------------------------------------------------------------- /include/json_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/include/json_fwd.hpp -------------------------------------------------------------------------------- /include/output_yaml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/include/output_yaml.hpp -------------------------------------------------------------------------------- /matchers/class_matcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/matchers/class_matcher.cpp -------------------------------------------------------------------------------- /matchers/class_matcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/matchers/class_matcher.hpp -------------------------------------------------------------------------------- /matchers/enum_matcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/matchers/enum_matcher.cpp -------------------------------------------------------------------------------- /matchers/enum_matcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/matchers/enum_matcher.hpp -------------------------------------------------------------------------------- /matchers/function_matcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/matchers/function_matcher.cpp -------------------------------------------------------------------------------- /matchers/function_matcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/matchers/function_matcher.hpp -------------------------------------------------------------------------------- /matchers/matcher_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/matchers/matcher_fwd.hpp -------------------------------------------------------------------------------- /matchers/namespace_matcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/matchers/namespace_matcher.cpp -------------------------------------------------------------------------------- /matchers/namespace_matcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/matchers/namespace_matcher.hpp -------------------------------------------------------------------------------- /matchers/typealias_matcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/matchers/typealias_matcher.cpp -------------------------------------------------------------------------------- /matchers/typealias_matcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/matchers/typealias_matcher.hpp -------------------------------------------------------------------------------- /matchers/typedef_matcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/matchers/typedef_matcher.cpp -------------------------------------------------------------------------------- /matchers/typedef_matcher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/matchers/typedef_matcher.hpp -------------------------------------------------------------------------------- /matchers/utilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/matchers/utilities.cpp -------------------------------------------------------------------------------- /matchers/utilities.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/matchers/utilities.hpp -------------------------------------------------------------------------------- /sources/autodetect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/sources/autodetect.cpp -------------------------------------------------------------------------------- /sources/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/sources/main.cpp -------------------------------------------------------------------------------- /sources/output_yaml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/sources/output_yaml.cpp -------------------------------------------------------------------------------- /test_files/classes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/test_files/classes.cpp -------------------------------------------------------------------------------- /test_files/comments.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/test_files/comments.cpp -------------------------------------------------------------------------------- /test_files/enums.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/test_files/enums.cpp -------------------------------------------------------------------------------- /test_files/functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/test_files/functions.cpp -------------------------------------------------------------------------------- /test_files/namespaces.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/test_files/namespaces.cpp -------------------------------------------------------------------------------- /test_files/point.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/test_files/point.cpp -------------------------------------------------------------------------------- /test_files/typedef_and_alias.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/hyde/HEAD/test_files/typedef_and_alias.cpp --------------------------------------------------------------------------------