HhoopeCheungv3.23.3
3c04472f创建于 2023年4月25日历史提交
#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);
   }
}