Log4CPP.ConfigFileName.hpp 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. #pragma once
  2. #include "String.StringView.hpp"
  3. using namespace eSTR::Literals ;
  4. namespace Log4CPP
  5. {
  6. namespace ConfigFileName
  7. {
  8. static const auto Default = "Log4CPP.Config.Default.xml"_sv ;
  9. static const auto IDX = "Log4CPP.Config.IDX.xml"_sv ;
  10. static const auto BUS = "Log4CPP.Config.BUS.xml"_sv ;
  11. static const auto BUSServer = "Log4CPP.Config.BUSServer.xml"_sv ;
  12. static const auto Net = "Log4CPP.Config.Net.xml"_sv ;
  13. static const auto ThreadPool = "Log4CPP.Config.ThreadPool.xml"_sv ;
  14. // static const auto Script = "Log4CPP.Config.Script.xml"_sv ;
  15. // static const auto ImageTag = "Log4CPP.Config.ImageTag.xml"_sv ;
  16. // static const auto JSRunTime = "Log4CPP.Config.JSRunTime.xml"_sv ;
  17. static const auto IMCViewer = "Log4CPP.Config.IMCViewer.xml"_sv ;
  18. static const auto ImageViewer = "Log4CPP.Config.ImageViewer.xml"_sv ;
  19. static const auto LoadDicomFile = "Log4CPP.Config.LoadDicomFile.xml"_sv ;
  20. static const auto DICOM = "Log4CPP.Config.DICOM.xml"_sv ;
  21. static const auto PPACS = "Log4CPP.Config.PPACS.xml"_sv ;
  22. static const auto Database = "Log4CPP.Config.Database.xml"_sv ;
  23. static const auto Queue = "Log4CPP.Config.Queue.xml"_sv ;
  24. static const auto Plugin_JavaScript = "Log4CPP.Config.Plugin_JavaScript.xml"_sv ;
  25. static const auto ZeroConfig = "Log4CPP.Config.ZeroConfig.xml"_sv ;
  26. static const auto StudyMonitor = "Log4CPP.Config.StudyMonitor.xml"_sv ;
  27. static const auto CacheManager = "Log4CPP.Config.CacheManager.xml"_sv ;
  28. static const auto AutoRouting = "Log4CPP.Config.AutoRouting.xml"_sv ;
  29. static const auto AutoDelete = "Log4CPP.Config.AutoDelete.xml"_sv ;
  30. static const auto Prefetch = "Log4CPP.Config.Prefetch.xml"_sv ;
  31. static const auto LoginServer = "Log4CPP.Config.LoginServer.xml"_sv ;
  32. static const auto FlyArchive = "Log4CPP.Config.FlyArchiveServer.xml"_sv ;
  33. static const auto TomoSlabManager = "Log4CPP.Config.TomoSlabManager.xml"_sv ;
  34. static const auto StitchManager = "Log4CPP.Config.StitchManager.xml"_sv ;
  35. static const auto PPACS_DICOMToJPEG = "Log4CPP.Config.PPACS.DICOMToJPEG.xml"_sv ;
  36. }
  37. }