在好例子网,分享、交流、成长!
您当前所在位置:首页C/C++ 开发实例Windows系统编程 → log4cpp类库

log4cpp类库

Windows系统编程

下载此实例
  • 开发语言:C/C++
  • 实例大小:0.57M
  • 下载次数:7
  • 浏览次数:50
  • 发布时间:2021-11-28
  • 实例类别:Windows系统编程
  • 发 布 人:123456ku
  • 文件格式:.gz
  • 所需积分:2
 相关标签: log4cpp Log cpp PP

实例介绍

【实例简介】log4cpp类库
【实例截图】
【核心代码】.
└── log4cpp
    ├── AUTHORS
    ├── CMakeLists.txt
    ├── COPYING
    ├── ChangeLog
    ├── INSTALL
    ├── Makefile.am
    ├── Makefile.in
    ├── NEWS
    ├── README
    ├── THANKS
    ├── TODO
    ├── aclocal.m4
    ├── autogen.sh
    ├── bcb5
    │   ├── Makefile.am
    │   ├── Makefile.in
    │   ├── bcb5.bpg
    │   ├── bcb5.mak
    │   ├── log4cpp
    │   │   ├── Makefile.am
    │   │   ├── Makefile.in
    │   │   ├── log4cpp.bpf
    │   │   ├── log4cpp.bpr
    │   │   └── log4cpp.mak
    │   ├── testCategory
    │   │   ├── Makefile.am
    │   │   ├── Makefile.in
    │   │   ├── testCategory.bpf
    │   │   ├── testCategory.bpr
    │   │   └── testCategory.mak
    │   ├── testConfig
    │   │   ├── Makefile.am
    │   │   ├── Makefile.in
    │   │   ├── testConfig.bpf
    │   │   ├── testConfig.bpr
    │   │   └── testConfig.mak
    │   ├── testFixedContextCategory
    │   │   ├── Makefile.am
    │   │   ├── Makefile.in
    │   │   ├── testFixedContextCategory.bpf
    │   │   ├── testFixedContextCategory.bpr
    │   │   └── testFixedContextCategory.mak
    │   ├── testNDC
    │   │   ├── Makefile.am
    │   │   ├── Makefile.in
    │   │   ├── testNDC.bpf
    │   │   ├── testNDC.bpr
    │   │   └── testNDC.mak
    │   ├── testPattern
    │   │   ├── Makefile.am
    │   │   ├── Makefile.in
    │   │   ├── testPattern.bpf
    │   │   ├── testPattern.bpr
    │   │   └── testPattern.mak
    │   └── testmain
    │       ├── Makefile.am
    │       ├── Makefile.in
    │       ├── testmain.bpf
    │       ├── testmain.bpr
    │       └── testmain.mak
    ├── config
    │   ├── Makefile.am
    │   ├── Makefile.in
    │   ├── config.guess
    │   ├── config.sub
    │   ├── depcomp
    │   ├── install-sh
    │   ├── ltmain.sh
    │   ├── missing
    │   └── mkinstalldirs
    ├── configure
    ├── configure.in
    ├── doc
    │   ├── Doxyfile.in
    │   ├── Makefile.am
    │   ├── Makefile.in
    │   ├── html
    │   │   ├── Makefile.am
    │   │   ├── Makefile.in
    │   │   ├── default.css
    │   │   ├── index.html
    │   │   └── sflogo.png
    │   └── mainPage.txt
    ├── include
    │   ├── Makefile.am
    │   ├── Makefile.in
    │   ├── config.h.in
    │   ├── config.h.in~
    │   └── log4cpp
    │       ├── AbortAppender.hh
    │       ├── Appender.hh
    │       ├── AppenderSkeleton.hh
    │       ├── AppendersFactory.hh
    │       ├── BasicConfigurator.hh
    │       ├── BasicLayout.hh
    │       ├── BufferingAppender.hh
    │       ├── Category.hh
    │       ├── CategoryStream.hh
    │       ├── Configurator.hh
    │       ├── DailyRollingFileAppender.hh
    │       ├── Export.hh
    │       ├── FactoryParams.hh
    │       ├── FileAppender.hh
    │       ├── Filter.hh
    │       ├── FixedContextCategory.hh
    │       ├── HierarchyMaintainer.hh
    │       ├── IdsaAppender.hh
    │       ├── Layout.hh
    │       ├── LayoutAppender.hh
    │       ├── LayoutsFactory.hh
    │       ├── LevelEvaluator.hh
    │       ├── LoggingEvent.hh
    │       ├── Makefile.am
    │       ├── Makefile.in
    │       ├── Manipulator.hh
    │       ├── NDC.hh
    │       ├── NTEventLogAppender.hh
    │       ├── OstreamAppender.hh
    │       ├── PassThroughLayout.hh
    │       ├── PatternLayout.hh
    │       ├── Portability.hh
    │       ├── Priority.hh
    │       ├── PropertyConfigurator.hh
    │       ├── RemoteSyslogAppender.hh
    │       ├── RollingFileAppender.hh
    │       ├── SimpleConfigurator.hh
    │       ├── SimpleLayout.hh
    │       ├── SmtpAppender.hh
    │       ├── StringQueueAppender.hh
    │       ├── SyslogAppender.hh
    │       ├── TimeStamp.hh
    │       ├── TriggeringEventEvaluator.hh
    │       ├── TriggeringEventEvaluatorFactory.hh
    │       ├── Win32DebugAppender.hh
    │       ├── config-MinGW32.h
    │       ├── config-openvms.h
    │       ├── config-win32-stlport-boost.h
    │       ├── config-win32.h
    │       ├── convenience.h
    │       └── threading
    │           ├── BoostThreads.hh
    │           ├── DummyThreads.hh
    │           ├── MSThreads.hh
    │           ├── Makefile.am
    │           ├── Makefile.in
    │           ├── OmniThreads.hh
    │           ├── PThreads.hh
    │           └── Threading.hh
    ├── jamfile
    ├── log4cpp-config.in
    ├── log4cpp.cfg
    ├── log4cpp.m4
    ├── log4cpp.pc.in
    ├── log4cpp.spec.in
    ├── m4
    │   ├── ACX_PTHREAD.m4
    │   ├── AC_CREATE_PREFIX_CONFIG_H.m4
    │   ├── AC_CXX_HAVE_SSTREAM.m4
    │   ├── AC_CXX_NAMESPACES.m4
    │   ├── AC_C_INT64_T.m4
    │   ├── AC_FUNC_SNPRINTF.m4
    │   ├── BB_CHECK_OMNITHREADS.m4
    │   ├── BB_CHECK_PTHREADS.m4
    │   ├── BB_ENABLE_DOXYGEN.m4
    │   ├── BB_ENABLE_REMOTE_SYSLOG.m4
    │   ├── BB_ENABLE_SMTP.m4
    │   ├── PETI_PEDANTIC_GCC.m4
    │   ├── ac_config_libconfig_in.m4
    │   └── ac_config_pkgconfig_in.m4
    ├── msvc10
    │   ├── NTEventLogCategories.mc
    │   ├── log4cpp
    │   │   └── log4cpp.vcxproj
    │   ├── log4cppLIB
    │   │   └── log4cppLIB.vcxproj
    │   ├── log4cppRunnable
    │   │   └── log4cppRunnable.vcxproj
    │   ├── log4cpp_stlport_boost
    │   │   ├── log4cpp_stlport_boost.vcproj
    │   │   └── readme.txt
    │   ├── msvc10.sln
    │   ├── testCategory
    │   │   └── testCategory.vcxproj
    │   ├── testDLL
    │   │   └── testDLL.vcxproj
    │   ├── testDailyRollingFileAppender
    │   │   ├── nesteddir
    │   │   ├── testConfig.log4cpp.dailyroll.nt.properties
    │   │   ├── testDailyRollingFileAppender.vcxproj
    │   │   └── testDailyRollingFileAppender.vcxproj.user
    │   ├── testMain
    │   │   └── testMain.vcxproj
    │   ├── testMain_stlport_boost
    │   │   └── testMain_stlport_boost.vcproj
    │   ├── testNDC
    │   │   └── testNDC.vcxproj
    │   ├── testNDC_stlport_boost
    │   │   └── testNDC_stlport_boost.vcproj
    │   ├── testNTEventLog
    │   │   └── testNTEventLog.vcxproj
    │   ├── testNTEventLog_stlport_boost
    │   │   └── testNTEventLog_stlport_boost.vcproj
    │   ├── testPattern
    │   │   └── testPattern.vcxproj
    │   ├── testPropConfig
    │   │   └── testPropConfig.vcxproj
    │   └── testRollingFileAppender
    │       ├── testRollingFileAppender.vcxproj
    │       └── testRollingFileAppender.vcxproj.user
    ├── msvc6
    │   ├── Makefile.am
    │   ├── Makefile.in
    │   ├── NTEventLogCategories.mc
    │   ├── log4cpp
    │   │   ├── Makefile.am
    │   │   ├── Makefile.in
    │   │   └── log4cpp.dsp
    │   ├── log4cppDLL
    │   │   ├── Makefile.am
    │   │   ├── Makefile.in
    │   │   ├── log4cppDLL.dsp
    │   │   └── log4cppDLL.rc
    │   ├── log4cppDLL_stlport_boost
    │   │   ├── log4cppDLL_stlport_boost.dsp
    │   │   ├── log4cppDLL_stlport_boost.rc
    │   │   └── readme.txt
    │   ├── msvc6.dsw
    │   ├── testCategory
    │   │   ├── Makefile.am
    │   │   ├── Makefile.in
    │   │   └── testCategory.dsp
    │   ├── testDLL
    │   │   ├── Makefile.am
    │   │   ├── Makefile.in
    │   │   └── testDLL.dsp
    │   ├── testMain
    │   │   ├── Makefile.am
    │   │   ├── Makefile.in
    │   │   └── testMain.dsp
    │   ├── testMain_stlport_boost
    │   │   └── testMain_stlport_boost.dsp
    │   ├── testNDC
    │   │   ├── Makefile.am
    │   │   ├── Makefile.in
    │   │   └── testNDC.dsp
    │   ├── testNDC_stlport_boost
    │   │   └── testNDC_stlport_boost.dsp
    │   ├── testNTEventLog
    │   │   ├── Makefile.am
    │   │   ├── Makefile.in
    │   │   └── testNTEventLog.dsp
    │   ├── testNTEventLog_stlport_boost
    │   │   └── testNTEventLog_stlport_boost.dsp
    │   ├── testPattern
    │   │   ├── Makefile.am
    │   │   ├── Makefile.in
    │   │   └── testPattern.dsp
    │   └── testPropConfig
    │       └── testPropConfig.dsp
    ├── msvc7
    │   ├── Makefile.am
    │   ├── NTEventLogCategories.mc
    │   ├── log4cpp
    │   │   └── log4cpp.vcproj
    │   ├── log4cppLIB
    │   │   ├── Makefile.am
    │   │   └── log4cppLIB.vcproj
    │   ├── log4cpp_stlport_boost
    │   │   ├── log4cpp_stlport_boost.vcproj
    │   │   └── readme.txt
    │   ├── msvc7.sln
    │   ├── testCategory
    │   │   ├── Makefile.am
    │   │   └── testCategory.vcproj
    │   ├── testDLL
    │   │   ├── Makefile.am
    │   │   └── testDLL.vcproj
    │   ├── testMain
    │   │   ├── Makefile.am
    │   │   └── testMain.vcproj
    │   ├── testMain_stlport_boost
    │   │   └── testMain_stlport_boost.vcproj
    │   ├── testNDC
    │   │   ├── Makefile.am
    │   │   └── testNDC.vcproj
    │   ├── testNDC_stlport_boost
    │   │   └── testNDC_stlport_boost.vcproj
    │   ├── testNTEventLog
    │   │   ├── Makefile.am
    │   │   └── testNTEventLog.vcproj
    │   ├── testNTEventLog_stlport_boost
    │   │   └── testNTEventLog_stlport_boost.vcproj
    │   ├── testPattern
    │   │   ├── Makefile.am
    │   │   └── testPattern.vcproj
    │   └── testPropConfig
    │       └── testPropConfig.vcproj
    ├── openvms
    │   ├── Makefile.am
    │   └── Makefile.in
    ├── src
    │   ├── AbortAppender.cpp
    │   ├── Appender.cpp
    │   ├── AppenderSkeleton.cpp
    │   ├── AppendersFactory.cpp
    │   ├── BasicConfigurator.cpp
    │   ├── BasicLayout.cpp
    │   ├── BufferingAppender.cpp
    │   ├── Category.cpp
    │   ├── CategoryStream.cpp
    │   ├── Configurator.cpp
    │   ├── DailyRollingFileAppender.cpp
    │   ├── DllMain.cpp
    │   ├── DummyThreads.cpp
    │   ├── FactoryParams.cpp
    │   ├── FileAppender.cpp
    │   ├── Filter.cpp
    │   ├── FixedContextCategory.cpp
    │   ├── HierarchyMaintainer.cpp
    │   ├── IdsaAppender.cpp
    │   ├── LayoutAppender.cpp
    │   ├── LayoutsFactory.cpp
    │   ├── LevelEvaluator.cpp
    │   ├── Localtime.cpp
    │   ├── Localtime.hh
    │   ├── LoggingEvent.cpp
    │   ├── MSThreads.cpp
    │   ├── Makefile.am
    │   ├── Makefile.in
    │   ├── Manipulator.cpp
    │   ├── NDC.cpp
    │   ├── NTEventLogAppender.cpp
    │   ├── OmniThreads.cpp
    │   ├── OstreamAppender.cpp
    │   ├── PThreads.cpp
    │   ├── PassThroughLayout.cpp
    │   ├── PatternLayout.cpp
    │   ├── PortabilityImpl.cpp
    │   ├── PortabilityImpl.hh
    │   ├── Priority.cpp
    │   ├── Properties.cpp
    │   ├── Properties.hh
    │   ├── PropertyConfigurator.cpp
    │   ├── PropertyConfiguratorImpl.cpp
    │   ├── PropertyConfiguratorImpl.hh
    │   ├── RemoteSyslogAppender.cpp
    │   ├── RollingFileAppender.cpp
    │   ├── SimpleConfigurator.cpp
    │   ├── SimpleLayout.cpp
    │   ├── SmtpAppender.cpp
    │   ├── StringQueueAppender.cpp
    │   ├── StringUtil.cpp
    │   ├── StringUtil.hh
    │   ├── SyslogAppender.cpp
    │   ├── TimeStamp.cpp
    │   ├── TriggeringEventEvaluatorFactory.cpp
    │   ├── Win32DebugAppender.cpp
    │   └── snprintf.c
    └── tests
        ├── Clock.cpp
        ├── Clock.hh
        ├── Makefile.am
        ├── Makefile.in
        ├── NDCTest.hh
        ├── jamfile
        ├── log4cpp.init
        ├── log4cpp.nt.property
        ├── log4cpp.properties
        ├── log4cpp.property
        ├── nesteddir
        ├── testCategory.cpp
        ├── testConfig.cpp
        ├── testConfig.log4cpp.dailyroll.properties
        ├── testConfig.log4cpp.properties
        ├── testDLL.cpp
        ├── testDailyRollingFileAppender.cpp
        ├── testErrorCollision.cpp
        ├── testFilter.cpp
        ├── testFixedContextCategory.cpp
        ├── testNDC.cpp
        ├── testNDCMain.cpp
        ├── testNTEventLog.cpp
        ├── testPattern.cpp
        ├── testPriority.cpp
        ├── testPropConfig.cpp
        ├── testProperties.cpp
        ├── testProperties.properties
        ├── testPropertyConfig.cpp
        ├── testRollingFileAppender.cpp
        ├── test_convenience.cpp
        ├── testbench.cpp
        └── testmain.cpp

66 directories, 327 files


标签: log4cpp Log cpp PP

实例下载地址

log4cpp类库

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警