continue on switching QString and QByteArray

This commit is contained in:
csoler 2021-11-29 22:59:46 +01:00
parent e4ce32bef8
commit 6a4cdcc471
28 changed files with 525 additions and 397 deletions

View file

@ -56,11 +56,11 @@ public:
GetConfCommand(Type type);
ByteArray build(const ByteArray &key);
ByteArray build(const QList<ByteArray> &keys);
ByteArray build(const std::string &key);
ByteArray build(const std::list<std::string> &keys);
const std::map<std::string,std::list<std::string> > &results() const { return m_results; }
std::list<std::string> get(const ByteArray &key) const;
std::list<std::string> get(const std::string &key) const;
protected:
virtual void onReply(int statusCode, const ByteArray &data);