IoTeX client
api.h
1
2
3#ifndef API_H
4#define API_H
5
6#include "api/abstract.h"
7#include "api/wallet/wallets.h"
8
9namespace iotex
10{
11class Api : public api::Abstract
12{
13 public:
14 api::Wallets wallets;
15
16 Api() : Abstract(), wallets(_host, *_http)
17 {
18 }
19}; // class Api
20
21} // namespace iotex
22
23#endif
Definition: api.h:12
Definition: abstract.h:12
A class that represents the Wallets API.
Definition: wallets.h:107
Definition: abi.h:12