~ubuntu-branches/ubuntu/wily/mir/wily-proposed

« back to all changes in this revision

Viewing changes to src/server/scene/surface_controller.h

  • Committer: Package Import Robot
  • Author(s): CI Train Bot
  • Date: 2015-05-12 13:12:55 UTC
  • mto: This revision was merged to the branch mainline in revision 96.
  • Revision ID: package-import@ubuntu.com-20150512131255-y7z12i8n4pbvo70x
Tags: upstream-0.13.0+15.10.20150512
ImportĀ upstreamĀ versionĀ 0.13.0+15.10.20150512

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
{
27
27
namespace scene
28
28
{
29
 
class PlacementStrategy;
30
29
class SurfaceStackModel;
31
30
class SurfaceFactory;
32
31
 
46
45
 
47
46
    void raise(std::weak_ptr<Surface> const& surface) override;
48
47
 
 
48
    void raise(SurfaceSet const& surfaces) override;
 
49
 
 
50
    auto surface_at(geometry::Point) const -> std::shared_ptr<Surface> override;
 
51
 
49
52
private:
50
53
    std::shared_ptr<SurfaceFactory> const surface_factory;
51
54
    std::shared_ptr<SurfaceStackModel> const surface_stack;