summaryrefslogtreecommitdiff
path: root/common/IObjectContainer.h
blob: 105d9b008c1c896564b9ebaf283ce9785518fe22 (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
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose: IObjectContainer.h: interface for the ObjectContainer class.
//
// $NoKeywords: $
//=============================================================================//

#ifndef IOBJECTCONTAINER_H
#define IOBJECTCONTAINER_H

#pragma once

class IObjectContainer  
{
public:
	virtual ~IObjectContainer() {};
	
	virtual void		Init() = 0;

	virtual bool		Add(void * newObject) = 0;
	virtual bool		Remove(void * object) = 0;
	virtual void		Clear(bool freeElementsMemory) = 0;
	
	virtual void *		GetFirst() = 0;
	virtual void *		GetNext() = 0;

	virtual int			CountElements() = 0;;
	virtual bool		Contains(void * object) = 0;
	virtual bool		IsEmpty() = 0;
};

#endif // !defined IOBJECTCONTAINER_H