~alan-griffiths/mir/knee-jerk-mir_surface_state_automatic

« back to all changes in this revision

Viewing changes to include/mir_client/client_platform.h

  • Committer: Kevin DuBois
  • Date: 2012-11-13 01:36:29 UTC
  • mfrom: (245 trunk)
  • mto: This revision was merged to the branch mainline in revision 246.
  • Revision ID: kevin.dubois@canonical.com-20121113013629-q4496w4mp5e33auk
merge in base branch. move the demo clients to a new directory, examples/

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
#include <EGL/eglplatform.h>
22
22
#include <memory>
23
23
 
 
24
class MirPlatformPackage;
 
25
 
24
26
namespace mir
25
27
{
26
28
namespace client
40
42
    virtual void destroy_egl_window(EGLNativeWindowType window) = 0;
41
43
};
42
44
 
43
 
std::shared_ptr<ClientPlatform> create_client_platform();
 
45
std::shared_ptr<ClientPlatform> create_client_platform(
 
46
        std::shared_ptr<MirPlatformPackage> const& platform_package);
44
47
 
45
48
}
46
49
}