24 lines
458 B
C++
24 lines
458 B
C++
/** @file
|
|
* @author Edouard DUPIN
|
|
* @copyright 2011, Edouard DUPIN, all right reserved
|
|
* @license MPL v2.0 (see license file)
|
|
*/
|
|
#pragma once
|
|
|
|
#include <etk/types.hpp>
|
|
#include <etk/math/Vector2D.hpp>
|
|
#include <esvg/render/Element.hpp>
|
|
|
|
namespace esvg {
|
|
namespace render {
|
|
class ElementLineToV : public esvg::render::Element {
|
|
public:
|
|
ElementLineToV(bool _relative, float _posY);
|
|
public:
|
|
virtual etk::String display() const;
|
|
};
|
|
}
|
|
}
|
|
|
|
|