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