Counter Strike : Global Offensive Source Code
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
806 B

  1. //====== Copyright � 1996-2004, Valve Corporation, All rights reserved. =====//
  2. //
  3. // Dme version of a list of $includemodel
  4. //
  5. //===========================================================================//
  6. #ifndef DMEINCLUDEMODELLIST_H
  7. #define DMEINCLUDEMODELLIST_H
  8. #ifdef _WIN32
  9. #pragma once
  10. #endif
  11. #include "datamodel/dmelement.h"
  12. #include "datamodel/dmattributevar.h"
  13. //-----------------------------------------------------------------------------
  14. // A class representing a list of $includemodel
  15. //-----------------------------------------------------------------------------
  16. class CDmeIncludeModelList : public CDmElement
  17. {
  18. DEFINE_ELEMENT( CDmeIncludeModelList, CDmElement );
  19. public:
  20. #ifndef SWIG
  21. CDmaStringArray m_IncludeModels;
  22. #endif // #ifndef SWIG
  23. };
  24. #endif // DMEINCLUDEMODELLIST_H