~robertcarr/mir/ease-shell-configuration

« back to all changes in this revision

Viewing changes to include/server/mir/shell/default_shell_configuration.h

  • Committer: Robert Carr
  • Date: 2013-04-11 19:53:02 UTC
  • Revision ID: robert.carr@canonical.com-20130411195302-ik8bex695hur3c4n
~ShellConfiguration is noexcept

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
    DefaultShellConfiguration(std::shared_ptr<graphics::ViewableArea> const& view_area,
41
41
                              std::shared_ptr<InputFocusSelector> const& focus_selector,
42
42
                              std::shared_ptr<SurfaceFactory> const& surface_factory);
43
 
    virtual ~DefaultShellConfiguration() = default;
 
43
    virtual ~DefaultShellConfiguration() noexcept(true) = default;
44
44
 
45
45
    std::shared_ptr<SurfaceFactory> the_surface_factory();
46
46
    std::shared_ptr<SessionContainer> the_session_container();