summaryrefslogtreecommitdiff
path: root/examples/echo_ecore/echo-server.h
blob: ca370ce0b65e6fadc87af45a4f06660072180b51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#ifndef __DEMO_ECHO_SERVER_H
#define __DEMO_ECHO_SERVER_H

#include <dbus-c++/dbus.h>
#include <dbus-c++/ecore-integration.h>
#include <Ecore.h>

#include "echo-server-glue.h"

class EchoServer
: public org::freedesktop::DBus::EchoDemo_adaptor,
  public DBus::IntrospectableAdaptor,
  public DBus::ObjectAdaptor
{
public:

	EchoServer(DBus::Connection &connection);

	int32_t Random();

	std::string Hello(const std::string &name);

	DBus::Variant Echo(const DBus::Variant &value);

	std::vector< uint8_t > Cat(const std::string &file);

	int32_t Sum(const std::vector<int32_t> & ints);

	std::map< std::string, std::string > Info();
};

#endif//__DEMO_ECHO_SERVER_H