~ubuntu-branches/ubuntu/maverick/sflphone/maverick

« back to all changes in this revision

Viewing changes to sflphone-common/libs/dbus-c++/include/dbus-c++/introspection.h

  • Committer: Bazaar Package Importer
  • Author(s): Francois Marier
  • Date: 2010-06-03 15:59:46 UTC
  • Revision ID: james.westby@ubuntu.com-20100603155946-ybe8d8o8zx8lp0m8
Tags: upstream-0.9.8.3
ImportĀ upstreamĀ versionĀ 0.9.8.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *
 
3
 *  D-Bus++ - C++ bindings for D-Bus
 
4
 *
 
5
 *  Copyright (C) 2005-2007  Paolo Durante <shackan@gmail.com>
 
6
 *
 
7
 *
 
8
 *  This library is free software; you can redistribute it and/or
 
9
 *  modify it under the terms of the GNU Lesser General Public
 
10
 *  License as published by the Free Software Foundation; either
 
11
 *  version 2.1 of the License, or (at your option) any later version.
 
12
 *
 
13
 *  This library is distributed in the hope that it will be useful,
 
14
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
16
 *  Lesser General Public License for more details.
 
17
 *
 
18
 *  You should have received a copy of the GNU Lesser General Public
 
19
 *  License along with this library; if not, write to the Free Software
 
20
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
21
 *
 
22
 */
 
23
 
 
24
 
 
25
#ifndef __DBUSXX_INTROSPECTION_H
 
26
#define __DBUSXX_INTROSPECTION_H
 
27
 
 
28
#include "api.h"
 
29
#include "interface.h"
 
30
 
 
31
namespace DBus {
 
32
 
 
33
struct DXXAPI IntrospectedArgument
 
34
{
 
35
        const char *name;
 
36
        const char *type;
 
37
        const bool  in;
 
38
};
 
39
 
 
40
struct DXXAPI IntrospectedMethod
 
41
{
 
42
        const char *name;
 
43
        const IntrospectedArgument *args;
 
44
};
 
45
 
 
46
struct DXXAPI IntrospectedProperty
 
47
{
 
48
        const char *name;
 
49
        const char *type;
 
50
        const bool  read;
 
51
        const bool  write;
 
52
};
 
53
 
 
54
struct DXXAPI IntrospectedInterface
 
55
{
 
56
        const char *name;
 
57
        const IntrospectedMethod *methods;
 
58
        const IntrospectedMethod *signals;
 
59
        const IntrospectedProperty *properties;
 
60
};
 
61
 
 
62
class DXXAPI IntrospectableAdaptor : public InterfaceAdaptor
 
63
{
 
64
public:
 
65
 
 
66
        IntrospectableAdaptor();
 
67
 
 
68
        Message Introspect(const CallMessage &);
 
69
 
 
70
protected:
 
71
 
 
72
        IntrospectedInterface *const introspect() const;
 
73
};
 
74
 
 
75
class DXXAPI IntrospectableProxy : public InterfaceProxy
 
76
{
 
77
public:
 
78
 
 
79
        IntrospectableProxy();
 
80
 
 
81
        std::string Introspect();
 
82
};
 
83
 
 
84
} /* namespace DBus */
 
85
 
 
86
#endif//__DBUSXX_INTROSPECTION_H