blob: 00216e6e7ca45212982be510f4600efe0910ca2a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef T2DLL_T2FLOORCEARRAY_H
#define T2DLL_T2FLOORCEARRAY_H
#include "../common.h"
#include "T2RouteCEArray.h"
class AFX_CLASS_EXPORT T2FloorCEArray : public T2RouteCEArray {
public:
T2FloorCEArray();
virtual ~T2FloorCEArray();
virtual DWORD GetCEClassID() { return 'FCEA'; }
};
#endif
|