Internals: Move code, no functional change.

This commit is contained in:
Wilson Snyder 2020-03-15 13:39:36 -04:00
parent 5f63b24c50
commit 57068b95ef

View File

@ -100,6 +100,24 @@ public:
~V3OptionsImp() {} ~V3OptionsImp() {}
}; };
//######################################################################
// V3LangCode class functions
V3LangCode::V3LangCode(const char* textp) {
// Return code for given string, or ERROR, which is a bad code
for (int codei = V3LangCode::L_ERROR; codei < V3LangCode::_ENUM_END; ++codei) {
V3LangCode code = V3LangCode(codei);
if (0 == VL_STRCASECMP(textp, code.ascii())) {
m_e = code;
return;
}
}
m_e = V3LangCode::L_ERROR;
}
//######################################################################
// V3Options class functions
void V3Options::addIncDirUser(const string& incdir) { void V3Options::addIncDirUser(const string& incdir) {
m_impp->addIncDirUser(incdir); m_impp->addIncDirUser(incdir);
} }
@ -237,20 +255,6 @@ string V3Options::allArgsString() {
return out; return out;
} }
//######################################################################
// V3LangCode class functions
V3LangCode::V3LangCode(const char* textp) {
// Return code for given string, or ERROR, which is a bad code
for (int codei=V3LangCode::L_ERROR; codei<V3LangCode::_ENUM_END; ++codei) {
V3LangCode code = V3LangCode(codei);
if (0 == VL_STRCASECMP(textp, code.ascii())) {
m_e = code; return;
}
}
m_e = V3LangCode::L_ERROR;
}
//###################################################################### //######################################################################
// File searching // File searching