1 // Copyright (c) 1994 James Clark
2 // See the file COPYING for copying permission.
3 #pragma ident	"%Z%%M%	%I%	%E% SMI"
4 
5 #ifndef Fixed2CodingSystem_INCLUDED
6 #define Fixed2CodingSystem_INCLUDED 1
7 
8 #include "CodingSystem.h"
9 
10 #ifdef SP_NAMESPACE
11 namespace SP_NAMESPACE {
12 #endif
13 
14 class SP_API Fixed2CodingSystem : public CodingSystem {
15 public:
16   Decoder *makeDecoder() const;
17   Encoder *makeEncoder() const;
18   unsigned fixedBytesPerChar() const;
19 };
20 
21 #ifdef SP_NAMESPACE
22 }
23 #endif
24 
25 #endif /* not Fixed2CodingSystem_INCLUDED */
26