~mir-team/qtmir/mir-0.16-rebuild

« back to all changes in this revision

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

  • Committer: Daniel d'Andrada
  • Date: 2014-12-10 10:33:48 UTC
  • mto: This revision was merged to the branch mainline in revision 294.
  • Revision ID: daniel.dandrada@canonical.com-20141210103348-mn2kmwtxxo0y8yyw
removed :PATH from command line

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
 * Copyright (C) 2013-2015 Canonical, Ltd.
 
2
 * Copyright (C) 2013 Canonical, Ltd.
3
3
 *
4
4
 * This program is free software: you can redistribute it and/or modify it under
5
5
 * the terms of the GNU Lesser General Public License version 3, as published by
24
24
#include <qpa/qplatformnativeinterface.h>
25
25
 
26
26
// local
27
 
#include "mirserver.h"
 
27
#include "mirserverconfiguration.h"
28
28
 
29
29
class NativeInterface : public QPlatformNativeInterface
30
30
{
31
31
public:
32
 
    NativeInterface(const QWeakPointer<MirServer> &);
 
32
    NativeInterface(const QSharedPointer<MirServerConfiguration> &);
33
33
 
34
34
    virtual void *nativeResourceForIntegration(const QByteArray &resource);
35
35
 
36
 
    QWeakPointer<MirServer> m_mirServer;
 
36
    QSharedPointer<MirServerConfiguration> m_mirConfig;
37
37
};
38
38
 
39
39
#endif // NATIVEINTEGRATION_H