~3v1n0/unity/scale-window-cast-protection

« back to all changes in this revision

Viewing changes to launcher/DeviceLauncherSection.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:
37
37
class DeviceLauncherSection : public sigc::trackable
38
38
{
39
39
public:
 
40
  typedef std::shared_ptr<DeviceLauncherSection> Ptr;
 
41
 
40
42
  DeviceLauncherSection(AbstractVolumeMonitorWrapper::Ptr const& volume_monitor = nullptr,
41
43
                        DevicesSettings::Ptr const& devices_settings = nullptr,
42
44
                        DeviceNotificationDisplay::Ptr const& notifications = nullptr);
43
45
 
 
46
  virtual ~DeviceLauncherSection() = default;
 
47
 
44
48
  std::vector<VolumeLauncherIcon::Ptr> GetIcons() const;
45
49
 
46
50
  sigc::signal<void, AbstractLauncherIcon::Ptr const&> icon_added;