summaryrefslogtreecommitdiff
path: root/public/mdlobjects/dmesequencelist.h
blob: 9b569356afe47e684af29a1114d5aa3535e5f309 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// A list of DmeSequences's
//
//===========================================================================//


#ifndef DMESEQUENCELIST_H
#define DMESEQUENCELIST_H


#ifdef _WIN32
#pragma once
#endif


#include "datamodel/dmattributevar.h"
#include "mdlobjects/dmemdllist.h"


//-----------------------------------------------------------------------------
// Forward Declarations
//-----------------------------------------------------------------------------
class CDmeSequence;


//-----------------------------------------------------------------------------
// A class representing a list of sequences
//-----------------------------------------------------------------------------
class CDmeSequenceList : public CDmeMdlList
{
	DEFINE_ELEMENT( CDmeSequenceList, CDmeMdlList );

public:
	virtual CDmAttribute *GetListAttr() { return m_Sequences.GetAttribute(); }

	CDmaElementArray< CDmeSequence > m_Sequences;

};


#endif // DMESEQUENCELIST_H