This commit is contained in:
Andreas Volz 2008-07-29 23:48:09 +02:00
parent 532f48d019
commit 687588c5c1
3 changed files with 57 additions and 31 deletions

View file

@ -30,7 +30,7 @@
#include "api.h"
#include "dispatcher.h"
#include "Ecore_Dispatcher.h"
#include "Ecore.h"
namespace DBus {
@ -72,16 +72,19 @@ private:
void toggle();
static void watch_handler( void* );
static int watch_handler_read ( void*, Ecore_Fd_Handler *fdh);
static int watch_handler_error ( void*, Ecore_Fd_Handler *fdh);
void _enable();
void _disable();
private:
Ecore_Dispatcher _edispatcher;
//GSource* _source;
//GMainContext* _ctx;
Ecore_Fd_Handler *fd_handler_read;
Ecore_Fd_Handler *fd_handler_error;
friend class BusDispatcher;
};