NETHost.cpp 250 B

12345678910111213141516171819202122
  1. #include "NETHost.h"
  2. namespace Atomic
  3. {
  4. String NETHost::coreCLRFilesAbsPath_;
  5. String NETHost::coreCLRAssemblyLoadPaths_;
  6. String NETHost::coreCLRTPAPaths_;
  7. NETHost::NETHost(Context* context) :
  8. Object(context)
  9. {
  10. }
  11. NETHost::~NETHost()
  12. {
  13. }
  14. }