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

« back to all changes in this revision

Viewing changes to atk/atkmm/action.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:
81
81
  Action(const Action&);
82
82
  Action& operator=(const Action&);
83
83
 
 
84
#endif /* DOXYGEN_SHOULD_SKIP_THIS */
84
85
protected:
85
 
  Action(); // you must derive from this class
86
 
 
 
86
  /**
 
87
   * You should derive from this class to use it.
 
88
   */
 
89
  Action();
 
90
  
 
91
#ifndef DOXYGEN_SHOULD_SKIP_THIS
87
92
  /** Called by constructors of derived classes. Provide the result of 
88
93
   * the Class init() function to ensure that it is properly 
89
94
   * initialized.
106
111
 
107
112
  static void add_interface(GType gtype_implementer);
108
113
 
109
 
#ifndef DOXYGEN_SHOULD_SKIP_THIS
 
114
  /** Get the GType for this class, for use with the underlying GObject type system.
 
115
   */
110
116
  static GType get_type()      G_GNUC_CONST;
 
117
 
 
118
#ifndef DOXYGEN_SHOULD_SKIP_THIS
111
119
  static GType get_base_type() G_GNUC_CONST;
112
120
#endif
113
121