-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathOppStatTypes.hpp
48 lines (41 loc) · 1.1 KB
/
OppStatTypes.hpp
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
43
44
45
46
47
48
/******************************************************************************
** (C) Chris Oldwood
**
** MODULE: OPPSTATTYPES.HPP
** COMPONENT: The Application.
** DESCRIPTION: The COppStatTypes class declaration.
**
*******************************************************************************
*/
// Check for previous inclusion
#ifndef OPPSTATTYPES_HPP
#define OPPSTATTYPES_HPP
#if _MSC_VER > 1000
#pragma once
#endif
/******************************************************************************
**
** This is the table used to store all opponents statistic types.
**
*******************************************************************************
*/
class COppStatTypes : public CStatTypes
{
public:
//
// Constructors/Destructor.
//
COppStatTypes();
};
/******************************************************************************
**
** Implementation of inline functions.
**
*******************************************************************************
*/
inline COppStatTypes::COppStatTypes()
: CStatTypes(TXT("OppStatTypes"))
{
// Add the pre-defined statistics.
}
#endif //OPPSTATTYPES_HPP