Added ftm attributes to WiFiMeasurement
This commit is contained in:
@@ -34,12 +34,15 @@ public:
|
||||
|
||||
const std::string& get(const int idx) const {return split.at(idx);}
|
||||
|
||||
const float getFloat(const int idx) const {return std::stof(get(idx));}
|
||||
const float getFloat (const int idx) const {return std::stof(get(idx));}
|
||||
const int getInteger(const int idx) const {return std::stoi(get(idx));}
|
||||
|
||||
size_t size() const {return split.size();}
|
||||
|
||||
bool empty() const {return split.empty();}
|
||||
|
||||
bool isEmpty(int idx) const { return has(idx) ? get(idx) == "" : true; }
|
||||
|
||||
private:
|
||||
|
||||
void build() {
|
||||
|
||||
Reference in New Issue
Block a user