blob: a37789392fb0b5996fd6c71e674ccac5ad84d96b (
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
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================//
#include "init_factory.h"
// memdbgon must be the last include file in a .cpp file!!!
#include "tier0/memdbgon.h"
static factorylist_t s_factories;
// Store off the factories
void FactoryList_Store( const factorylist_t &sourceData )
{
s_factories = sourceData;
}
// retrieve the stored factories
void FactoryList_Retrieve( factorylist_t &destData )
{
destData = s_factories;
}
|