add echo_ecore example
This commit is contained in:
parent
4ac8b072e3
commit
2185408cfa
19 changed files with 2467 additions and 1 deletions
22
examples/echo_ecore/echo-client.h
Normal file
22
examples/echo_ecore/echo-client.h
Normal file
|
@ -0,0 +1,22 @@
|
|||
#ifndef __DEMO_ECHO_CLIENT_H
|
||||
#define __DEMO_ECHO_CLIENT_H
|
||||
|
||||
#include <dbus-c++/dbus.h>
|
||||
#include <dbus-c++/ecore-integration.h>
|
||||
#include <Ecore.h>
|
||||
|
||||
#include "echo-client-glue.h"
|
||||
|
||||
class EchoClient
|
||||
: public org::freedesktop::DBus::EchoDemo_proxy,
|
||||
public DBus::IntrospectableProxy,
|
||||
public DBus::ObjectProxy
|
||||
{
|
||||
public:
|
||||
|
||||
EchoClient(DBus::Connection &connection, const char *path, const char *name);
|
||||
|
||||
void Echoed(const DBus::Variant &value);
|
||||
};
|
||||
|
||||
#endif//__DEMO_ECHO_CLIENT_H
|
Loading…
Add table
Add a link
Reference in a new issue