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.
38 lines
981 B
38 lines
981 B
//========= Copyright Valve Corporation, All rights reserved. ============// |
|
// |
|
// A Dme element intended to be a base class for a common pattern of |
|
// MDLOBJECTS, that is an element which contains simply one attribute |
|
// of type AT_ELEMENTARRAY |
|
// |
|
//===========================================================================// |
|
|
|
|
|
#ifndef DMEMDLLIST_H |
|
#define DMEMDLLIST_H |
|
|
|
|
|
#ifdef _WIN32 |
|
#pragma once |
|
#endif |
|
|
|
|
|
#include "datamodel/dmattributevar.h" |
|
#include "datamodel/dmelement.h" |
|
|
|
|
|
//----------------------------------------------------------------------------- |
|
// A base class intended to be used for the common pattern in MDLOBJECTS |
|
// of an element which is nothing but a container for an array of element |
|
// attributes |
|
//----------------------------------------------------------------------------- |
|
class CDmeMdlList : public CDmElement |
|
{ |
|
DEFINE_ELEMENT( CDmeMdlList, CDmElement ); |
|
|
|
public: |
|
virtual CDmAttribute *GetListAttr() { return NULL; } |
|
|
|
}; |
|
|
|
|
|
#endif // DMEMDLLIST_H
|
|
|