tsp_cpp/snippets/Circle.h

27 lines
366 B
C
Raw Normal View History

//
// 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