summaryrefslogtreecommitdiff
path: root/src/apple-trailers/grl-apple-trailers.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/apple-trailers/grl-apple-trailers.h')
-rw-r--r--src/apple-trailers/grl-apple-trailers.h78
1 files changed, 0 insertions, 78 deletions
diff --git a/src/apple-trailers/grl-apple-trailers.h b/src/apple-trailers/grl-apple-trailers.h
deleted file mode 100644
index 874d648..0000000
--- a/src/apple-trailers/grl-apple-trailers.h
+++ /dev/null
@@ -1,78 +0,0 @@
-/*
- * Copyright (C) 2010 Igalia S.L.
- *
- * Contact: Iago Toral Quiroga <itoral@igalia.com>
- *
- * Authors: Juan A. Suarez Romero <jasuarez@igalia.com>
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public License
- * as published by the Free Software Foundation; version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This library 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
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA
- *
- */
-
-#ifndef _GRL_APPLE_TRAILERS_SOURCE_H_
-#define _GRL_APPLE_TRAILERS_SOURCE_H_
-
-#include <grilo.h>
-
-#define GRL_APPLE_TRAILERS_SOURCE_TYPE \
- (grl_apple_trailers_source_get_type ())
-
-#define GRL_APPLE_TRAILERS_SOURCE(obj) \
- (G_TYPE_CHECK_INSTANCE_CAST ((obj), \
- GRL_APPLE_TRAILERS_SOURCE_TYPE, \
- GrlAppleTrailersSource))
-
-#define GRL_IS_APPLE_TRAILERS_SOURCE(obj) \
- (G_TYPE_CHECK_INSTANCE_TYPE ((obj), \
- GRL_APPLE_TRAILERS_SOURCE_TYPE))
-
-#define GRL_APPLE_TRAILERS_SOURCE_CLASS(klass) \
- (G_TYPE_CHECK_CLASS_CAST((klass), \
- GRL_APPLE_TRAILERS_SOURCE_TYPE, \
- GrlAppleTrailersSourceClass))
-
-#define GRL_IS_APPLE_TRAILERS_SOURCE_CLASS(klass) \
- (G_TYPE_CHECK_CLASS_TYPE((klass), \
- GRL_APPLE_TRAILERS_SOURCE_TYPE))
-
-#define GRL_APPLE_TRAILERS_SOURCE_GET_CLASS(obj) \
- (G_TYPE_INSTANCE_GET_CLASS ((obj), \
- GRL_APPLE_TRAILERS_SOURCE_TYPE, \
- GrlAppleTrailersSourceClass))
-
-typedef struct _GrlAppleTrailersSource GrlAppleTrailersSource;
-typedef struct _GrlAppleTrailersSourcePriv GrlAppleTrailersSourcePriv;
-
-struct _GrlAppleTrailersSource {
-
- GrlSource parent;
-
- /*< private >*/
- GrlAppleTrailersSourcePriv *priv;
-
-};
-
-typedef struct _GrlAppleTrailersSourceClass GrlAppleTrailersSourceClass;
-
-struct _GrlAppleTrailersSourceClass {
-
- GrlSourceClass parent_class;
-
-};
-
-GType grl_apple_trailers_source_get_type (void);
-
-#endif /* _GRL_APPLE_TRAILERS_SOURCE_H_ */