summaryrefslogtreecommitdiff
path: root/include/hashmember.h
diff options
context:
space:
mode:
authorEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-03-15 21:57:08 +0100
committerEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-03-15 21:57:08 +0100
commit895f6315eb306a677bddba86980de8f8ee824efe (patch)
tree75380e6151407cba36ea2fc186268290a363774b /include/hashmember.h
parent3bcd6e21d1142b5ec35f99c4bdcd925bf7ae5083 (diff)
removed HardCoded class because it turned out to be too difficult to implement it for now
Diffstat (limited to 'include/hashmember.h')
-rw-r--r--include/hashmember.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/include/hashmember.h b/include/hashmember.h
index d61e5c9..b8f4dcd 100644
--- a/include/hashmember.h
+++ b/include/hashmember.h
@@ -189,7 +189,6 @@ public:
HashMember &operator+=(char value) { return operator=(this->value() + value); }
HashMember &operator+=(const std::string &value) { return operator=(this->value() + value); }
HashMember &operator+=(const char *value) { return operator=(this->value() + value); }
- HashMember &operator+=(const HardCoded &value) { return operator=(this->value() + value); }
HashMember &operator+=(double value) { return operator=(this->value() + value); }
/**
@@ -205,7 +204,6 @@ public:
HashMember &operator-=(char value) { return operator=(this->value() - value); }
HashMember &operator-=(const std::string &value) { return operator=(this->value() - value); }
HashMember &operator-=(const char *value) { return operator=(this->value() - value); }
- HashMember &operator-=(const HardCoded &value) { return operator=(this->value() - value); }
HashMember &operator-=(double value) { return operator=(this->value() - value); }
/**
@@ -221,7 +219,6 @@ public:
HashMember &operator*=(char value) { return operator=(this->value() * value); }
HashMember &operator*=(const std::string &value) { return operator=(this->value() * value); }
HashMember &operator*=(const char *value) { return operator=(this->value() * value); }
- HashMember &operator*=(const HardCoded &value) { return operator=(this->value() * value); }
HashMember &operator*=(double value) { return operator=(this->value() * value); }
/**
@@ -237,7 +234,6 @@ public:
HashMember &operator/=(char value) { return operator=(this->value() / value); }
HashMember &operator/=(const std::string &value) { return operator=(this->value() / value); }
HashMember &operator/=(const char *value) { return operator=(this->value() / value); }
- HashMember &operator/=(const HardCoded &value) { return operator=(this->value() / value); }
HashMember &operator/=(double value) { return operator=(this->value() / value); }
/**
@@ -253,7 +249,6 @@ public:
HashMember &operator%=(char value) { return operator=(this->value() % value); }
HashMember &operator%=(const std::string &value) { return operator=(this->value() % value); }
HashMember &operator%=(const char *value) { return operator=(this->value() % value); }
- HashMember &operator%=(const HardCoded &value) { return operator=(this->value() % value); }
HashMember &operator%=(double value) { return operator=(this->value() % value); }
/**
@@ -269,7 +264,6 @@ public:
Value operator+(char value) { return this->value() + value; }
Value operator+(const std::string &value) { return this->value() + value; }
Value operator+(const char *value) { return this->value() + value; }
- Value operator+(const HardCoded &value) { return this->value() + value; }
Value operator+(double value) { return this->value() + value; }
/**
@@ -285,7 +279,6 @@ public:
Value operator-(char value) { return this->value() - value; }
Value operator-(const std::string &value) { return this->value() - value; }
Value operator-(const char *value) { return this->value() - value; }
- Value operator-(const HardCoded &value) { return this->value() - value; }
Value operator-(double value) { return this->value() - value; }
/**
@@ -301,7 +294,6 @@ public:
Value operator*(char value) { return this->value() * value; }
Value operator*(const std::string &value) { return this->value() * value; }
Value operator*(const char *value) { return this->value() * value; }
- Value operator*(const HardCoded &value) { return this->value() * value; }
Value operator*(double value) { return this->value() * value; }
/**
@@ -317,7 +309,6 @@ public:
Value operator/(char value) { return this->value() / value; }
Value operator/(const std::string &value) { return this->value() / value; }
Value operator/(const char *value) { return this->value() / value; }
- Value operator/(const HardCoded &value) { return this->value() / value; }
Value operator/(double value) { return this->value() / value; }
/**
@@ -333,7 +324,6 @@ public:
Value operator%(char value) { return this->value() % value; }
Value operator%(const std::string &value) { return this->value() % value; }
Value operator%(const char *value) { return this->value() % value; }
- Value operator%(const HardCoded &value) { return this->value() % value; }
Value operator%(double value) { return this->value() % value; }
/**