// // Created by trotfunky on 07/05/19. // #ifndef SNIPPETS_CIRCLE_H #define SNIPPETS_CIRCLE_H #include #include namespace xmlParser { class Circle { public: Circle(); explicit Circle(pugi::xml_node&); int x; int y; int r; std::string label; }; } #endif //SNIPPETS_CIRCLE_H