123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- #pragma once
- #include "String.StringView.hpp"
- using namespace eSTR::Literals ;
- namespace Log4CPP
- {
- namespace ConfigFileName
- {
- static const auto Default = "Log4CPP.Config.Default.xml"_sv ;
- static const auto IDX = "Log4CPP.Config.IDX.xml"_sv ;
- static const auto BUS = "Log4CPP.Config.BUS.xml"_sv ;
- static const auto BUSServer = "Log4CPP.Config.BUSServer.xml"_sv ;
- static const auto Net = "Log4CPP.Config.Net.xml"_sv ;
- static const auto ThreadPool = "Log4CPP.Config.ThreadPool.xml"_sv ;
- // static const auto Script = "Log4CPP.Config.Script.xml"_sv ;
- // static const auto ImageTag = "Log4CPP.Config.ImageTag.xml"_sv ;
- // static const auto JSRunTime = "Log4CPP.Config.JSRunTime.xml"_sv ;
- static const auto IMCViewer = "Log4CPP.Config.IMCViewer.xml"_sv ;
- static const auto ImageViewer = "Log4CPP.Config.ImageViewer.xml"_sv ;
- static const auto LoadDicomFile = "Log4CPP.Config.LoadDicomFile.xml"_sv ;
- static const auto DICOM = "Log4CPP.Config.DICOM.xml"_sv ;
- static const auto PPACS = "Log4CPP.Config.PPACS.xml"_sv ;
- static const auto Database = "Log4CPP.Config.Database.xml"_sv ;
- static const auto Queue = "Log4CPP.Config.Queue.xml"_sv ;
- static const auto Plugin_JavaScript = "Log4CPP.Config.Plugin_JavaScript.xml"_sv ;
- static const auto ZeroConfig = "Log4CPP.Config.ZeroConfig.xml"_sv ;
- static const auto StudyMonitor = "Log4CPP.Config.StudyMonitor.xml"_sv ;
- static const auto CacheManager = "Log4CPP.Config.CacheManager.xml"_sv ;
- static const auto AutoRouting = "Log4CPP.Config.AutoRouting.xml"_sv ;
- static const auto AutoDelete = "Log4CPP.Config.AutoDelete.xml"_sv ;
- static const auto Prefetch = "Log4CPP.Config.Prefetch.xml"_sv ;
- static const auto LoginServer = "Log4CPP.Config.LoginServer.xml"_sv ;
- static const auto FlyArchive = "Log4CPP.Config.FlyArchiveServer.xml"_sv ;
- static const auto TomoSlabManager = "Log4CPP.Config.TomoSlabManager.xml"_sv ;
- static const auto StitchManager = "Log4CPP.Config.StitchManager.xml"_sv ;
- static const auto PPACS_DICOMToJPEG = "Log4CPP.Config.PPACS.DICOMToJPEG.xml"_sv ;
- }
- }
|