parseRomanNumbers.h 577 Bytes
/* 
 * File:   parseRomanNumbers.h
 * Author: Derzu
 *
 * Created on 24 de Fevereiro de 2010, 11:38
 */

#ifndef _PARSEROMANNUMBERS_H
#define	_PARSEROMANNUMBERS_H

#include <string>

namespace Util {

class ParseRomanNumbers {
public:
    ParseRomanNumbers();
    virtual ~ParseRomanNumbers();

    static const int BASIC_VALUES[];
    static const std::string BASIC_ROMAN_NUMBERS[];

    static std::string toRomanValue(int value);
    static int toArabicValue(std::string roman);
    static int toArabicValue(char * roman);
private:

};

}
#endif	/* _PARSEROMANNUMBERS_H */