Library.hpp 167 B

1234567891011121314
  1. #if !defined(Library_HPP)
  2. #define Library_HPP
  3. #include "Class.hpp"
  4. class Library : public Class
  5. {
  6. public:
  7. void build() override;
  8. Library();
  9. ~Library();
  10. };
  11. #endif