[DEV] remove empty files
This commit is contained in:
parent
3f7cf66e99
commit
331acf2303
2
build
2
build
@ -1 +1 @@
|
||||
Subproject commit 92c552fd59009e30388d9762b1c9e618193c8d16
|
||||
Subproject commit 885a60f22ce3dfde99819d3471a86fdbd3836237
|
@ -23,7 +23,6 @@
|
||||
#include <ewol/context/commandLine.h>
|
||||
#include <ewol/context/InputManager.h>
|
||||
#include <ewol/context/Fps.h>
|
||||
#include <ewol/object/RemoveEvent.h>
|
||||
#include <memory>
|
||||
|
||||
namespace ewol {
|
||||
|
@ -10,7 +10,6 @@
|
||||
#define __EWOL_SYSTEM_INPUT_H__
|
||||
|
||||
#include <ewol/widget/Widget.h>
|
||||
#include <ewol/object/RemoveEvent.h>
|
||||
|
||||
#define MAX_MANAGE_INPUT (15)
|
||||
|
||||
|
@ -11,7 +11,6 @@
|
||||
|
||||
#include <etk/types.h>
|
||||
#include <ewol/object/Object.h>
|
||||
#include <ewol/object/RemoveEvent.h>
|
||||
|
||||
namespace ewol {
|
||||
class Context;
|
||||
|
@ -1,24 +0,0 @@
|
||||
/**
|
||||
* @author Edouard DUPIN
|
||||
*
|
||||
* @copyright 2011, Edouard DUPIN, all right reserved
|
||||
*
|
||||
* @license APACHE v2.0 (see license file)
|
||||
*/
|
||||
|
||||
#include <ewol/object/Object.h>
|
||||
|
||||
#undef __class__
|
||||
#define __class__ "object/Message"
|
||||
|
||||
std::ostream& ewol::object::operator <<(std::ostream& _os, const ewol::object::Message& _obj) {
|
||||
_os << "{";
|
||||
if (nullptr != _obj.getMessage()) {
|
||||
_os << "msg=\"" << _obj.getMessage() << "\"";
|
||||
} else {
|
||||
_os << "msg={nullptr}";
|
||||
}
|
||||
_os << " data=\"" << _obj.getData() << "\"}";
|
||||
return _os;
|
||||
}
|
||||
|
@ -1,46 +0,0 @@
|
||||
/**
|
||||
* @author Edouard DUPIN
|
||||
*
|
||||
* @copyright 2011, Edouard DUPIN, all right reserved
|
||||
*
|
||||
* @license APACHE v2.0 (see license file)
|
||||
*/
|
||||
|
||||
#ifndef __EWOL_OBJECT_MESSAGE_H__
|
||||
#define __EWOL_OBJECT_MESSAGE_H__
|
||||
|
||||
#include <ewol/debug.h>
|
||||
|
||||
namespace ewol {
|
||||
namespace object {
|
||||
class Message {
|
||||
private:
|
||||
const char* m_event; //!< Event pointer == > unique Id define by the system ...
|
||||
std::string m_data; //!< compositing additionnal message Value.
|
||||
public:
|
||||
Message(const char* _message,
|
||||
const std::string& _data) :
|
||||
m_event(_message),
|
||||
m_data(_data) {
|
||||
|
||||
};
|
||||
void setMessage(const char* _message) {
|
||||
m_event = _message;
|
||||
};
|
||||
inline const char* getMessage() const {
|
||||
return m_event;
|
||||
};
|
||||
void setData(const std::string& _data) {
|
||||
m_data = _data;
|
||||
};
|
||||
inline const std::string& getData() const {
|
||||
return m_data;
|
||||
};
|
||||
};
|
||||
std::ostream& operator <<(std::ostream& _os, const ewol::object::Message& _obj);
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
#endif
|
||||
|
@ -9,7 +9,6 @@
|
||||
#ifndef __EWOL_OBJECT_H__
|
||||
#define __EWOL_OBJECT_H__
|
||||
|
||||
#include <etk/types.h>
|
||||
#include <etk/types.h>
|
||||
#include <vector>
|
||||
#include <exml/exml.h>
|
||||
@ -25,7 +24,7 @@ namespace ewol {
|
||||
class Context;
|
||||
};
|
||||
|
||||
#include <ewol/object/Message.h>
|
||||
#include <ewol/debug.h>
|
||||
#include <ewol/object/ParameterList.h>
|
||||
#include <ewol/object/Param.h>
|
||||
#include <ewol/object/ParamRange.h>
|
||||
|
@ -14,7 +14,6 @@
|
||||
#include <etk/types.h>
|
||||
#include <ewol/debug.h>
|
||||
#include <ewol/resource/Resource.h>
|
||||
#include <ewol/object/RemoveEvent.h>
|
||||
|
||||
namespace ewol {
|
||||
namespace resource {
|
||||
|
@ -14,7 +14,6 @@
|
||||
#include <vector>
|
||||
#include <etk/Hash.h>
|
||||
#include <ewol/widget/Widget.h>
|
||||
#include <ewol/object/RemoveEvent.h>
|
||||
|
||||
namespace ewol {
|
||||
namespace widget {
|
||||
|
@ -89,18 +89,12 @@ def create(target):
|
||||
# object :
|
||||
myModule.add_src_file([
|
||||
'ewol/object/Manager.cpp',
|
||||
'ewol/object/Message.cpp',
|
||||
'ewol/object/MultiCast.cpp',
|
||||
'ewol/object/Object.cpp',
|
||||
'ewol/object/RemoveEvent.cpp',
|
||||
'ewol/object/Parameter.cpp',
|
||||
'ewol/object/ParameterList.cpp',
|
||||
'ewol/object/ParamList.cpp',
|
||||
'ewol/object/Param.cpp',
|
||||
'ewol/object/ParamRange.cpp',
|
||||
'ewol/object/SignalList.cpp',
|
||||
'ewol/object/SignalBase.cpp',
|
||||
'ewol/object/Signal.cpp'
|
||||
'ewol/object/SignalBase.cpp'
|
||||
])
|
||||
|
||||
# OpenGL interface :
|
||||
|
Loading…
x
Reference in New Issue
Block a user