aboutsummaryrefslogtreecommitdiff
path: root/libplanfahr/providers/de-bvg.h
diff options
context:
space:
mode:
Diffstat (limited to 'libplanfahr/providers/de-bvg.h')
-rw-r--r--libplanfahr/providers/de-bvg.h50
1 files changed, 50 insertions, 0 deletions
diff --git a/libplanfahr/providers/de-bvg.h b/libplanfahr/providers/de-bvg.h
new file mode 100644
index 0000000..9ef055c
--- /dev/null
+++ b/libplanfahr/providers/de-bvg.h
@@ -0,0 +1,50 @@
+/*
+ * Copyright (C) 2014 Guido Guenther <agx@sigxcpu.org>
+ *
+ * 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, 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+#ifndef _LPF_PROVIDER_DE_BVG_H
+#define _LPF_PROVIDER_DE_BVG_H
+
+#include "hafas-bin6.h"
+
+G_BEGIN_DECLS
+#define LPF_TYPE_PROVIDER_DE_BVG lpf_provider_de_bvg_get_type()
+#define LPF_PROVIDER_DE_BVG(obj) \
+ (G_TYPE_CHECK_INSTANCE_CAST ((obj), LPF_TYPE_PROVIDER_DE_BVG, LpfProviderDeBvg))
+#define LPF_PROVIDER_DE_BVG_CLASS(klass) \
+ (G_TYPE_CHECK_CLASS_CAST ((klass), LPF_TYPE_PROVIDER_DE_BVG, LpfProviderDeBvgClass))
+#define LPF_IS_PROVIDER_DE_BVG(obj) \
+ (G_TYPE_CHECK_INSTANCE_TYPE ((obj), LPF_TYPE_PROVIDER_DE_BVG))
+#define LPF_IS_PROVIDER_DE_BVG_CLASS(klass) \
+ (G_TYPE_CHECK_CLASS_TYPE ((klass), LPF_TYPE_PROVIDER_DE_BVG))
+#define LPF_PROVIDER_DE_BVG_GET_CLASS(obj) \
+ (G_TYPE_INSTANCE_GET_CLASS ((obj), LPF_TYPE_PROVIDER_DE_BVG, LpfProviderDeBvgClass))
+
+typedef struct {
+ LpfProviderHafasBin6 parent;
+} LpfProviderDeBvg;
+
+typedef struct {
+ LpfProviderHafasBin6Class parent_class;
+} LpfProviderDeBvgClass;
+
+GType lpf_provider_de_bvg_get_type (void);
+
+LpfProviderDeBvg *lpf_provider_de_bvg_new (void);
+
+G_END_DECLS
+#endif /* _LPF_PROVIDER_DB */