LogFile.cpp 704 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. //
  2. // LogFile.cpp
  3. //
  4. // $Id: //poco/1.4/Foundation/src/LogFile.cpp#1 $
  5. //
  6. // Library: Foundation
  7. // Package: Logging
  8. // Module: LogFile
  9. //
  10. // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
  11. // and Contributors.
  12. //
  13. // SPDX-License-Identifier: BSL-1.0
  14. //
  15. #include "Poco/LogFile.h"
  16. #if defined(POCO_OS_FAMILY_WINDOWS) && defined(POCO_WIN32_UTF8)
  17. #include "LogFile_WIN32U.cpp"
  18. #elif defined(POCO_OS_FAMILY_WINDOWS)
  19. #include "LogFile_WIN32.cpp"
  20. #elif defined(POCO_OS_FAMILY_VMS)
  21. #include "LogFile_VMS.cpp"
  22. #else
  23. #include "LogFile_STD.cpp"
  24. #endif
  25. namespace Poco {
  26. LogFile::LogFile(const std::string& path): LogFileImpl(path)
  27. {
  28. }
  29. LogFile::~LogFile()
  30. {
  31. }
  32. } // namespace Poco