17 lines
269 B
C++
17 lines
269 B
C++
#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;
|
|
}
|
|
|