Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:28:17

0001 /* ATK -  Accessibility Toolkit
0002  * Copyright 2001 Sun Microsystems Inc.
0003  *
0004  * This library is free software; you can redistribute it and/or
0005  * modify it under the terms of the GNU Library General Public
0006  * License as published by the Free Software Foundation; either
0007  * version 2 of the License, or (at your option) any later version.
0008  *
0009  * This library is distributed in the hope that it will be useful,
0010  * but WITHOUT ANY WARRANTY; without even the implied warranty of
0011  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
0012  * Library General Public License for more details.
0013  *
0014  * You should have received a copy of the GNU Library General Public
0015  * License along with this library; if not, write to the
0016  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
0017  * Boston, MA 02111-1307, USA.
0018  */
0019 
0020 #if defined(ATK_DISABLE_SINGLE_INCLUDES) && !defined(__ATK_H_INSIDE__) && !defined(ATK_COMPILATION)
0021 #error "Only <atk/atk.h> can be included directly."
0022 #endif
0023 
0024 #include <atk/atkversion.h>
0025 
0026 #ifndef __ATK_NO_OP_OBJECT_H__
0027 #define __ATK_NO_OP_OBJECT_H__
0028 
0029 G_BEGIN_DECLS
0030 
0031 #define ATK_TYPE_NO_OP_OBJECT (atk_no_op_object_get_type ())
0032 #define ATK_NO_OP_OBJECT(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), ATK_TYPE_NO_OP_OBJECT, AtkNoOpObject))
0033 #define ATK_NO_OP_OBJECT_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), ATK_TYPE_NO_OP_OBJECT, AtkNoOpObjectClass))
0034 #define ATK_IS_NO_OP_OBJECT(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), ATK_TYPE_NO_OP_OBJECT))
0035 #define ATK_IS_NO_OP_OBJECT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), ATK_TYPE_NO_OP_OBJECT))
0036 #define ATK_NO_OP_OBJECT_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), ATK_TYPE_NO_OP_OBJECT, AtkNoOpObjectClass))
0037 
0038 typedef struct _AtkNoOpObject AtkNoOpObject;
0039 typedef struct _AtkNoOpObjectClass AtkNoOpObjectClass;
0040 
0041 struct _AtkNoOpObject
0042 {
0043   AtkObject parent;
0044 };
0045 
0046 ATK_AVAILABLE_IN_ALL
0047 GType atk_no_op_object_get_type (void);
0048 
0049 struct _AtkNoOpObjectClass
0050 {
0051   AtkObjectClass parent_class;
0052 };
0053 
0054 ATK_AVAILABLE_IN_ALL
0055 AtkObject *atk_no_op_object_new (GObject *obj);
0056 
0057 G_END_DECLS
0058 
0059 #endif /* __ATK_NO_OP_OBJECT_H__ */