MT Showcase SDK
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Pages
JSONServerServiceAPI.hpp
1 #pragma once
2 
3 #include "Export.hpp"
4 
5 #include <folly/futures/Future.h>
6 
7 #include <QJsonObject>
8 
9 namespace Showcase {
12  class SHOWCASE_API JSONServerServiceAPI
13  {
14  public:
17  virtual folly::Future<QJsonObject> requestJSON(const QJsonObject & json) = 0;
18  };
19 }