├── CMakeLists.txt ├── Makefile ├── README ├── include ├── mapstitch │ └── mapstitch.h └── tclap │ ├── Arg.h │ ├── ArgException.h │ ├── ArgTraits.h │ ├── CmdLine.h │ ├── CmdLineInterface.h │ ├── CmdLineOutput.h │ ├── Constraint.h │ ├── DocBookOutput.h │ ├── HelpVisitor.h │ ├── IgnoreRestVisitor.h │ ├── Makefile.am │ ├── Makefile.in │ ├── MultiArg.h │ ├── MultiSwitchArg.h │ ├── OptionalUnlabeledTracker.h │ ├── StandardTraits.h │ ├── StdOutput.h │ ├── SwitchArg.h │ ├── UnlabeledMultiArg.h │ ├── UnlabeledValueArg.h │ ├── ValueArg.h │ ├── ValuesConstraint.h │ ├── VersionVisitor.h │ ├── Visitor.h │ ├── XorHandler.h │ └── ZshCompletionOutput.h ├── mainpage.dox ├── manifest.xml └── src ├── CMakeLists.txt ├── main.cpp ├── mapstitch.cpp └── rosmain.cpp /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tu-darmstadt-ros-pkg/mapstitch/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tu-darmstadt-ros-pkg/mapstitch/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tu-darmstadt-ros-pkg/mapstitch/HEAD/README -------------------------------------------------------------------------------- /include/mapstitch/mapstitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tu-darmstadt-ros-pkg/mapstitch/HEAD/include/mapstitch/mapstitch.h -------------------------------------------------------------------------------- /include/tclap/Arg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tu-darmstadt-ros-pkg/mapstitch/HEAD/include/tclap/Arg.h -------------------------------------------------------------------------------- /include/tclap/ArgException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tu-darmstadt-ros-pkg/mapstitch/HEAD/include/tclap/ArgException.h -------------------------------------------------------------------------------- /include/tclap/ArgTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tu-darmstadt-ros-pkg/mapstitch/HEAD/include/tclap/ArgTraits.h -------------------------------------------------------------------------------- /include/tclap/CmdLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tu-darmstadt-ros-pkg/mapstitch/HEAD/include/tclap/CmdLine.h -------------------------------------------------------------------------------- /include/tclap/CmdLineInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tu-darmstadt-ros-pkg/mapstitch/HEAD/include/tclap/CmdLineInterface.h -------------------------------------------------------------------------------- /include/tclap/CmdLineOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tu-darmstadt-ros-pkg/mapstitch/HEAD/include/tclap/CmdLineOutput.h -------------------------------------------------------------------------------- /include/tclap/Constraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tu-darmstadt-ros-pkg/mapstitch/HEAD/include/tclap/Constraint.h -------------------------------------------------------------------------------- /include/tclap/DocBookOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tu-darmstadt-ros-pkg/mapstitch/HEAD/include/tclap/DocBookOutput.h -------------------------------------------------------------------------------- /include/tclap/HelpVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tu-darmstadt-ros-pkg/mapstitch/HEAD/include/tclap/HelpVisitor.h -------------------------------------------------------------------------------- /include/tclap/IgnoreRestVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tu-darmstadt-ros-pkg/mapstitch/HEAD/include/tclap/IgnoreRestVisitor.h -------------------------------------------------------------------------------- /include/tclap/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tu-darmstadt-ros-pkg/mapstitch/HEAD/include/tclap/Makefile.am -------------------------------------------------------------------------------- /include/tclap/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tu-darmstadt-ros-pkg/mapstitch/HEAD/include/tclap/Makefile.in -------------------------------------------------------------------------------- /include/tclap/MultiArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tu-darmstadt-ros-pkg/mapstitch/HEAD/include/tclap/MultiArg.h -------------------------------------------------------------------------------- /include/tclap/MultiSwitchArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tu-darmstadt-ros-pkg/mapstitch/HEAD/include/tclap/MultiSwitchArg.h -------------------------------------------------------------------------------- /include/tclap/OptionalUnlabeledTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tu-darmstadt-ros-pkg/mapstitch/HEAD/include/tclap/OptionalUnlabeledTracker.h -------------------------------------------------------------------------------- /include/tclap/StandardTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tu-darmstadt-ros-pkg/mapstitch/HEAD/include/tclap/StandardTraits.h -------------------------------------------------------------------------------- /include/tclap/StdOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tu-darmstadt-ros-pkg/mapstitch/HEAD/include/tclap/StdOutput.h -------------------------------------------------------------------------------- /include/tclap/SwitchArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tu-darmstadt-ros-pkg/mapstitch/HEAD/include/tclap/SwitchArg.h -------------------------------------------------------------------------------- /include/tclap/UnlabeledMultiArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tu-darmstadt-ros-pkg/mapstitch/HEAD/include/tclap/UnlabeledMultiArg.h -------------------------------------------------------------------------------- /include/tclap/UnlabeledValueArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tu-darmstadt-ros-pkg/mapstitch/HEAD/include/tclap/UnlabeledValueArg.h -------------------------------------------------------------------------------- /include/tclap/ValueArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tu-darmstadt-ros-pkg/mapstitch/HEAD/include/tclap/ValueArg.h -------------------------------------------------------------------------------- /include/tclap/ValuesConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tu-darmstadt-ros-pkg/mapstitch/HEAD/include/tclap/ValuesConstraint.h -------------------------------------------------------------------------------- /include/tclap/VersionVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tu-darmstadt-ros-pkg/mapstitch/HEAD/include/tclap/VersionVisitor.h -------------------------------------------------------------------------------- /include/tclap/Visitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tu-darmstadt-ros-pkg/mapstitch/HEAD/include/tclap/Visitor.h -------------------------------------------------------------------------------- /include/tclap/XorHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tu-darmstadt-ros-pkg/mapstitch/HEAD/include/tclap/XorHandler.h -------------------------------------------------------------------------------- /include/tclap/ZshCompletionOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tu-darmstadt-ros-pkg/mapstitch/HEAD/include/tclap/ZshCompletionOutput.h -------------------------------------------------------------------------------- /mainpage.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tu-darmstadt-ros-pkg/mapstitch/HEAD/mainpage.dox -------------------------------------------------------------------------------- /manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tu-darmstadt-ros-pkg/mapstitch/HEAD/manifest.xml -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tu-darmstadt-ros-pkg/mapstitch/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tu-darmstadt-ros-pkg/mapstitch/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/mapstitch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tu-darmstadt-ros-pkg/mapstitch/HEAD/src/mapstitch.cpp -------------------------------------------------------------------------------- /src/rosmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tu-darmstadt-ros-pkg/mapstitch/HEAD/src/rosmain.cpp --------------------------------------------------------------------------------