Initial import of the CDE 2.1.30 sources from the Open Group.
[oweals/cde.git] / cde / programs / nsgmls / RegisteredCodingSystem.h
1 /* $XConsortium: RegisteredCodingSystem.h /main/1 1996/07/29 17:02:50 cde-hp $ */
2 // Copyright (c) 1994 James Clark
3 // See the file COPYING for copying permission.
4
5 #ifndef RegisteredCodingSystem_INCLUDED
6 #define RegisteredCodingSystem_INCLUDED 1
7
8 #ifdef SP_NAMESPACE
9 namespace SP_NAMESPACE {
10 #endif
11
12 class InputCodingSystem;
13
14 struct RegisteredCodingSystem {
15   RegisteredCodingSystem() { }
16   ~RegisteredCodingSystem() { }
17   const char *name;
18   const InputCodingSystem *ics;
19 };
20
21 #ifdef SP_NAMESPACE
22 }
23 #endif
24
25 #endif /* not RegisteredCodingSystem_INCLUDED */