summaryrefslogtreecommitdiff
path: root/rest-extras/lastfm-proxy-call.h
diff options
context:
space:
mode:
Diffstat (limited to 'rest-extras/lastfm-proxy-call.h')
-rw-r--r--rest-extras/lastfm-proxy-call.h68
1 files changed, 68 insertions, 0 deletions
diff --git a/rest-extras/lastfm-proxy-call.h b/rest-extras/lastfm-proxy-call.h
new file mode 100644
index 0000000..1a1fefb
--- /dev/null
+++ b/rest-extras/lastfm-proxy-call.h
@@ -0,0 +1,68 @@
+/*
+ * librest - RESTful web services access
+ * Copyright (c) 2010 Intel Corporation.
+ *
+ * Authors: Rob Bradford <rob@linux.intel.com>
+ * Ross Burton <ross@linux.intel.com>
+ *
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms and conditions of the GNU Lesser General Public License,
+ * version 2.1, as published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope 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 program; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ */
+
+#ifndef _LASTFM_PROXY_CALL
+#define _LASTFM_PROXY_CALL
+
+#include <rest/rest-proxy-call.h>
+
+G_BEGIN_DECLS
+
+#define LASTFM_TYPE_PROXY_CALL lastfm_proxy_call_get_type()
+
+#define LASTFM_PROXY_CALL(obj) \
+ (G_TYPE_CHECK_INSTANCE_CAST ((obj), LASTFM_TYPE_PROXY_CALL, LastfmProxyCall))
+
+#define LASTFM_PROXY_CALL_CLASS(klass) \
+ (G_TYPE_CHECK_CLASS_CAST ((klass), LASTFM_TYPE_PROXY_CALL, LastfmProxyCallClass))
+
+#define LASTFM_IS_PROXY_CALL(obj) \
+ (G_TYPE_CHECK_INSTANCE_TYPE ((obj), LASTFM_TYPE_PROXY_CALL))
+
+#define LASTFM_IS_PROXY_CALL_CLASS(klass) \
+ (G_TYPE_CHECK_CLASS_TYPE ((klass), LASTFM_TYPE_PROXY_CALL))
+
+#define LASTFM_PROXY_CALL_GET_CLASS(obj) \
+ (G_TYPE_INSTANCE_GET_CLASS ((obj), LASTFM_TYPE_PROXY_CALL, LastfmProxyCallClass))
+
+/**
+ * LastfmProxyCall:
+ *
+ * #LastfmProxyCall has no publicly available members.
+ */
+typedef struct {
+ RestProxyCall parent;
+} LastfmProxyCall;
+
+typedef struct {
+ RestProxyCallClass parent_class;
+ /*< private >*/
+ /* padding for future expansion */
+ gpointer _padding_dummy[8];
+} LastfmProxyCallClass;
+
+GType lastfm_proxy_call_get_type (void);
+
+G_END_DECLS
+
+#endif /* _LASTFM_PROXY_CALL */
+