~mir-team/qtmir/devel-mir-next

« back to all changes in this revision

Viewing changes to src/platforms/mirserver/nativeinterface.h

  • Committer: Alan Griffiths
  • Date: 2017-10-09 14:11:08 UTC
  • Revision ID: alan@octopull.co.uk-20171009141108-t4fc0i902jbo06ch
Frig for LP build recipe

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
class QMirServer;
28
28
 
29
29
// mir
30
 
namespace qtmir { class PromptSessionManager; }
 
30
namespace qtmir { class PromptSessionManager; class Seats; }
31
31
namespace mir { namespace shell { class PersistentSurfaceStore; }}
32
32
 
33
33
class NativeInterface : public QPlatformNativeInterface
45
45
 
46
46
    std::shared_ptr<qtmir::PromptSessionManager> thePromptSessionManager() const;
47
47
    std::shared_ptr<mir::shell::PersistentSurfaceStore> thePersistentSurfaceStore() const;
 
48
    std::shared_ptr<qtmir::Seats> theSeats() const;
48
49
 
49
50
private:
50
51
    QMirServer *m_qMirServer;