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
34 lines
806 B
//====== Copyright © 1996-2004, Valve Corporation, All rights reserved. =====//
|
|
//
|
|
// Dme version of a list of $includemodel
|
|
//
|
|
//===========================================================================//
|
|
|
|
#ifndef DMEINCLUDEMODELLIST_H
|
|
#define DMEINCLUDEMODELLIST_H
|
|
|
|
#ifdef _WIN32
|
|
#pragma once
|
|
#endif
|
|
|
|
#include "datamodel/dmelement.h"
|
|
#include "datamodel/dmattributevar.h"
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// A class representing a list of $includemodel
|
|
//-----------------------------------------------------------------------------
|
|
class CDmeIncludeModelList : public CDmElement
|
|
{
|
|
DEFINE_ELEMENT( CDmeIncludeModelList, CDmElement );
|
|
|
|
public:
|
|
|
|
#ifndef SWIG
|
|
CDmaStringArray m_IncludeModels;
|
|
#endif // #ifndef SWIG
|
|
|
|
};
|
|
|
|
|
|
#endif // DMEINCLUDEMODELLIST_H
|