ftp.nice.ch/pub/next/developer/languages/sgml/sp.1.1.1.I.bs.tar.gz#/sp-1.1.1.I.bs/include/Win32CodingSystem.h

This is Win32CodingSystem.h in view mode; [Download] [Up]

// Copyright (c) 1996 James Clark
// See the file COPYING for copying permission.

#ifndef Win32CodingSystem_INCLUDED
#define Win32CodingSystem_INCLUDED 1

#ifdef __GNUG__
#pragma interface
#endif

#include "CodingSystem.h"
#include "Boolean.h"

#ifdef SP_NAMESPACE
namespace SP_NAMESPACE {
#endif

class SP_API Win32CodingSystem : public CodingSystem {
public:
  enum SpecialCodePage {
    codePageOEM,
    codePageAnsi
    };
  Win32CodingSystem(unsigned int codePage, Char defaultChar = 0xfffd);
  Win32CodingSystem(SpecialCodePage, Char defaultChar = 0xfffd);
  Boolean isValid() const;
  Decoder *makeDecoder() const;
  Encoder *makeEncoder() const;
private:
  unsigned int codePage_;
  Char defaultChar_;
};

#ifdef SP_NAMESPACE
}
#endif

#endif /* not Win32CodingSystem_INCLUDED */

These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.