22 lines
586 B
C++
22 lines
586 B
C++
/** @file
|
|
* @author Edouard DUPIN
|
|
* @copyright 2011, Edouard DUPIN, all right reserved
|
|
* @license APACHE v2.0 (see license file)
|
|
*/
|
|
|
|
#include <ewol/widget/Widget.hpp>
|
|
|
|
std::ostream& ewol::event::operator <<(std::ostream& _os, const ewol::event::Input& _obj) {
|
|
_os << "{type=" << _obj.getType();
|
|
_os << " status=" << _obj.getStatus();
|
|
_os << " id=" << etk::to_string(_obj.getId());
|
|
_os << " pos=" << _obj.getPos();
|
|
_os << "}";
|
|
return _os;
|
|
}
|
|
|
|
std::ostream& ewol::event::operator <<(std::ostream& _os, const ewol::event::InputSystem& _obj) {
|
|
_os << _obj.m_event;
|
|
return _os;
|
|
}
|