23 lines
419 B
C++
23 lines
419 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>
|
|
|
|
namespace esvg {
|
|
enum join {
|
|
join_miter,
|
|
join_round,
|
|
join_bevel
|
|
};
|
|
/**
|
|
* @brief Debug operator To display the curent element in a Human redeable information
|
|
*/
|
|
std::ostream& operator <<(std::ostream& _os, enum esvg::join _obj);
|
|
}
|
|
|
|
|