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.
49 lines
1.0 KiB
49 lines
1.0 KiB
//========= Copyright © 1996-2002, Valve LLC, All rights reserved. ============
|
|
//
|
|
// Purpose:
|
|
//
|
|
// $NoKeywords: $
|
|
//=============================================================================
|
|
|
|
#ifndef FACTORYOVERLOADS_H
|
|
#define FACTORYOVERLOADS_H
|
|
#ifdef _WIN32
|
|
#pragma once
|
|
#endif
|
|
|
|
#include "UtlDict.h"
|
|
|
|
class IAttributeWidgetFactory;
|
|
class IAttributeElementChoiceList;
|
|
|
|
class CFactoryOverloads : public IFactoryOverloads
|
|
{
|
|
public:
|
|
virtual void AddOverload
|
|
(
|
|
char const *attributeName,
|
|
IAttributeWidgetFactory *newFactory,
|
|
IAttributeElementChoiceList *newChoiceList
|
|
);
|
|
int Count();
|
|
char const *Name( int index );
|
|
IAttributeWidgetFactory *Factory( int index );
|
|
IAttributeElementChoiceList *ChoiceList( int index );
|
|
|
|
private:
|
|
struct Entry_t
|
|
{
|
|
Entry_t() :
|
|
factory( 0 ),
|
|
choices( 0 )
|
|
{
|
|
}
|
|
|
|
IAttributeWidgetFactory *factory;
|
|
IAttributeElementChoiceList *choices;
|
|
};
|
|
|
|
CUtlDict< Entry_t, int > m_Overloads;
|
|
};
|
|
|
|
#endif // FACTORYOVERLOADS_H
|