| 138 | } |
| 139 | |
| 140 | int countElements(const KeyType &ID) const |
| 141 | { |
| 142 | if (!this->checkID(ID)) |
| 143 | { |
| 144 | return 0; |
| 145 | } |
| 146 | else |
| 147 | { |
| 148 | return _DataStreams.at(ID).size(); |
| 149 | } |
| 150 | } |
| 151 | |
| 152 | bool checkElement(const KeyType &ID, const double Timestamp, const int Number = 0) const |
| 153 | { |