/* * GNOME Online Miners - crawls through your online content * Copyright (c) 2012 Red Hat, Inc. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA * 02110-1301, USA. * * Author: Debarshi Ray * */ #ifndef __GOM_ZPJ_MINER_H__ #define __GOM_ZPJ_MINER_H__ #include #include "gom-miner.h" G_BEGIN_DECLS #define GOM_TYPE_ZPJ_MINER gom_zpj_miner_get_type() #define GOM_ZPJ_MINER(obj) \ (G_TYPE_CHECK_INSTANCE_CAST ((obj), \ GOM_TYPE_ZPJ_MINER, GomZpjMiner)) #define GOM_ZPJ_MINER_CLASS(klass) \ (G_TYPE_CHECK_CLASS_CAST ((klass), \ GOM_TYPE_ZPJ_MINER, GomZpjMinerClass)) #define GOM_IS_ZPJ_MINER(obj) \ (G_TYPE_CHECK_INSTANCE_TYPE ((obj), \ GOM_TYPE_ZPJ_MINER)) #define GOM_IS_ZPJ_MINER_CLASS(klass) \ (G_TYPE_CHECK_CLASS_TYPE ((klass), \ GOM_TYPE_ZPJ_MINER)) #define GOM_ZPJ_MINER_GET_CLASS(obj) \ (G_TYPE_INSTANCE_GET_CLASS ((obj), \ GOM_TYPE_ZPJ_MINER, GomZpjMinerClass)) typedef struct _GomZpjMiner GomZpjMiner; typedef struct _GomZpjMinerClass GomZpjMinerClass; struct _GomZpjMiner { GomMiner parent; }; struct _GomZpjMinerClass { GomMinerClass parent_class; }; GType gom_zpj_miner_get_type(void); G_END_DECLS #endif /* __GOM_ZPJ_MINER_H__ */