#pragma once #include namespace RNR { class Name { public: char* c_str(); static void compare(const RNR::Name* a, const RNR::Name* b); static void declare(const char* sName, int dictionaryIndex); static std::map* dictionary; }; }