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 SJISCodingSystem_INCLUDED 6 #define SJISCodingSystem_INCLUDED 1 7 8 #include "CodingSystem.h" 9 10 #ifdef SP_NAMESPACE 11 namespace SP_NAMESPACE { 12 #endif 13 14 class SP_API SJISCodingSystem : 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 SJISCodingSystem_INCLUDED */ 25