#include "log4cpp/PassThroughLayout.hh"
#include "log4cpp/FactoryParams.hh"
#include <memory>
namespace log4cpp
{
std::auto_ptr<Layout> create_pass_through_layout(const FactoryParams& params)
{
return std::auto_ptr<Layout>(new PassThroughLayout);
}
}