Skip to content
Snippets Groups Projects

18: added c++ library

Open Alexander Holodov requested to merge 18-supported_cpp into master
1 file
+ 3
4
Compare changes
  • Side-by-side
  • Inline
+ 3
4
@@ -17,10 +17,9 @@ int main(void) {
form.entityuuid = account.uuid;
auto entity = v.EntityGetEntity(account, form);
for (auto e = entity.begin(); e != entity.end(); ++e) {
std::cout << "activated:" << (*e).created << std::endl;
for (auto& kv : (*e).claims) {
std::cout << kv.first << " " << (*e).claims[kv.first].tags["registration"].value["value"] << std::endl;
for (auto &e : entity) {
for (auto& kv : e.claims) {
std::cout << kv.first << " " << e.claims[kv.first].tags["registration"].value["value"] << std::endl;
}
}
}
Loading