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

« back to all changes in this revision

Viewing changes to src/include/client/mir/client_platform_factory.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:
42
42
};
43
43
 
44
44
extern "C" typedef std::shared_ptr<ClientPlatform>(*CreateClientPlatform)(ClientContext* context);
45
 
extern "C" std::shared_ptr<ClientPlatform> create_client_platform(ClientContext* context);
46
 
 
47
45
extern "C" typedef bool (*ClientPlatformProbe)(ClientContext* context);
48
 
extern "C" bool is_appropriate_module(ClientContext* context);
 
46
}
 
47
}
49
48
 
50
 
}
51
 
}
 
49
extern "C" std::shared_ptr<mir::client::ClientPlatform> create_client_platform(mir::client::ClientContext* context);
 
50
extern "C" bool is_appropriate_module(mir::client::ClientContext* context);
52
51
 
53
52
#endif /* MIR_CLIENT_CLIENT_PLATFORM_FACTORY_H_ */