UnicodeReader.h 999 B

123456789101112131415161718192021222324252627282930313233343536
  1. /*
  2. ******************************************************************************
  3. * © 2016 and later: Unicode, Inc. and others. *
  4. * License & terms of use: http://www.unicode.org/copyright.html#License *
  5. ******************************************************************************
  6. ******************************************************************************
  7. * Copyright (C) 1998-2001, International Business Machines Corporation and *
  8. * others. All Rights Reserved. *
  9. ******************************************************************************
  10. */
  11. #ifndef __UNICODEREADER_H
  12. #define __UNICODEREADER_H
  13. #include "unicode/utypes.h"
  14. #include "GUISupport.h"
  15. class UnicodeReader
  16. {
  17. public:
  18. UnicodeReader()
  19. {
  20. // nothing...
  21. }
  22. ~UnicodeReader()
  23. {
  24. // nothing, too
  25. }
  26. static const UChar *readFile(const char *fileName, GUISupport *guiSupport, int32_t &charCount);
  27. };
  28. #endif