esvg/esvg/render/ElementStop.h

30 lines
515 B
C++

/**
* @author Edouard DUPIN
*
* @copyright 2011, Edouard DUPIN, all right reserved
*
* @license APACHE v2.0 (see license file)
*/
#ifndef __ESVG_RENDER_ELEMENT_STOP_H__
#define __ESVG_RENDER_ELEMENT_STOP_H__
#include <etk/types.h>
#include <etk/math/Vector2D.h>
#include <esvg/render/Element.h>
namespace esvg {
namespace render {
class ElementStop : public Element {
public:
ElementStop(bool _relative=false):
Element(esvg::render::path_stop, _relative) {
}
};
}
}
#endif