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#else
21#include "LogFile_STD.cpp"
22#endif
23
24
25namespace Poco {
26
27
28LogFile::LogFile(const std::string& rPath): LogFileImpl(rPath)
29{
30}
31
32
33LogFile::~LogFile()
34{
35}
36
37
38} // namespace Poco
39