signon  8.42
mssfac-plugin.cpp
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 #include "mssfac-plugin.h"
26 
27 #include <QDebug>
28 
29 using namespace SignOn;
30 
32  QObject(0)
33 {
34  setObjectName(QLatin1String("mssf-ac"));
35 }
36 
37 AbstractAccessControlManager *
39 {
40  qDebug() << Q_FUNC_INFO;
41  return new MSSFAccessControlManager(parent);
42 }
43 
45