blob: 0ef5127c81a38233f129dec626a17001259cee9f (
plain)
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
|
#ifndef GR_CLIENT_H
#define GR_CLIENT_H
#include "GrCommon.h"
#include "GrConstants.h"
#define __RPC_FAR
namespace gr
{
// These are internal classes, whose forward declarations are needed to allow the public interfaces
// to compile but are not intended for client use.
class GrSlotState;
class GrSlotStream;
class GrGlyphTable;
class GrClassTable;
class GrTableManager;
class GrPseudoMap;
class GrFileIStream;
class GrSlotOutput;
class GrCharStream;
class GrIStream;
// Forward declarations of client APIs and classes.
class Segment;
}
#include "GrAppData.h"
#include "GrResult.h"
#include "GrFeature.h"
#if defined(GR_NO_NAMESPACE)
using namespace gr;
#endif
#endif //GR_CLIENT_H
|