Initial Commit
This commit is contained in:
16
common/PUREWRD.CPP
Normal file
16
common/PUREWRD.CPP
Normal file
@@ -0,0 +1,16 @@
|
||||
#include <common/purewrd.hpp>
|
||||
|
||||
PureWORD PureWORD::operator++(int /*postFixDummy*/)
|
||||
{
|
||||
PureWORD postWORD(*this);
|
||||
mWORD++;
|
||||
return postWORD;
|
||||
}
|
||||
|
||||
PureWORD PureWORD::operator--(int /*postFixDummy*/)
|
||||
{
|
||||
PureWORD postWORD(*this);
|
||||
mWORD--;
|
||||
return postWORD;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user