Download this file
18 lines (15 with data), 420 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 | /*
* Copyright 2002, Log4cpp Project. All rights reserved.
*
* See the COPYING file for the terms of usage and distribution.
*/
#include <log4cpp/PassThroughLayout.hh>
#include <log4cpp/FactoryParams.hh>
#include <memory>
namespace log4cpp
{
std::LOG4CPP_UNIQUE_PTR<Layout> create_pass_through_layout(const FactoryParams& params)
{
return std::LOG4CPP_UNIQUE_PTR<Layout>(new PassThroughLayout);
}
}
|
×
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.