~ubuntu-branches/ubuntu/maverick/telepathy-glib/maverick

« back to all changes in this revision

Viewing changes to tests/lib/echo-chan.h

  • Committer: Bazaar Package Importer
  • Author(s): Robert Ancell
  • Date: 2010-09-01 15:25:27 UTC
  • mfrom: (38.1.3 experimental)
  • Revision ID: james.westby@ubuntu.com-20100901152527-10ufej0ry9s1pvzu
Tags: 0.11.14-2ubuntu1
* debian/control:
  - Updated build-depends for the new vala versionned binaries
* debian/rules:
  - Use -O0 on armel builds to work around FTBFS due to failing selftests
    issue is described in launchpad bug 623979, failing buildlog is attached
    to that bug.

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
#define __TP_TESTS_CHAN_H__
14
14
 
15
15
#include <glib-object.h>
 
16
#include <telepathy-glib/base-channel.h>
16
17
#include <telepathy-glib/base-connection.h>
17
18
#include <telepathy-glib/text-mixin.h>
18
19
 
41
42
                              TpTestsEchoChannelClass))
42
43
 
43
44
struct _TpTestsEchoChannelClass {
44
 
    GObjectClass parent_class;
 
45
    TpBaseChannelClass parent_class;
45
46
    TpTextMixinClass text_class;
46
47
    TpDBusPropertiesMixinClass dbus_properties_class;
47
48
};
48
49
 
49
50
struct _TpTestsEchoChannel {
50
 
    GObject parent;
 
51
    TpBaseChannel parent;
51
52
    TpTextMixin text;
52
53
 
53
54
    TpTestsEchoChannelPrivate *priv;