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.

36 lines
717 B

  1. //===== Copyright (c) 1996-2009, Valve Corporation, All rights reserved. ====
  2. //
  3. // Element group
  4. //
  5. //===========================================================================
  6. #ifndef DMEELEMENTGROUP_H
  7. #define DMEELEMENTGROUP_H
  8. #ifdef _WIN32
  9. #pragma once
  10. #endif
  11. // Valve includes
  12. #include "datamodel/dmelement.h"
  13. #include "datamodel/dmattributevar.h"
  14. //-----------------------------------------------------------------------------
  15. //
  16. //-----------------------------------------------------------------------------
  17. class CDmeElementGroup : public CDmElement
  18. {
  19. DEFINE_ELEMENT( CDmeElementGroup, CDmElement );
  20. public:
  21. CDmaElementArray< CDmeElementGroup > m_eElementList;
  22. };
  23. #endif // DMEELEMENTGROUP_H