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