22 lines
411 B
C++
22 lines
411 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 cap {
|
|
cap_butt,
|
|
cap_round,
|
|
cap_square
|
|
};
|
|
/**
|
|
* @brief Debug operator To display the curent element in a Human redeable information
|
|
*/
|
|
etk::Stream& operator <<(etk::Stream& _os, enum esvg::cap _obj);
|
|
}
|
|
|