TinkoffInvestSDK
services
customservice.h
1
#ifndef CUSTOMTINKOFFSERVICE_H
2
#define CUSTOMTINKOFFSERVICE_H
3
4
#include <grpcpp/grpcpp.h>
5
#include "google/protobuf/message.h"
6
#include "servicereply.h"
7
8
using
grpc::ClientContext;
9
using
grpc::Status;
10
14
class
CustomService
15
{
16
17
public
:
18
CustomService
(
const
std::string &token);
19
virtual
~
CustomService
() =
default
;
20
21
protected
:
22
const
std::string m_token;
23
std::shared_ptr<grpc::ClientContext> makeContext();
24
25
};
26
27
#endif // CUSTOMTINKOFFSERVICE_H
CustomService
Родительский класс для всех сервисов
Definition:
customservice.h:14
Создано системой
1.8.17