Project.hpp 341 B

123456789101112131415161718
  1. #if !defined(Project_HPP)
  2. #define Project_HPP
  3. #include "Class.hpp"
  4. class Project : public Class
  5. {
  6. public:
  7. void build() override;
  8. Project();
  9. ~Project();
  10. /// @brief Generate the long command with `objects` as the objects
  11. /// @param objects
  12. /// @return the builds command with `objects`
  13. string command_gen(string& objects);
  14. };
  15. #endif