~thalexander/unity/update-fsf-address

« back to all changes in this revision

Viewing changes to lockscreen/LockScreenPromptFactory.h

  • Committer: Marco Trevisan (Treviño)
  • Date: 2016-03-07 18:51:47 UTC
  • mfrom: (4080 unity)
  • mto: This revision was merged to the branch mainline in revision 4085.
  • Revision ID: mail@3v1n0.net-20160307185147-0p1m89up4tqfb6w1
Merge with trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// -*- Mode: C++; indent-tabs-mode: nil; tab-width: 2 -*-
 
2
/*
 
3
* Copyright (C) 2015 Canonical Ltd
 
4
*
 
5
* This program is free software: you can redistribute it and/or modify
 
6
* it under the terms of the GNU General Public License version 3 as
 
7
* published by the Free Software Foundation.
 
8
*
 
9
* This program is distributed in the hope that it will be useful,
 
10
* but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
* GNU General Public License for more details.
 
13
*
 
14
* You should have received a copy of the GNU General Public License
 
15
* along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
16
*
 
17
* Authored by: Marco Trevisan <marco.trevisan@canonical.com>
 
18
*/
 
19
 
 
20
#ifndef UNITY_LOCKSCREEN_PROMPT_FACTORY
 
21
#define UNITY_LOCKSCREEN_PROMPT_FACTORY
 
22
 
 
23
#include <NuxCore/NuxCore.h>
 
24
#include <UnityCore/SessionManager.h>
 
25
 
 
26
namespace unity
 
27
{
 
28
class MockableBaseWindow;
 
29
 
 
30
namespace lockscreen
 
31
{
 
32
class AbstractUserPromptView;
 
33
 
 
34
struct PromptFactory
 
35
{
 
36
  static nux::ObjectPtr<AbstractUserPromptView> CreatePrompt(session::Manager::Ptr const&);
 
37
};
 
38
 
 
39
}
 
40
}
 
41
 
 
42
#endif // UNITY_LOCKSCREEN_PROMPT_FACTORY