unsigned upProfileId() const throw() { return _upProfileId; }
unsigned downProfileId() const throw() { return _downProfileId; }
+ size_t maxACLPerPDU() const throw() { return _maxACLPerPDU; }
+
const std::string & dataURL() const throw() { return _dataURL; }
// Setters
void setUpProfileId(unsigned value) throw() { _upProfileId = value; }
void setDownProfileId(unsigned value) throw() { _downProfileId = value; }
+ void setMaxACLPerPDU(size_t value) throw() { _maxACLPerPDU = value; }
+
void setDataURL(const std::string & value) throw() { _dataURL = value; }
private:
unsigned _upProfileId;
unsigned _downProfileId;
+ size_t _maxACLPerPDU;
+
std::string _dataURL;
friend class SettingsParser;