24 lines
419 B
C++
24 lines
419 B
C++
/**
|
|
* @author Edouard DUPIN
|
|
*
|
|
* @copyright 2011, Edouard DUPIN, all right reserved
|
|
*
|
|
* @license BSD 3 clauses (see license file)
|
|
*/
|
|
|
|
#include <ewol/Padding.h>
|
|
|
|
std::ostream& ewol::operator <<(std::ostream& _os, const ewol::Padding& _obj) {
|
|
_os << "{";
|
|
_os << _obj.xLeft();
|
|
_os << ",";
|
|
_os << _obj.yTop();
|
|
_os << ",";
|
|
_os << _obj.xRight();
|
|
_os << ",";
|
|
_os << _obj.yButtom();
|
|
_os << "}";
|
|
return _os;
|
|
}
|
|
|