├── .ci ├── Dockerfile ├── env-file └── script.sh ├── .clang-format ├── .github ├── CODEOWNERS ├── CONTRIBUTING.md └── workflows │ └── conda-ci.yml ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── ci_env.yml ├── cmake ├── AddInstallRPATHSupport.cmake ├── AddUninstallTarget.cmake ├── BlockFactoryPlugin.cmake ├── ExtraPackageConfigVars.cmake.in ├── InstallBasicPackageFiles.cmake ├── SimulinkCoderSetup.cmake ├── TargetCompileWarnings.cmake ├── TargetFromGeneratedCode.cmake └── UnitTesting.cmake ├── deps ├── CMakeLists.txt ├── catch │ ├── CMakeLists.txt │ ├── catch2 │ │ └── catch.hpp │ └── cmake │ │ ├── Catch.cmake │ │ ├── CatchAddTests.cmake │ │ └── ParseAndAddCatchTests.cmake └── mxpp │ ├── CMakeLists.txt │ ├── include │ └── mxpp │ │ └── MxArray.h │ └── src │ └── MxArray.cpp ├── doc ├── CMakeLists.txt ├── doxygen │ ├── CMakeLists.txt │ ├── Doxyfile.in │ ├── DoxygenLayout.xml │ ├── customdoxygen.css │ └── index.md ├── mkdocs │ ├── CMakeLists.txt │ ├── data │ │ ├── about.md │ │ ├── autogenerate_code.md │ │ ├── create_new_library.md │ │ ├── images │ │ │ ├── BlockMask.png │ │ │ ├── EmptySFunctionBlock.png │ │ │ ├── NewBlankLibrary.png │ │ │ ├── SFunctionBlock.png │ │ │ ├── TestSimulinkModel.png │ │ │ └── TestSimulinkModelWithMask.png │ │ ├── index.md │ │ ├── install.md │ │ ├── license.md │ │ └── tutorial_intro.md │ └── mkdocs.yml └── release │ ├── template.md │ └── v0.8.md ├── example ├── .clang-format ├── CMakeLists.txt ├── README.md ├── include │ └── SignalMath.h ├── matlab │ ├── AutogenerationExample.mdl │ ├── AutogenerationExample_grt_rtw │ │ ├── AutogenerationExample.cpp │ │ ├── AutogenerationExample.h │ │ ├── AutogenerationExample_private.h │ │ ├── AutogenerationExample_ref.rsp │ │ ├── AutogenerationExample_types.h │ │ ├── defines.txt │ │ ├── modelsources.txt │ │ ├── multiword_types.h │ │ ├── rtmodel.h │ │ └── rtwtypes.h │ ├── CMakeLists.txt │ ├── ExampleToolbox.slx │ ├── Model.mdl │ └── slblocks.m └── src │ ├── Factory.cpp │ ├── SignalMath.cpp │ └── main.cpp ├── matlab ├── BlockFactory.tlc └── CMakeLists.txt ├── pixi.lock ├── pixi.toml ├── sources ├── CMakeLists.txt ├── Core │ ├── CMakeLists.txt │ ├── include │ │ └── BlockFactory │ │ │ └── Core │ │ │ ├── Block.h │ │ │ ├── BlockInformation.h │ │ │ ├── ConvertStdVector.h │ │ │ ├── FactorySingleton.h │ │ │ ├── Log.h │ │ │ ├── Parameter.h │ │ │ ├── Parameters.h │ │ │ ├── Port.h │ │ │ └── Signal.h │ └── src │ │ ├── Block.cpp │ │ ├── ConvertStdVector.cpp │ │ ├── FactorySingleton.cpp │ │ ├── Log.cpp │ │ ├── Parameter.cpp │ │ ├── Parameters.cpp │ │ └── Signal.cpp ├── Simulink │ ├── CMakeLists.txt │ ├── include │ │ └── BlockFactory │ │ │ └── Simulink │ │ │ ├── Private │ │ │ └── SimulinkBlockInformationImpl.h │ │ │ └── SimulinkBlockInformation.h │ └── src │ │ ├── BlockFactory.cpp │ │ ├── SimulinkBlockInformation.cpp │ │ └── SimulinkBlockInformationImpl.cpp ├── SimulinkCoder │ ├── CMakeLists.txt │ ├── include │ │ └── BlockFactory │ │ │ └── SimulinkCoder │ │ │ ├── CoderBlockInformation.h │ │ │ └── GeneratedCodeWrapper.h │ └── src │ │ └── CoderBlockInformation.cpp └── Tools │ ├── CMakeLists.txt │ └── src │ └── BlockfactoryExists.cpp └── tests ├── CMakeLists.txt ├── Core └── SignalUnitTest.cpp ├── Factory ├── FactoryUnitTest.cpp ├── MockPlugin.cpp └── MockPlugin.h └── main.cpp /.ci/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/.ci/Dockerfile -------------------------------------------------------------------------------- /.ci/env-file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/.ci/env-file -------------------------------------------------------------------------------- /.ci/script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/.ci/script.sh -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/workflows/conda-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/.github/workflows/conda-ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/README.md -------------------------------------------------------------------------------- /ci_env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/ci_env.yml -------------------------------------------------------------------------------- /cmake/AddInstallRPATHSupport.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/cmake/AddInstallRPATHSupport.cmake -------------------------------------------------------------------------------- /cmake/AddUninstallTarget.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/cmake/AddUninstallTarget.cmake -------------------------------------------------------------------------------- /cmake/BlockFactoryPlugin.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/cmake/BlockFactoryPlugin.cmake -------------------------------------------------------------------------------- /cmake/ExtraPackageConfigVars.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/cmake/ExtraPackageConfigVars.cmake.in -------------------------------------------------------------------------------- /cmake/InstallBasicPackageFiles.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/cmake/InstallBasicPackageFiles.cmake -------------------------------------------------------------------------------- /cmake/SimulinkCoderSetup.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/cmake/SimulinkCoderSetup.cmake -------------------------------------------------------------------------------- /cmake/TargetCompileWarnings.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/cmake/TargetCompileWarnings.cmake -------------------------------------------------------------------------------- /cmake/TargetFromGeneratedCode.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/cmake/TargetFromGeneratedCode.cmake -------------------------------------------------------------------------------- /cmake/UnitTesting.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/cmake/UnitTesting.cmake -------------------------------------------------------------------------------- /deps/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/deps/CMakeLists.txt -------------------------------------------------------------------------------- /deps/catch/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/deps/catch/CMakeLists.txt -------------------------------------------------------------------------------- /deps/catch/catch2/catch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/deps/catch/catch2/catch.hpp -------------------------------------------------------------------------------- /deps/catch/cmake/Catch.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/deps/catch/cmake/Catch.cmake -------------------------------------------------------------------------------- /deps/catch/cmake/CatchAddTests.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/deps/catch/cmake/CatchAddTests.cmake -------------------------------------------------------------------------------- /deps/catch/cmake/ParseAndAddCatchTests.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/deps/catch/cmake/ParseAndAddCatchTests.cmake -------------------------------------------------------------------------------- /deps/mxpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/deps/mxpp/CMakeLists.txt -------------------------------------------------------------------------------- /deps/mxpp/include/mxpp/MxArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/deps/mxpp/include/mxpp/MxArray.h -------------------------------------------------------------------------------- /deps/mxpp/src/MxArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/deps/mxpp/src/MxArray.cpp -------------------------------------------------------------------------------- /doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/doc/CMakeLists.txt -------------------------------------------------------------------------------- /doc/doxygen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/doc/doxygen/CMakeLists.txt -------------------------------------------------------------------------------- /doc/doxygen/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/doc/doxygen/Doxyfile.in -------------------------------------------------------------------------------- /doc/doxygen/DoxygenLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/doc/doxygen/DoxygenLayout.xml -------------------------------------------------------------------------------- /doc/doxygen/customdoxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/doc/doxygen/customdoxygen.css -------------------------------------------------------------------------------- /doc/doxygen/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/doc/doxygen/index.md -------------------------------------------------------------------------------- /doc/mkdocs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/doc/mkdocs/CMakeLists.txt -------------------------------------------------------------------------------- /doc/mkdocs/data/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/doc/mkdocs/data/about.md -------------------------------------------------------------------------------- /doc/mkdocs/data/autogenerate_code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/doc/mkdocs/data/autogenerate_code.md -------------------------------------------------------------------------------- /doc/mkdocs/data/create_new_library.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/doc/mkdocs/data/create_new_library.md -------------------------------------------------------------------------------- /doc/mkdocs/data/images/BlockMask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/doc/mkdocs/data/images/BlockMask.png -------------------------------------------------------------------------------- /doc/mkdocs/data/images/EmptySFunctionBlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/doc/mkdocs/data/images/EmptySFunctionBlock.png -------------------------------------------------------------------------------- /doc/mkdocs/data/images/NewBlankLibrary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/doc/mkdocs/data/images/NewBlankLibrary.png -------------------------------------------------------------------------------- /doc/mkdocs/data/images/SFunctionBlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/doc/mkdocs/data/images/SFunctionBlock.png -------------------------------------------------------------------------------- /doc/mkdocs/data/images/TestSimulinkModel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/doc/mkdocs/data/images/TestSimulinkModel.png -------------------------------------------------------------------------------- /doc/mkdocs/data/images/TestSimulinkModelWithMask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/doc/mkdocs/data/images/TestSimulinkModelWithMask.png -------------------------------------------------------------------------------- /doc/mkdocs/data/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/doc/mkdocs/data/index.md -------------------------------------------------------------------------------- /doc/mkdocs/data/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/doc/mkdocs/data/install.md -------------------------------------------------------------------------------- /doc/mkdocs/data/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/doc/mkdocs/data/license.md -------------------------------------------------------------------------------- /doc/mkdocs/data/tutorial_intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/doc/mkdocs/data/tutorial_intro.md -------------------------------------------------------------------------------- /doc/mkdocs/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/doc/mkdocs/mkdocs.yml -------------------------------------------------------------------------------- /doc/release/template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/doc/release/template.md -------------------------------------------------------------------------------- /doc/release/v0.8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/doc/release/v0.8.md -------------------------------------------------------------------------------- /example/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/example/.clang-format -------------------------------------------------------------------------------- /example/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/example/CMakeLists.txt -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/example/README.md -------------------------------------------------------------------------------- /example/include/SignalMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/example/include/SignalMath.h -------------------------------------------------------------------------------- /example/matlab/AutogenerationExample.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/example/matlab/AutogenerationExample.mdl -------------------------------------------------------------------------------- /example/matlab/AutogenerationExample_grt_rtw/AutogenerationExample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/example/matlab/AutogenerationExample_grt_rtw/AutogenerationExample.cpp -------------------------------------------------------------------------------- /example/matlab/AutogenerationExample_grt_rtw/AutogenerationExample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/example/matlab/AutogenerationExample_grt_rtw/AutogenerationExample.h -------------------------------------------------------------------------------- /example/matlab/AutogenerationExample_grt_rtw/AutogenerationExample_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/example/matlab/AutogenerationExample_grt_rtw/AutogenerationExample_private.h -------------------------------------------------------------------------------- /example/matlab/AutogenerationExample_grt_rtw/AutogenerationExample_ref.rsp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/matlab/AutogenerationExample_grt_rtw/AutogenerationExample_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/example/matlab/AutogenerationExample_grt_rtw/AutogenerationExample_types.h -------------------------------------------------------------------------------- /example/matlab/AutogenerationExample_grt_rtw/defines.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/example/matlab/AutogenerationExample_grt_rtw/defines.txt -------------------------------------------------------------------------------- /example/matlab/AutogenerationExample_grt_rtw/modelsources.txt: -------------------------------------------------------------------------------- 1 | AutogenerationExample.cpp 2 | -------------------------------------------------------------------------------- /example/matlab/AutogenerationExample_grt_rtw/multiword_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/example/matlab/AutogenerationExample_grt_rtw/multiword_types.h -------------------------------------------------------------------------------- /example/matlab/AutogenerationExample_grt_rtw/rtmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/example/matlab/AutogenerationExample_grt_rtw/rtmodel.h -------------------------------------------------------------------------------- /example/matlab/AutogenerationExample_grt_rtw/rtwtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/example/matlab/AutogenerationExample_grt_rtw/rtwtypes.h -------------------------------------------------------------------------------- /example/matlab/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/example/matlab/CMakeLists.txt -------------------------------------------------------------------------------- /example/matlab/ExampleToolbox.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/example/matlab/ExampleToolbox.slx -------------------------------------------------------------------------------- /example/matlab/Model.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/example/matlab/Model.mdl -------------------------------------------------------------------------------- /example/matlab/slblocks.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/example/matlab/slblocks.m -------------------------------------------------------------------------------- /example/src/Factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/example/src/Factory.cpp -------------------------------------------------------------------------------- /example/src/SignalMath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/example/src/SignalMath.cpp -------------------------------------------------------------------------------- /example/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/example/src/main.cpp -------------------------------------------------------------------------------- /matlab/BlockFactory.tlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/matlab/BlockFactory.tlc -------------------------------------------------------------------------------- /matlab/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/matlab/CMakeLists.txt -------------------------------------------------------------------------------- /pixi.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/pixi.lock -------------------------------------------------------------------------------- /pixi.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/pixi.toml -------------------------------------------------------------------------------- /sources/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/sources/CMakeLists.txt -------------------------------------------------------------------------------- /sources/Core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/sources/Core/CMakeLists.txt -------------------------------------------------------------------------------- /sources/Core/include/BlockFactory/Core/Block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/sources/Core/include/BlockFactory/Core/Block.h -------------------------------------------------------------------------------- /sources/Core/include/BlockFactory/Core/BlockInformation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/sources/Core/include/BlockFactory/Core/BlockInformation.h -------------------------------------------------------------------------------- /sources/Core/include/BlockFactory/Core/ConvertStdVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/sources/Core/include/BlockFactory/Core/ConvertStdVector.h -------------------------------------------------------------------------------- /sources/Core/include/BlockFactory/Core/FactorySingleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/sources/Core/include/BlockFactory/Core/FactorySingleton.h -------------------------------------------------------------------------------- /sources/Core/include/BlockFactory/Core/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/sources/Core/include/BlockFactory/Core/Log.h -------------------------------------------------------------------------------- /sources/Core/include/BlockFactory/Core/Parameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/sources/Core/include/BlockFactory/Core/Parameter.h -------------------------------------------------------------------------------- /sources/Core/include/BlockFactory/Core/Parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/sources/Core/include/BlockFactory/Core/Parameters.h -------------------------------------------------------------------------------- /sources/Core/include/BlockFactory/Core/Port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/sources/Core/include/BlockFactory/Core/Port.h -------------------------------------------------------------------------------- /sources/Core/include/BlockFactory/Core/Signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/sources/Core/include/BlockFactory/Core/Signal.h -------------------------------------------------------------------------------- /sources/Core/src/Block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/sources/Core/src/Block.cpp -------------------------------------------------------------------------------- /sources/Core/src/ConvertStdVector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/sources/Core/src/ConvertStdVector.cpp -------------------------------------------------------------------------------- /sources/Core/src/FactorySingleton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/sources/Core/src/FactorySingleton.cpp -------------------------------------------------------------------------------- /sources/Core/src/Log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/sources/Core/src/Log.cpp -------------------------------------------------------------------------------- /sources/Core/src/Parameter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/sources/Core/src/Parameter.cpp -------------------------------------------------------------------------------- /sources/Core/src/Parameters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/sources/Core/src/Parameters.cpp -------------------------------------------------------------------------------- /sources/Core/src/Signal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/sources/Core/src/Signal.cpp -------------------------------------------------------------------------------- /sources/Simulink/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/sources/Simulink/CMakeLists.txt -------------------------------------------------------------------------------- /sources/Simulink/include/BlockFactory/Simulink/Private/SimulinkBlockInformationImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/sources/Simulink/include/BlockFactory/Simulink/Private/SimulinkBlockInformationImpl.h -------------------------------------------------------------------------------- /sources/Simulink/include/BlockFactory/Simulink/SimulinkBlockInformation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/sources/Simulink/include/BlockFactory/Simulink/SimulinkBlockInformation.h -------------------------------------------------------------------------------- /sources/Simulink/src/BlockFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/sources/Simulink/src/BlockFactory.cpp -------------------------------------------------------------------------------- /sources/Simulink/src/SimulinkBlockInformation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/sources/Simulink/src/SimulinkBlockInformation.cpp -------------------------------------------------------------------------------- /sources/Simulink/src/SimulinkBlockInformationImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/sources/Simulink/src/SimulinkBlockInformationImpl.cpp -------------------------------------------------------------------------------- /sources/SimulinkCoder/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/sources/SimulinkCoder/CMakeLists.txt -------------------------------------------------------------------------------- /sources/SimulinkCoder/include/BlockFactory/SimulinkCoder/CoderBlockInformation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/sources/SimulinkCoder/include/BlockFactory/SimulinkCoder/CoderBlockInformation.h -------------------------------------------------------------------------------- /sources/SimulinkCoder/include/BlockFactory/SimulinkCoder/GeneratedCodeWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/sources/SimulinkCoder/include/BlockFactory/SimulinkCoder/GeneratedCodeWrapper.h -------------------------------------------------------------------------------- /sources/SimulinkCoder/src/CoderBlockInformation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/sources/SimulinkCoder/src/CoderBlockInformation.cpp -------------------------------------------------------------------------------- /sources/Tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/sources/Tools/CMakeLists.txt -------------------------------------------------------------------------------- /sources/Tools/src/BlockfactoryExists.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/sources/Tools/src/BlockfactoryExists.cpp -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/Core/SignalUnitTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/tests/Core/SignalUnitTest.cpp -------------------------------------------------------------------------------- /tests/Factory/FactoryUnitTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/tests/Factory/FactoryUnitTest.cpp -------------------------------------------------------------------------------- /tests/Factory/MockPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/tests/Factory/MockPlugin.cpp -------------------------------------------------------------------------------- /tests/Factory/MockPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/tests/Factory/MockPlugin.h -------------------------------------------------------------------------------- /tests/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robotology/blockfactory/HEAD/tests/main.cpp --------------------------------------------------------------------------------