michael@0: /* -*- Mode: C; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ michael@0: /* vim:expandtab:shiftwidth=2:tabstop=2: michael@0: */ michael@0: /* This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: #ifndef __MAI_REDUNDANT_OBJECT_FACTORY_H__ michael@0: #define __MAI_REDUNDANT_OBJECT_FACTORY_H__ michael@0: michael@0: G_BEGIN_DECLS michael@0: michael@0: typedef struct _maiRedundantObjectFactory maiRedundantObjectFactory; michael@0: typedef struct _maiRedundantObjectFactoryClass maiRedundantObjectFactoryClass; michael@0: michael@0: struct _maiRedundantObjectFactory michael@0: { michael@0: AtkObjectFactory parent; michael@0: }; michael@0: michael@0: struct _maiRedundantObjectFactoryClass michael@0: { michael@0: AtkObjectFactoryClass parent_class; michael@0: }; michael@0: michael@0: GType mai_redundant_object_factory_get_type(); michael@0: michael@0: AtkObjectFactory *mai_redundant_object_factory_new(); michael@0: michael@0: G_END_DECLS michael@0: michael@0: #endif /* __NS_MAI_REDUNDANT_OBJECT_FACTORY_H__ */