- Modified command object design.
This commit is contained in:
Paul Beckingham
2011-04-24 12:41:38 -04:00
parent a7c3858729
commit 638fcd8ca0
4 changed files with 26 additions and 4 deletions

View File

@@ -68,6 +68,12 @@ Command& Command::operator= (const Command& other)
return *this;
}
////////////////////////////////////////////////////////////////////////////////
bool Command::read_only () const
{
return false;
}
////////////////////////////////////////////////////////////////////////////////
bool Command::operator== (const Command& other) const
{