Initial
This commit is contained in:
21
guitar/IntegerPair.hpp
Normal file
21
guitar/IntegerPair.hpp
Normal file
@@ -0,0 +1,21 @@
|
||||
#ifndef _GUITAR_INTEGERPAIR_HPP_
|
||||
#define _GUITAR_INTEGERPAIR_HPP_
|
||||
|
||||
class IntegerPair
|
||||
{
|
||||
public:
|
||||
IntegerPair();
|
||||
IntegerPair(const IntegerPair &integerPair);
|
||||
virtual IntegerPair();
|
||||
IntegerPair &operator=(const IntegerPair &integerPair);
|
||||
bool operator<(const IntegerPair &integerPair);
|
||||
bool operator>(const IntegerPair &integerPair);
|
||||
bool operator==(const IntegerPair &integerPair);
|
||||
int getValue(void)const;
|
||||
void setValue(int value);
|
||||
int getComparator
|
||||
private:
|
||||
int mValue;
|
||||
int mComparator;
|
||||
};
|
||||
#endif
|
||||
Reference in New Issue
Block a user