23 lines
463 B
C++
23 lines
463 B
C++
/** @file
|
|
* @author Edouard DUPIN
|
|
* @copyright 2011, Edouard DUPIN, all right reserved
|
|
* @license APACHE v2.0 (see license file)
|
|
*/
|
|
#pragma once
|
|
|
|
#include <etk/types.hpp>
|
|
|
|
namespace esvg {
|
|
enum spreadMethod {
|
|
spreadMethod_pad,
|
|
spreadMethod_reflect,
|
|
spreadMethod_repeat
|
|
};
|
|
/**
|
|
* @brief Debug operator To display the curent element in a Human redeable information
|
|
*/
|
|
std::ostream& operator <<(std::ostream& _os, enum esvg::spreadMethod _obj);
|
|
}
|
|
|
|
|