~ubuntu-branches/ubuntu/saucy/atkmm1.6/saucy-proposed

« back to all changes in this revision

Viewing changes to atk/atkmm/streamablecontent.h

  • Committer: Package Import Robot
  • Author(s): Sebastien Bacher
  • Date: 2013-05-28 13:04:34 UTC
  • mfrom: (0.1.6 sid)
  • Revision ID: package-import@ubuntu.com-20130528130434-e0esxsm4eo8bn8tf
Tags: 2.22.7-1ubuntu1
* Resynchronize on Debian, remaining diff
* Convert to multiarch (LP: #902703):
  - Pass --libdir with multiarch path to configure
  - Adjust .install files to refer to /usr/lib subdirs
  - Add multiarch Pre-Depends
  - Bump debhelper and cdbs build-deps for ${misc:Pre-Depends} and
    $(DEB_HOST_MULTIARCH) support, respectively
* debian/compat: update to 9.

Show diffs side-by-side

added added

removed removed

Lines of Context:
74
74
  StreamableContent(const StreamableContent&);
75
75
  StreamableContent& operator=(const StreamableContent&);
76
76
 
 
77
#endif /* DOXYGEN_SHOULD_SKIP_THIS */
77
78
protected:
78
 
  StreamableContent(); // you must derive from this class
79
 
 
 
79
  /**
 
80
   * You should derive from this class to use it.
 
81
   */
 
82
  StreamableContent();
 
83
  
 
84
#ifndef DOXYGEN_SHOULD_SKIP_THIS
80
85
  /** Called by constructors of derived classes. Provide the result of 
81
86
   * the Class init() function to ensure that it is properly 
82
87
   * initialized.
99
104
 
100
105
  static void add_interface(GType gtype_implementer);
101
106
 
102
 
#ifndef DOXYGEN_SHOULD_SKIP_THIS
 
107
  /** Get the GType for this class, for use with the underlying GObject type system.
 
108
   */
103
109
  static GType get_type()      G_GNUC_CONST;
 
110
 
 
111
#ifndef DOXYGEN_SHOULD_SKIP_THIS
104
112
  static GType get_base_type() G_GNUC_CONST;
105
113
#endif
106
114