Logo

GitLab

Sign in

SGJP / Morfeusz

  • Back to Group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • Morfeusz
  • morfeusz
  • charset
  • CaseConverter.hpp
  • - dodana obsługa zmiany wielkości liter ...
    f2f0f246
    git-svn-id: svn://svn.nlp.ipipan.waw.pl/morfeusz/morfeusz@24 ff4e3ee1-f430-4e82-ade0-24591c43f1fd
    Michał Lenart authored
    2013-11-22 14:34:06 +0000  
    Browse Dir »
CaseConverter.hpp 377 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
/* 
 * File:   CaseConverter.hpp
 * Author: lennyn
 *
 * Created on November 22, 2013, 2:36 PM
 */

#ifndef CASECONVERTER_HPP
#define	CASECONVERTER_HPP

#include <cstdint>
#include <map>

class CaseConverter {
public:
    CaseConverter();
    uint32_t toLower(uint32_t codepoint) const;
private:
    std::map<uint32_t, uint32_t> extCaseMap;
};

#endif	/* CASECONVERTER_HPP */