00001 #include <log4cpp/PassThroughLayout.hh>
00002 #include <log4cpp/FactoryParams.hh>
00003 #include <memory>
00004
00005 namespace log4cpp
00006 {
00007 std::auto_ptr<Layout> create_pass_through_layout(const FactoryParams& params)
00008 {
00009 return std::auto_ptr<Layout>(new PassThroughLayout);
00010 }
00011 }