summaryrefslogtreecommitdiff
path: root/src/extensions/tizen/tizen-secret-storage.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/extensions/tizen/tizen-secret-storage.c')
-rw-r--r--src/extensions/tizen/tizen-secret-storage.c58
1 files changed, 58 insertions, 0 deletions
diff --git a/src/extensions/tizen/tizen-secret-storage.c b/src/extensions/tizen/tizen-secret-storage.c
new file mode 100644
index 0000000..31c743d
--- /dev/null
+++ b/src/extensions/tizen/tizen-secret-storage.c
@@ -0,0 +1,58 @@
+/* vi: set et sw=4 ts=4 cino=t0,(0: */
+/* -*- Mode: C; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*
+ * This file is part of gsignond
+ *
+ * Copyright (C) 2013 Intel Corporation.
+ *
+ * Contact: Jussi Laako <jussi.laako@linux.intel.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; either
+ * 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
+ */
+
+#include "tizen-secret-storage.h"
+
+#define EXTENSION_TIZEN_SECRET_STORAGE_GET_PRIVATE(obj) \
+ (G_TYPE_INSTANCE_GET_PRIVATE ((obj), \
+ EXTENSION_TYPE_TIZEN_SECRET_STORAGE, \
+ ExtensionTizenSecretStoragePrivate))
+
+struct _ExtensionTizenSecretStoragePrivate
+{
+};
+
+G_DEFINE_TYPE (ExtensionTizenSecretStorage,
+ extension_tizen_secret_storage,
+ GSIGNOND_TYPE_SECRET_STORAGE);
+
+static void
+extension_tizen_secret_storage_class_init (
+ ExtensionTizenSecretStorageClass *klass)
+{
+ (void) klass;
+
+ /*GObjectClass *base = G_OBJECT_CLASS (klass);
+
+ g_type_class_add_private (klass,
+ sizeof(ExtensionTestSecretStoragePrivate));*/
+}
+
+static void
+extension_tizen_secret_storage_init (ExtensionTizenSecretStorage *self)
+{
+ /*self->priv = EXTENSION_TEST_SECRET_STORAGE_GET_PRIVATE (self);*/
+}
+