I've no idea here...
[gtkD.git] / src / atk / NoOpObjectFactory.d
blob80397de087499a39bffa0db214f4cc5352d0c581
1 /*
2 * This file is part of duit.
4 * duit is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU Lesser General Public License as published by
6 * the Free Software Foundation; either version 2.1 of the License, or
7 * (at your option) any later version.
9 * duit is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public License
15 * along with duit; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 // generated automatically - do not change
20 // find conversion definition on APILookup.txt
21 // implement new conversion functionalities on the wrap.utils pakage
24 * Conversion parameters:
25 * inFile = AtkNoOpObjectFactory.html
26 * outPack = atk
27 * outFile = NoOpObjectFactory
28 * strct = AtkNoOpObjectFactory
29 * realStrct=
30 * ctorStrct=
31 * clss = NoOpObjectFactory
32 * interf =
33 * class Code: No
34 * interface Code: No
35 * template for:
36 * extend =
37 * implements:
38 * prefixes:
39 * - atk_no_op_object_factory
40 * omit structs:
41 * omit prefixes:
42 * omit code:
43 * imports:
44 * - gobject.ObjectG
45 * structWrap:
46 * - GObject* -> ObjectG
47 * local aliases:
50 module atk.NoOpObjectFactory;
52 private import atk.atktypes;
54 private import lib.atk;
56 private import gobject.ObjectG;
58 /**
59 * Description
60 * The AtkObjectFactory which creates an AtkNoOpObject. An instance of this is
61 * created by an AtkRegistry if no factory type has not been specified to
62 * create an accessible object of a particular type.
64 private import atk.ObjectFactory;
65 public class NoOpObjectFactory : ObjectFactory
68 /** the main Gtk struct */
69 protected AtkNoOpObjectFactory* atkNoOpObjectFactory;
72 public AtkNoOpObjectFactory* getNoOpObjectFactoryStruct()
74 return atkNoOpObjectFactory;
78 /** the main Gtk struct as a void* */
79 protected void* getStruct()
81 return cast(void*)atkNoOpObjectFactory;
84 /**
85 * Sets our main struct and passes it to the parent class
87 public this (AtkNoOpObjectFactory* atkNoOpObjectFactory)
89 super(cast(AtkObjectFactory*)atkNoOpObjectFactory);
90 this.atkNoOpObjectFactory = atkNoOpObjectFactory;
93 /**
97 /**
98 * Creates an instance of an AtkObjectFactory which generates primitive
99 * (non-functioning) AtkObjects.
100 * Returns:
101 * an instance of an AtkObjectFactory
103 public static AtkObjectFactory* _New()
105 // AtkObjectFactory* atk_no_op_object_factory_new (void);
106 return atk_no_op_object_factory_new();