blob: 6649f11799d408ef5f914e7bbf99a87a78229b51 (
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
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
//=============================================================================
#ifndef DMSERIALIZERKEYVALUES2_H
#define DMSERIALIZERKEYVALUES2_H
#ifdef _WIN32
#pragma once
#endif
//-----------------------------------------------------------------------------
// Forward declarations
//-----------------------------------------------------------------------------
class IDataModel;
//-----------------------------------------------------------------------------
// Installation methods for standard serializers
//-----------------------------------------------------------------------------
void InstallKeyValues2Serializer( IDataModel *pFactory );
#endif // DMSERIALIZERKEYVALUES2_H
|