~tatokis/unity/gcc-72-errors

« back to all changes in this revision

Viewing changes to shortcuts/AbstractShortcutModeller.h

Merged with trunk. Reverted autopilot changes

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright 2013 Canonical Ltd.
 
3
 *
 
4
 * This program is free software: you can redistribute it and/or modify it
 
5
 * under the terms of the GNU General Public License version 3, as published
 
6
 * by the  Free Software Foundation.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful, but
 
9
 * WITHOUT ANY WARRANTY; without even the implied warranties of
 
10
 * MERCHANTABILITY, SATISFACTORY QUALITY or FITNESS FOR A PARTICULAR
 
11
 * PURPOSE.  See the GNU General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU General Public License
 
14
 * version 3 along with this program.  If not, see
 
15
 * <http://www.gnu.org/licenses/>
 
16
 *
 
17
 * Authored by: Marco Trevisan <marco.trevisan@canonical.com>
 
18
 */
 
19
 
 
20
#ifndef UNITYSHELL_ABSTRACT_SHORTCUT_MODELLER_H
 
21
#define UNITYSHELL_ABSTRACT_SHORTCUT_MODELLER_H
 
22
 
 
23
#include "ShortcutModel.h"
 
24
 
 
25
namespace unity
 
26
{
 
27
namespace shortcut
 
28
{
 
29
 
 
30
class AbstractModeller : boost::noncopyable, public sigc::trackable
 
31
{
 
32
public:
 
33
  typedef std::shared_ptr<AbstractModeller> Ptr;
 
34
 
 
35
  AbstractModeller() {}
 
36
  virtual ~AbstractModeller() {}
 
37
 
 
38
  virtual Model::Ptr GetCurrentModel() const = 0;
 
39
 
 
40
  sigc::signal<void, Model::Ptr const&> model_changed;
 
41
};
 
42
 
 
43
}
 
44
}
 
45
 
 
46
#endif