C++ cash course project
I made this Project to be scalable with maximum modularity by applying oop concepts
Project details
- Mingw
- GNU gdb
- Cmake (VERSION 3.8)
- Text editor
├── CMakeLists.txt
├── build
│ ├── CMakeCache.txt
│ ├── CMakeFiles
│ ├── Makefile
│ ├── cmake_install.cmake
│ └── robot
├── include
│ ├── Location.h
│ ├── Manipulator.h
│ ├── MobileManipulator.h
│ ├── MobileRobot.h
│ ├── Robot.h
│ └── utilities.h
├── main.cpp
└── src
│ ├── Location.cpp
│ ├── Manipulator.cpp
│ ├── MobileManipulator.cpp
│ ├── MobileRobot.cpp
│ ├── Robot.cpp
│ └── utilities.cpp
To print debugging messages just set debug
to true
utilities.h
/******************************************************************************
* Macros
*******************************************************************************/
#define DEBUG fasle
Navigate to build directory then open the terminal and type
$ cmake CmakeLists.txt ..
Finally generate the excutable file
$ make