diff options
Diffstat (limited to 'src/extensions/test/test-access-control-manager.c')
-rw-r--r-- | src/extensions/test/test-access-control-manager.c | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/src/extensions/test/test-access-control-manager.c b/src/extensions/test/test-access-control-manager.c new file mode 100644 index 0000000..4d5d036 --- /dev/null +++ b/src/extensions/test/test-access-control-manager.c @@ -0,0 +1,59 @@ +/* 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 "test-access-control-manager.h" + +#define EXTENSION_TEST_ACCESS_CONTROL_MANAGER_GET_PRIVATE(obj) \ + (G_TYPE_INSTANCE_GET_PRIVATE ((obj), \ + EXTENSION_TYPE_TEST_ACCESS_CONTROL_MANAGER, \ + ExtensionTestAccessControlManagerPrivate)) + +struct _ExtensionTestAccessControlManagerPrivate +{ +}; + +G_DEFINE_TYPE (ExtensionTestAccessControlManager, + extension_test_access_control_manager, + GSIGNOND_TYPE_ACCESS_CONTROL_MANAGER); + +static void +extension_test_access_control_manager_class_init ( + ExtensionTestAccessControlManagerClass *klass) +{ + (void) klass; + + /*GObjectClass *base = G_OBJECT_CLASS (klass); + + g_type_class_add_private (klass, + sizeof(ExtensionTestAccessControlManagerPrivate));*/ +} + +static void +extension_test_access_control_manager_init ( + ExtensionTestAccessControlManager *self) +{ + /*self->priv = EXTENSION_TEST_ACCESS_CONTROL_MANAGER_GET_PRIVATE (self);*/ +} + |