blob: 8dc7070442356c3c9d08a7b5e719af2cc1cd970f (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
/*
* Copyright 2013 Canonical Ltd.
*
* Authors:
* Charles Kerr <charles.kerr@canonical.com>
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 3, as published
* by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranties of
* MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef MOCK_OBJECT_H
#define MOCK_OBJECT_H
#include <string>
#include <glib.h>
#include <gio/gio.h>
class MockObject
{
public:
MockObject (GMainLoop * loop,
GDBusConnection * bus_connection,
const std::string & object_name,
const std::string & object_path);
virtual ~MockObject ();
const char * name() const { return my_object_name.c_str(); }
const char * path() const { return my_object_path.c_str(); }
GDBusInterfaceSkeleton * skeleton() { return my_skeleton; }
protected:
guint my_owner_id;
GMainLoop * my_loop;
GDBusConnection * my_bus_connection;
const std::string my_object_name;
const std::string my_object_path;
GDBusInterfaceSkeleton * my_skeleton;
void set_skeleton (GDBusInterfaceSkeleton * skeleton);
private:
// safeguard to make sure we don't copy-by-value...
// this object's holding a handful of pointers
MockObject (const MockObject& rhs);
MockObject& operator= (const MockObject& rhs);
};
#endif
|