23 lines
291 B
C++
23 lines
291 B
C++
/**
|
|
* @author Edouard DUPIN
|
|
*
|
|
* @copyright 2011, Edouard DUPIN, all right reserved
|
|
*
|
|
* @license APACHE v2.0 (see license file)
|
|
*/
|
|
|
|
#ifndef __ESVG_CAP_H__
|
|
#define __ESVG_CAP_H__
|
|
|
|
#include <etk/types.h>
|
|
namespace esvg {
|
|
enum cap {
|
|
cap_butt,
|
|
cap_round,
|
|
cap_square
|
|
};
|
|
}
|
|
|
|
#endif
|
|
|