ctkPluginFrameworkContext.cxx 333 B

12345678910111213141516171819
  1. #include "ctkPluginFrameworkContext.h"
  2. #include "ctkPluginFrameworkContextPrivate_p.h"
  3. namespace ctk {
  4. PluginFrameworkContext::PluginFrameworkContext(const Properties& initProps)
  5. : d_ptr(new PluginFrameworkContextPrivate(initProps))
  6. {
  7. }
  8. PluginFrameworkContext::~PluginFrameworkContext()
  9. {
  10. delete d_ptr;
  11. }
  12. }