├── .github └── workflows │ └── gh-pages.yml ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── app ├── conf │ └── config.ini └── scripts │ └── how-to-document-modules.xml.template ├── how-to-document-modules.xml ├── idl_dox └── howToDocument_IDL.h └── src ├── idl.thrift └── main.cpp /.github/workflows/gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/how-to-document-modules/HEAD/.github/workflows/gh-pages.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/how-to-document-modules/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/how-to-document-modules/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/how-to-document-modules/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/how-to-document-modules/HEAD/README.md -------------------------------------------------------------------------------- /app/conf/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/how-to-document-modules/HEAD/app/conf/config.ini -------------------------------------------------------------------------------- /app/scripts/how-to-document-modules.xml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/how-to-document-modules/HEAD/app/scripts/how-to-document-modules.xml.template -------------------------------------------------------------------------------- /how-to-document-modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/how-to-document-modules/HEAD/how-to-document-modules.xml -------------------------------------------------------------------------------- /idl_dox/howToDocument_IDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/how-to-document-modules/HEAD/idl_dox/howToDocument_IDL.h -------------------------------------------------------------------------------- /src/idl.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/how-to-document-modules/HEAD/src/idl.thrift -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/how-to-document-modules/HEAD/src/main.cpp --------------------------------------------------------------------------------