cmXCode21Object.h 578 B

1234567891011121314151617
  1. /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
  2. file Copyright.txt or https://cmake.org/licensing for details. */
  3. #ifndef cmXCode21Object_h
  4. #define cmXCode21Object_h
  5. #include "cmXCodeObject.h"
  6. class cmXCode21Object : public cmXCodeObject
  7. {
  8. public:
  9. cmXCode21Object(PBXType ptype, Type type);
  10. virtual void PrintComment(std::ostream&);
  11. static void PrintList(std::vector<cmXCodeObject*> const&, std::ostream& out,
  12. PBXType t);
  13. static void PrintList(std::vector<cmXCodeObject*> const&, std::ostream& out);
  14. };
  15. #endif