Blame plugins/altair/mm-plugin-altair-lte.h

Packit Service 8101fe
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
Packit Service 8101fe
Packit Service 8101fe
/*
Packit Service 8101fe
 * This program is free software; you can redistribute it and/or
Packit Service 8101fe
 * modify it under the terms of the GNU General Public License as
Packit Service 8101fe
 * published by the Free Software Foundation; either version 2 of the
Packit Service 8101fe
 * License, or (at your option) any later version.
Packit Service 8101fe
 *
Packit Service 8101fe
 * This program is distributed in the hope that it will be useful,
Packit Service 8101fe
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service 8101fe
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service 8101fe
 * General Public License for more details.
Packit Service 8101fe
 *
Packit Service 8101fe
 * You should have received a copy of the GNU General Public
Packit Service 8101fe
 * License along with this program; if not, write to the
Packit Service 8101fe
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Packit Service 8101fe
 * Boston, MA 02111-1307, USA.
Packit Service 8101fe
 *
Packit Service 8101fe
 * Copyright (C) 2013 Altair Semiconductor
Packit Service 8101fe
 *
Packit Service 8101fe
 * Author: Ori Inbar <ori.inbar@altair-semi.com>
Packit Service 8101fe
 */
Packit Service 8101fe
Packit Service 8101fe
#ifndef MM_PLUGIN_ALTAIR_LTE_H
Packit Service 8101fe
#define MM_PLUGIN_ALTAIR_LTE_H
Packit Service 8101fe
Packit Service 8101fe
#include "mm-plugin.h"
Packit Service 8101fe
Packit Service 8101fe
#define MM_TYPE_PLUGIN_ALTAIR_LTE            (mm_plugin_altair_lte_get_type ())
Packit Service 8101fe
#define MM_PLUGIN_ALTAIR_LTE(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), MM_TYPE_PLUGIN_ALTAIR_LTE, MMPluginAltairLte))
Packit Service 8101fe
#define MM_PLUGIN_ALTAIR_LTE_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass),  MM_TYPE_PLUGIN_ALTAIR_LTE, MMPluginAltairLteClass))
Packit Service 8101fe
#define MM_IS_PLUGIN_ALTAIR_LTE(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), MM_TYPE_PLUGIN_ALTAIR_LTE))
Packit Service 8101fe
#define MM_IS_PLUGIN_ALTAIR_LTE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass),  MM_TYPE_PLUGIN_ALTAIR_LTE))
Packit Service 8101fe
#define MM_PLUGIN_ALTAIR_LTE_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj),  MM_TYPE_PLUGIN_ALTAIR_LTE, MMPluginAltairLteClass))
Packit Service 8101fe
Packit Service 8101fe
typedef struct {
Packit Service 8101fe
    MMPlugin parent;
Packit Service 8101fe
} MMPluginAltairLte;
Packit Service 8101fe
Packit Service 8101fe
typedef struct {
Packit Service 8101fe
    MMPluginClass parent;
Packit Service 8101fe
} MMPluginAltairLteClass;
Packit Service 8101fe
Packit Service 8101fe
GType mm_plugin_altair_lte_get_type (void);
Packit Service 8101fe
Packit Service 8101fe
G_MODULE_EXPORT MMPlugin *mm_plugin_create (void);
Packit Service 8101fe
Packit Service 8101fe
#endif /* MM_PLUGIN_ALTAIR_LTE_H */