CLI
- Implemented ::isRCOverride.
This commit is contained in:
@@ -1691,6 +1691,15 @@ void CLI::decomposeModSubstitutions ()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
bool CLI::isRCOverride (const std::string& raw) const
|
||||||
|
{
|
||||||
|
if (raw.length () > 3 && raw.substr (0, 3) == "rc:")
|
||||||
|
return true;
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
bool CLI::isUUID (const std::string& raw) const
|
bool CLI::isUUID (const std::string& raw) const
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -98,6 +98,7 @@ private:
|
|||||||
void decomposeModTags ();
|
void decomposeModTags ();
|
||||||
void decomposeModSubstitutions ();
|
void decomposeModSubstitutions ();
|
||||||
|
|
||||||
|
bool isRCOverride (const std::string&) const;
|
||||||
bool isUUID (const std::string&) const;
|
bool isUUID (const std::string&) const;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|||||||
Reference in New Issue
Block a user