1//
2// LogFile.cpp
3//
4// Library: Foundation
5// Package: Logging
6// Module: LogFile
7//
8// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
9// and Contributors.
10//
11// SPDX-License-Identifier: BSL-1.0
12//
13
14
15#include "Poco/LogFile.h"
16
17
18#if 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
26
27namespace Poco {
28
29
30LogFile::LogFile(const std::string& rPath): LogFileImpl(rPath)
31{
32}
33
34
35LogFile::~LogFile()
36{
37}
38
39
40} // namespace Poco
41