Use load_construct_data for kernel objects

This commit is contained in:
Hamish Milne
2019-12-27 18:52:33 +00:00
committed by zhupengfei
parent 3ed8d95866
commit 6917eaf53b
35 changed files with 158 additions and 113 deletions

View File

@ -20,7 +20,7 @@ class Thread;
class ClientSession final : public Object {
public:
explicit ClientSession();
explicit ClientSession(KernelSystem& kernel);
~ClientSession() override;
friend class KernelSystem;
@ -64,3 +64,4 @@ private:
} // namespace Kernel
BOOST_CLASS_EXPORT_KEY(Kernel::ClientSession)
CONSTRUCT_KERNEL_OBJECT(Kernel::ClientSession)