ProcessBase.cpp 178 B

123456789101112131415161718
  1. #include "ProcessChannel.h"
  2. #include "ProcessBase.h"
  3. namespace Atomic
  4. {
  5. ProcessBase::ProcessBase(Context* context) : Object(context)
  6. {
  7. }
  8. ProcessBase::~ProcessBase()
  9. {
  10. }
  11. }