atk/Makefile.am: Dist atk.rc
[platform/upstream/atk.git] / atk / atkrange.h
index 12e22d9..6a5eeef 100644 (file)
  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  * Boston, MA 02111-1307, USA.
  */
+#ifndef __ATK_RANGE_H__
+#define __ATK_RANGE_H__
+
 #if defined(ATK_DISABLE_SINGLE_INCLUDES) && !defined (__ATK_H_INSIDE__) && !defined (ATK_COMPILATION)
 #error "Only <atk/atk.h> can be included directly."
 #endif
 
-#ifndef __ATK_RANGE_H__
-#define __ATK_RANGE_H__
-
 #include <glib-object.h>
+#include <atk/atkversion.h>
 
 G_BEGIN_DECLS
 
@@ -34,14 +35,21 @@ G_BEGIN_DECLS
 typedef struct _AtkRange AtkRange;
 
 /* AtkRange methods */
+ATK_AVAILABLE_IN_2_12
 GType atk_range_get_type (void);
 
+ATK_AVAILABLE_IN_2_12
 AtkRange*    atk_range_copy (AtkRange *src);
+ATK_AVAILABLE_IN_2_12
 void         atk_range_free (AtkRange *range);
 
+ATK_AVAILABLE_IN_2_12
 gdouble      atk_range_get_lower_limit  (AtkRange    *range);
+ATK_AVAILABLE_IN_2_12
 gdouble      atk_range_get_upper_limit  (AtkRange    *range);
+ATK_AVAILABLE_IN_2_12
 const gchar* atk_range_get_description  (AtkRange    *range);
+ATK_AVAILABLE_IN_2_12
 AtkRange*    atk_range_new              (gdouble      lower_limit,
                                          gdouble      upper_limit,
                                          const gchar *description);