#Stellar C++ API
Very simple library that connects to the WebSocket Stellar API using easywsclient and rapidjson.
###Features:
- Get account information
- Send Stellars
###Todo:
- Finish the subscriber mode
- Support more of the Stellar API
- Add exception handling to the JSON parsing
- Support for several currencies
##Example
// Create Stellar object, connects to the Stellar network
Stellar stellar;
auto info = stellar.GetInfo("address");
std::cout << "Account balance: " << info.balance << std::endl;
// Send 1000 Stellar to yours truly
auto reply = stellar.SendStellar("secret", "your_address", "g9j5EDysguoofGCsDS357HeHAeCg2NbxaW", 1000);
std::cout << "Payment status: " << reply.status << std::endl;