20 lines
385 B
C++
20 lines
385 B
C++
/** @file
|
|
* @author Edouard DUPIN
|
|
* @copyright 2011, Edouard DUPIN, all right reserved
|
|
* @license APACHE v2.0 (see license file)
|
|
*/
|
|
|
|
#include <esvg/render/Element.hpp>
|
|
#include <esvg/debug.hpp>
|
|
|
|
esvg::render::ElementClose::ElementClose(bool _relative):
|
|
Element(esvg::render::path_close, _relative) {
|
|
|
|
}
|
|
|
|
std::string esvg::render::ElementClose::display() const {
|
|
return "";
|
|
}
|
|
|
|
|