OLD | NEW |
(Empty) | |
| 1 /* |
| 2 * Copyright (C) 2013, The Android Open Source Project |
| 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 #ifndef LATINIME_HISTORICAL_INFO_H |
| 18 #define LATINIME_HISTORICAL_INFO_H |
| 19 |
| 20 #include "third_party/android_prediction/defines.h" |
| 21 |
| 22 namespace latinime { |
| 23 |
| 24 class HistoricalInfo { |
| 25 public: |
| 26 // Invalid historical info. |
| 27 HistoricalInfo() |
| 28 : mTimestamp(NOT_A_TIMESTAMP), mLevel(0), mCount(0) {} |
| 29 |
| 30 HistoricalInfo(const int timestamp, const int level, const int count) |
| 31 : mTimestamp(timestamp), mLevel(level), mCount(count) {} |
| 32 |
| 33 bool isValid() const { |
| 34 return mTimestamp != NOT_A_TIMESTAMP; |
| 35 } |
| 36 |
| 37 int getTimeStamp() const { |
| 38 return mTimestamp; |
| 39 } |
| 40 |
| 41 int getLevel() const { |
| 42 return mLevel; |
| 43 } |
| 44 |
| 45 int getCount() const { |
| 46 return mCount; |
| 47 } |
| 48 |
| 49 private: |
| 50 // Copy constructor is public to use this class as a type of return value. |
| 51 DISALLOW_ASSIGNMENT_OPERATOR(HistoricalInfo); |
| 52 |
| 53 const int mTimestamp; |
| 54 const int mLevel; |
| 55 const int mCount; |
| 56 }; |
| 57 } // namespace latinime |
| 58 #endif /* LATINIME_HISTORICAL_INFO_H */ |
OLD | NEW |