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

21
guitar/IntegerPair.hpp Normal file
View 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