26 lines
366 B
C++
26 lines
366 B
C++
//
|
|
// Created by trotfunky on 07/05/19.
|
|
//
|
|
|
|
#ifndef SNIPPETS_CIRCLE_H
|
|
#define SNIPPETS_CIRCLE_H
|
|
|
|
#include <string>
|
|
#include <pugixml.hpp>
|
|
|
|
namespace xmlParser
|
|
{
|
|
class Circle
|
|
{
|
|
public:
|
|
Circle();
|
|
explicit Circle(pugi::xml_node&);
|
|
|
|
int x;
|
|
int y;
|
|
int r;
|
|
|
|
std::string label;
|
|
};
|
|
}
|
|
#endif //SNIPPETS_CIRCLE_H
|