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

« back to all changes in this revision

Viewing changes to src/server/scene/surface_stack.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:
84
84
 
85
85
    virtual void raise(std::weak_ptr<Surface> const& surface) override;
86
86
 
 
87
    void raise(SurfaceSet const& surfaces) override;
 
88
 
87
89
    void add_surface(
88
90
        std::shared_ptr<Surface> const& surface,
89
91
        DepthId depth,
90
92
        input::InputReceptionMode input_mode) override;
91
93
    
 
94
    auto surface_at(geometry::Point) const -> std::shared_ptr<Surface> override;
 
95
 
92
96
    void add_observer(std::shared_ptr<Observer> const& observer) override;
93
97
    void remove_observer(std::weak_ptr<Observer> const& observer) override;
94
98