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