reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 1 | /* |
| 2 | Copyright 2010 Google Inc. |
| 3 | |
| 4 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | you may not use this file except in compliance with the License. |
| 6 | You may obtain a copy of the License at |
| 7 | |
| 8 | http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | |
| 10 | Unless required by applicable law or agreed to in writing, software |
| 11 | distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | See the License for the specific language governing permissions and |
| 14 | limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | |
| 18 | #ifndef GrKey_DEFINED |
| 19 | #define GrKey_DEFINED |
| 20 | |
| 21 | #include "GrRefCnt.h" |
| 22 | |
| 23 | class GrKey : public GrRefCnt { |
| 24 | public: |
| 25 | typedef intptr_t Hash; |
| 26 | |
| 27 | explicit GrKey(Hash hash) : fHash(hash) {} |
| 28 | |
| 29 | intptr_t getHash() const { return fHash; } |
| 30 | |
| 31 | bool operator<(const GrKey& rh) const { |
| 32 | return fHash < rh.fHash || (fHash == rh.fHash && this->lt(rh)); |
| 33 | } |
| 34 | bool operator==(const GrKey& rh) const { |
| 35 | return fHash == rh.fHash && this->eq(rh); |
| 36 | } |
| 37 | |
| 38 | protected: |
| 39 | virtual bool lt(const GrKey& rh) const = 0; |
| 40 | virtual bool eq(const GrKey& rh) const = 0; |
| 41 | |
| 42 | private: |
| 43 | const Hash fHash; |
| 44 | }; |
| 45 | |
| 46 | #endif |
| 47 | |