signon  8.42
mssfac-plugin.h
Go to the documentation of this file.
1 /* -*- Mode: C++; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3  * This file is part of signon
4  *
5  * Copyright (C) 2011 Intel Corporation.
6  *
7  * Contact: Elena Reshetova <elena.reshetova@intel.com>
8  *
9  * This library is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public License
11  * version 2.1 as published by the Free Software Foundation.
12  *
13  * This library is distributed in the hope that it will be useful, but
14  * WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
21  * 02110-1301 USA
22  */
23 
24 #ifndef MSSFAC_PLUGIN_H
25 #define MSSFAC_PLUGIN_H
26 
27 #include <QObject>
28 #include <SignOn/ExtensionInterface>
29 
30 class MSSFAccessControlPlugin: public QObject, public SignOn::ExtensionInterface3
31 {
32  Q_OBJECT
33  Q_INTERFACES(SignOn::ExtensionInterface3)
34 
35 public:
37 
38  // reimplemented methods
39  SignOn::AbstractAccessControlManager *accessControlManager(
40  QObject *parent = 0) const;
41 };
42 
43 #endif // MSSFAC_PLUGIN_H
44