This commit is contained in:
2024-08-07 09:16:27 -04:00
parent fdfadd5c7e
commit 5f971cf684
5200 changed files with 731717 additions and 0 deletions

37
mdiwin/INT.HPP Normal file
View File

@@ -0,0 +1,37 @@
#ifndef _INTEGER_HPP_
#define _INTEGER_HPP_
class Integer
{
public:
Integer(void);
Integer(int value);
~Integer();
operator int(void)const;
private:
int mValue;
};
inline
Integer::Integer(void)
: mValue(0)
{
}
inline
Integer::Integer(int value)
: mValue(value)
{
}
inline
Integer::~Integer()
{
}
inline
Integer::operator int(void)const
{
return mValue;
}
#endif