实例介绍
POCO是一个C++的开源库集。同一般的C++库相比,POCO的特点是提供了整一个应用框架。如果要做C++程序应用框架的快速开发.
【实例截图】
【核心代码】
poco-1.8.0.1-all
└── poco-1.8.0.1-all
├── build
│ ├── config
│ │ ├── AIX
│ │ ├── Alpine
│ │ ├── Android
│ │ ├── Angstrom
│ │ ├── AppleTV
│ │ ├── AppleTVSimulator
│ │ ├── ARM-Linux
│ │ ├── BeagleBoard
│ │ ├── CEGCCARM
│ │ ├── CygLinux
│ │ ├── CYGWIN
│ │ ├── Darwin
│ │ ├── Darwin32
│ │ ├── Darwin32-clang
│ │ ├── Darwin32-clang-libc++
│ │ ├── Darwin64
│ │ ├── Darwin64-clang
│ │ ├── Darwin64-clang-libc++
│ │ ├── Darwin-clang
│ │ ├── Darwin-clang-libc++
│ │ ├── DigiEL
│ │ ├── ELDK
│ │ ├── FreeBSD
│ │ ├── FreeBSD-Linux-compat
│ │ ├── GCCEMBEDLINUX
│ │ ├── HP-UX
│ │ ├── iPhone
│ │ ├── iPhone-clang
│ │ ├── iPhone-clang-libc++
│ │ ├── iPhoneSimulator
│ │ ├── iPhoneSimulator-clang
│ │ ├── iPhoneSimulator-clang-libc++
│ │ ├── Linux
│ │ ├── Linux-clang
│ │ ├── Linux-SolarisStudio
│ │ ├── MinGW
│ │ ├── MinGW-CrossEnv
│ │ ├── NIOS2-Linux
│ │ ├── OpenPandora
│ │ ├── OSF1
│ │ ├── PPC-Linux
│ │ ├── QNX
│ │ ├── SH-Linux
│ │ ├── SmartOS-gcc
│ │ ├── SSV-LINUX
│ │ ├── SunOS
│ │ ├── SunOS-GCC
│ │ ├── SunOS-stdcxx-x86_64
│ │ ├── SunOS-SunForte
│ │ ├── SunOS-SunStudio
│ │ ├── SunOS-SunStudio11
│ │ ├── WatchOS
│ │ ├── WatchSimulator
│ │ └── Yocto
│ ├── rules
│ │ ├── compile
│ │ ├── dylib
│ │ ├── exec
│ │ ├── global
│ │ ├── lib
│ │ └── sample
│ └── script
│ ├── makedepend.aCC
│ ├── makedepend.clang
│ ├── makedepend.cxx
│ ├── makedepend.gcc
│ ├── makedepend.qcc
│ ├── makedepend.SunCC
│ ├── makedepend.xlC
│ ├── makeldpath
│ ├── projname
│ ├── runtests2.cmd
│ ├── runtests.cmd
│ ├── runtests.sh
│ ├── shlibln
│ └── vxprogen
├── build_CE_vs90.cmd
├── build_vcexpress2008.cmd
├── build_vcexpress2010.cmd
├── build_vs100.cmd
├── build_vs110.cmd
├── build_vs120.cmd
├── build_vs140.cmd
├── build_vs150.cmd
├── build_vs90.cmd
├── buildwin.cmd
├── CHANGELOG
├── cmake
│ ├── cmake_uninstall.cmake.in
│ ├── CXX1x.cmake
│ ├── DefinePlatformSpecifc.cmake
│ ├── FindApache2.cmake
│ ├── FindAPR.cmake
│ ├── FindMySQL.cmake
│ ├── FindODBC.cmake
│ ├── FindPCRE.cmake
│ ├── FindPostgreSQL.cmake
│ ├── FindSQLite3.cmake
│ ├── PocoConfig.cmake.in
│ ├── PocoConfigVersion.cmake.in
│ ├── PocoMacros.cmake
│ ├── README
│ └── test_compiler.cpp
├── CMakeLists.txt
├── components
├── configure
├── contrib
│ └── poco-doc.pl
├── CONTRIBUTORS
├── CppUnit
│ ├── CMakeLists.txt
│ ├── CppUnit_CE_vs90.sln
│ ├── CppUnit_CE_vs90.vcproj
│ ├── CppUnit_vs100.sln
│ ├── CppUnit_vs100.vcxproj
│ ├── CppUnit_vs100.vcxproj.filters
│ ├── CppUnit_vs110.sln
│ ├── CppUnit_vs110.vcxproj
│ ├── CppUnit_vs110.vcxproj.filters
│ ├── CppUnit_vs120.sln
│ ├── CppUnit_vs120.vcxproj
│ ├── CppUnit_vs120.vcxproj.filters
│ ├── CppUnit_vs140.sln
│ ├── CppUnit_vs140.vcxproj
│ ├── CppUnit_vs140.vcxproj.filters
│ ├── CppUnit_vs150.sln
│ ├── CppUnit_vs150.vcxproj
│ ├── CppUnit_vs150.vcxproj.filters
│ ├── CppUnit_vs90.sln
│ ├── CppUnit_vs90.vcproj
│ ├── CppUnit_WEC2013_vs110.sln
│ ├── CppUnit_WEC2013_vs110.vcxproj
│ ├── CppUnit_WEC2013_vs110.vcxproj.filters
│ ├── CppUnit_WEC2013_vs120.sln
│ ├── CppUnit_WEC2013_vs120.vcxproj
│ ├── CppUnit_WEC2013_vs120.vcxproj.filters
│ ├── CppUnit_x64_vs100.sln
│ ├── CppUnit_x64_vs100.vcxproj
│ ├── CppUnit_x64_vs100.vcxproj.filters
│ ├── CppUnit_x64_vs110.sln
│ ├── CppUnit_x64_vs110.vcxproj
│ ├── CppUnit_x64_vs110.vcxproj.filters
│ ├── CppUnit_x64_vs120.sln
│ ├── CppUnit_x64_vs120.vcxproj
│ ├── CppUnit_x64_vs120.vcxproj.filters
│ ├── CppUnit_x64_vs140.sln
│ ├── CppUnit_x64_vs140.vcxproj
│ ├── CppUnit_x64_vs140.vcxproj.filters
│ ├── CppUnit_x64_vs150.sln
│ ├── CppUnit_x64_vs150.vcxproj
│ ├── CppUnit_x64_vs150.vcxproj.filters
│ ├── CppUnit_x64_vs90.sln
│ ├── CppUnit_x64_vs90.vcproj
│ ├── doc
│ │ ├── cookbook.htm
│ │ ├── license.htm
│ │ ├── README.html
│ │ └── test.gif
│ ├── include
│ │ └── CppUnit
│ │ ├── CppUnitException.h
│ │ ├── CppUnit.h
│ │ ├── estring.h
│ │ ├── Guards.h
│ │ ├── Orthodox.h
│ │ ├── RepeatedTest.h
│ │ ├── TestCaller.h
│ │ ├── TestCase.h
│ │ ├── TestDecorator.h
│ │ ├── TestFailure.h
│ │ ├── Test.h
│ │ ├── TestResult.h
│ │ ├── TestRunner.h
│ │ ├── TestSetup.h
│ │ ├── TestSuite.h
│ │ └── TextTestResult.h
│ ├── Makefile
│ ├── src
│ │ ├── CppUnitException.cpp
│ │ ├── TestCase.cpp
│ │ ├── TestDecorator.cpp
│ │ ├── TestFailure.cpp
│ │ ├── TestResult.cpp
│ │ ├── TestRunner.cpp
│ │ ├── TestSuite.cpp
│ │ └── TextTestResult.cpp
│ └── WinTestRunner
│ ├── CMakeLists.txt
│ ├── include
│ │ └── WinTestRunner
│ │ └── WinTestRunner.h
│ ├── res
│ │ ├── Resource.h
│ │ └── WinTestRunner.rc
│ ├── src
│ │ ├── ActiveTest.cpp
│ │ ├── ActiveTest.h
│ │ ├── DLLMain.cpp
│ │ ├── GUITestResult.cpp
│ │ ├── GUITestResult.h
│ │ ├── ProgressBar.cpp
│ │ ├── ProgressBar.h
│ │ ├── SynchronizedTestResult.h
│ │ ├── TestResultDecorator.h
│ │ ├── TestRunnerDlg.cpp
│ │ ├── TestRunnerDlg.h
│ │ └── WinTestRunner.cpp
│ ├── WinTestRunner_vs100.vcxproj
│ ├── WinTestRunner_vs100.vcxproj.filters
│ ├── WinTestRunner_vs110.vcxproj
│ ├── WinTestRunner_vs110.vcxproj.filters
│ ├── WinTestRunner_vs90.vcproj
│ ├── WinTestRunner_x64_vs100.vcxproj
│ ├── WinTestRunner_x64_vs100.vcxproj.filters
│ ├── WinTestRunner_x64_vs110.vcxproj
│ ├── WinTestRunner_x64_vs110.vcxproj.filters
│ └── WinTestRunner_x64_vs90.vcproj
├── Crypto
│ ├── cmake
│ │ └── PocoCryptoConfig.cmake
│ ├── CMakeLists.txt
│ ├── Crypto_CE_VS90.sln
│ ├── Crypto_CE_VS90.vcproj
│ ├── Crypto.progen
│ ├── Crypto_vs100.sln
│ ├── Crypto_vs100.vcxproj
│ ├── Crypto_vs100.vcxproj.filters
│ ├── Crypto_vs110.sln
│ ├── Crypto_vs110.vcxproj
│ ├── Crypto_vs110.vcxproj.filters
│ ├── Crypto_vs120.sln
│ ├── Crypto_vs120.vcxproj
│ ├── Crypto_vs120.vcxproj.filters
│ ├── Crypto_vs140.sln
│ ├── Crypto_vs140.vcxproj
│ ├── Crypto_vs140.vcxproj.filters
│ ├── Crypto_vs150.sln
│ ├── Crypto_vs150.vcxproj
│ ├── Crypto_vs150.vcxproj.filters
│ ├── Crypto_VS90.sln
│ ├── Crypto_VS90.vcproj
│ ├── Crypto_WEC2013_vs110.sln
│ ├── Crypto_WEC2013_vs110.vcxproj
│ ├── Crypto_WEC2013_vs110.vcxproj.filters
│ ├── Crypto_WEC2013_vs120.sln
│ ├── Crypto_WEC2013_vs120.vcxproj
│ ├── Crypto_WEC2013_vs120.vcxproj.filters
│ ├── Crypto_x64_vs100.sln
│ ├── Crypto_x64_vs100.vcxproj
│ ├── Crypto_x64_vs100.vcxproj.filters
│ ├── Crypto_x64_vs110.sln
│ ├── Crypto_x64_vs110.vcxproj
│ ├── Crypto_x64_vs110.vcxproj.filters
│ ├── Crypto_x64_vs120.sln
│ ├── Crypto_x64_vs120.vcxproj
│ ├── Crypto_x64_vs120.vcxproj.filters
│ ├── Crypto_x64_vs140.sln
│ ├── Crypto_x64_vs140.vcxproj
│ ├── Crypto_x64_vs140.vcxproj.filters
│ ├── Crypto_x64_vs150.sln
│ ├── Crypto_x64_vs150.vcxproj
│ ├── Crypto_x64_vs150.vcxproj.filters
│ ├── Crypto_x64_vs90.sln
│ ├── Crypto_x64_vs90.vcproj
│ ├── include
│ │ └── Poco
│ │ └── Crypto
│ │ ├── CipherFactory.h
│ │ ├── Cipher.h
│ │ ├── CipherImpl.h
│ │ ├── CipherKey.h
│ │ ├── CipherKeyImpl.h
│ │ ├── CryptoException.h
│ │ ├── Crypto.h
│ │ ├── CryptoStream.h
│ │ ├── CryptoTransform.h
│ │ ├── DigestEngine.h
│ │ ├── ECDSADigestEngine.h
│ │ ├── ECKey.h
│ │ ├── ECKeyImpl.h
│ │ ├── EVPPKey.h
│ │ ├── KeyPair.h
│ │ ├── KeyPairImpl.h
│ │ ├── OpenSSLInitializer.h
│ │ ├── PKCS12Container.h
│ │ ├── RSACipherImpl.h
│ │ ├── RSADigestEngine.h
│ │ ├── RSAKey.h
│ │ ├── RSAKeyImpl.h
│ │ └── X509Certificate.h
│ ├── Makefile
│ ├── samples
│ │ ├── CMakeLists.txt
│ │ ├── genrsakey
│ │ │ ├── CMakeLists.txt
│ │ │ ├── genrsakey_CE_VS90.vcproj
│ │ │ ├── genrsakey.progen
│ │ │ ├── genrsakey_vs100.vcxproj
│ │ │ ├── genrsakey_vs100.vcxproj.filters
│ │ │ ├── genrsakey_vs110.vcxproj
│ │ │ ├── genrsakey_vs110.vcxproj.filters
│ │ │ ├── genrsakey_vs120.vcxproj
│ │ │ ├── genrsakey_vs120.vcxproj.filters
│ │ │ ├── genrsakey_vs140.vcxproj
│ │ │ ├── genrsakey_vs140.vcxproj.filters
│ │ │ ├── genrsakey_vs150.vcxproj
│ │ │ ├── genrsakey_vs150.vcxproj.filters
│ │ │ ├── genrsakey_VS90.vcproj
│ │ │ ├── genrsakey_WEC2013_vs110.vcxproj
│ │ │ ├── genrsakey_WEC2013_vs110.vcxproj.filters
│ │ │ ├── genrsakey_WEC2013_vs120.vcxproj
│ │ │ ├── genrsakey_WEC2013_vs120.vcxproj.filters
│ │ │ ├── genrsakey_x64_vs100.vcxproj
│ │ │ ├── genrsakey_x64_vs100.vcxproj.filters
│ │ │ ├── genrsakey_x64_vs110.vcxproj
│ │ │ ├── genrsakey_x64_vs110.vcxproj.filters
│ │ │ ├── genrsakey_x64_vs120.vcxproj
│ │ │ ├── genrsakey_x64_vs120.vcxproj.filters
│ │ │ ├── genrsakey_x64_vs140.vcxproj
│ │ │ ├── genrsakey_x64_vs140.vcxproj.filters
│ │ │ ├── genrsakey_x64_vs150.vcxproj
│ │ │ ├── genrsakey_x64_vs150.vcxproj.filters
│ │ │ ├── genrsakey_x64_vs90.vcproj
│ │ │ ├── Makefile
│ │ │ └── src
│ │ │ └── genrsakey.cpp
│ │ ├── Makefile
│ │ ├── samples_CE_VS90.sln
│ │ ├── samples.progen
│ │ ├── samples_vs100.sln
│ │ ├── samples_vs110.sln
│ │ ├── samples_vs120.sln
│ │ ├── samples_vs140.sln
│ │ ├── samples_vs150.sln
│ │ ├── samples_VS90.sln
│ │ ├── samples_WEC2013_vs120.sln
│ │ ├── samples_x64_vs100.sln
│ │ ├── samples_x64_vs110.sln
│ │ ├── samples_x64_vs120.sln
│ │ ├── samples_x64_vs140.sln
│ │ ├── samples_x64_vs150.sln
│ │ └── samples_x64_vs90.sln
│ ├── src
│ │ ├── Cipher.cpp
│ │ ├── CipherFactory.cpp
│ │ ├── CipherImpl.cpp
│ │ ├── CipherKey.cpp
│ │ ├── CipherKeyImpl.cpp
│ │ ├── CryptoException.cpp
│ │ ├── CryptoStream.cpp
│ │ ├── CryptoTransform.cpp
│ │ ├── DigestEngine.cpp
│ │ ├── ECDSADigestEngine.cpp
│ │ ├── ECKey.cpp
│ │ ├── ECKeyImpl.cpp
│ │ ├── EVPPKey.cpp
│ │ ├── KeyPair.cpp
│ │ ├── KeyPairImpl.cpp
│ │ ├── OpenSSLInitializer.cpp
│ │ ├── PKCS12Container.cpp
│ │ ├── RSACipherImpl.cpp
│ │ ├── RSADigestEngine.cpp
│ │ ├── RSAKey.cpp
│ │ ├── RSAKeyImpl.cpp
│ │ └── X509Certificate.cpp
│ └── testsuite
│ ├── CMakeLists.txt
│ ├── data
│ │ ├── certs-only.p12
│ │ ├── certs-only.pem
│ │ ├── full.p12
│ │ └── full.pem
│ ├── Makefile
│ ├── src
│ │ ├── CryptoTest.cpp
│ │ ├── CryptoTest.h
│ │ ├── CryptoTestSuite.cpp
│ │ ├── CryptoTestSuite.h
│ │ ├── DigestEngineTest.cpp
│ │ ├── DigestEngineTest.h
│ │ ├── Driver.cpp
│ │ ├── ECTest.cpp
│ │ ├── ECTest.h
│ │ ├── EVPTest.cpp
│ │ ├── EVPTest.h
│ │ ├── PKCS12ContainerTest.cpp
│ │ ├── PKCS12ContainerTest.h
│ │ ├── RSATest.cpp
│ │ ├── RSATest.h
│ │ ├── WinCEDriver.cpp
│ │ └── WinDriver.cpp
│ ├── TestSuite_CE_VS90.vcproj
│ ├── TestSuite.progen
│ ├── TestSuite_vs100.vcxproj
│ ├── TestSuite_vs100.vcxproj.filters
│ ├── TestSuite_vs110.vcxproj
│ ├── TestSuite_vs110.vcxproj.filters
│ ├── TestSuite_vs120.vcxproj
│ ├── TestSuite_vs120.vcxproj.filters
│ ├── TestSuite_vs140.vcxproj
│ ├── TestSuite_vs140.vcxproj.filters
│ ├── TestSuite_vs150.vcxproj
│ ├── TestSuite_vs150.vcxproj.filters
│ ├── TestSuite_VS90.vcproj
│ ├── TestSuite_WEC2013_vs110.vcxproj
│ ├── TestSuite_WEC2013_vs110.vcxproj.filters
│ ├── TestSuite_WEC2013_vs120.vcxproj
│ ├── TestSuite_WEC2013_vs120.vcxproj.filters
│ ├── TestSuite_x64_vs100.vcxproj
│ ├── TestSuite_x64_vs100.vcxproj.filters
│ ├── TestSuite_x64_vs110.vcxproj
│ ├── TestSuite_x64_vs110.vcxproj.filters
│ ├── TestSuite_x64_vs120.vcxproj
│ ├── TestSuite_x64_vs120.vcxproj.filters
│ ├── TestSuite_x64_vs140.vcxproj
│ ├── TestSuite_x64_vs140.vcxproj.filters
│ ├── TestSuite_x64_vs150.vcxproj
│ ├── TestSuite_x64_vs150.vcxproj.filters
│ └── TestSuite_x64_vs90.vcproj
├── Data
│ ├── cmake
│ │ └── PocoDataConfig.cmake
│ ├── CMakeLists.txt
│ ├── Data_CE_vs90.sln
│ ├── Data_CE_vs90.vcproj
│ ├── Data.progen
│ ├── Data_vs100.sln
│ ├── Data_vs100.vcxproj
│ ├── Data_vs100.vcxproj.filters
│ ├── Data_vs110.sln
│ ├── Data_vs110.vcxproj
│ ├── Data_vs110.vcxproj.filters
│ ├── Data_vs120.sln
│ ├── Data_vs120.vcxproj
│ ├── Data_vs120.vcxproj.filters
│ ├── Data_vs140.sln
│ ├── Data_vs140.vcxproj
│ ├── Data_vs140.vcxproj.filters
│ ├── Data_vs150.sln
│ ├── Data_vs150.vcxproj
│ ├── Data_vs150.vcxproj.filters
│ ├── Data_VS90.sln
│ ├── Data_VS90.vcproj
│ ├── Data_WEC2013_vs110.sln
│ ├── Data_WEC2013_vs110.vcxproj
│ ├── Data_WEC2013_vs110.vcxproj.filters
│ ├── Data_WEC2013_vs120.sln
│ ├── Data_WEC2013_vs120.vcxproj
│ ├── Data_WEC2013_vs120.vcxproj.filters
│ ├── Data_x64_vs100.sln
│ ├── Data_x64_vs100.vcxproj
│ ├── Data_x64_vs100.vcxproj.filters
│ ├── Data_x64_vs110.sln
│ ├── Data_x64_vs110.vcxproj
│ ├── Data_x64_vs110.vcxproj.filters
│ ├── Data_x64_vs120.sln
│ ├── Data_x64_vs120.vcxproj
│ ├── Data_x64_vs120.vcxproj.filters
│ ├── Data_x64_vs140.sln
│ ├── Data_x64_vs140.vcxproj
│ ├── Data_x64_vs140.vcxproj.filters
│ ├── Data_x64_vs150.sln
│ ├── Data_x64_vs150.vcxproj
│ ├── Data_x64_vs150.vcxproj.filters
│ ├── Data_x64_vs90.sln
│ ├── Data_x64_vs90.vcproj
│ ├── doc
│ │ ├── 00200-DataUserManual.page
│ │ ├── 00300-DataDeveloperManual.page
│ │ └── 99100-DataReleaseNotes.page
│ ├── include
│ │ └── Poco
│ │ └── Data
│ │ ├── AbstractBinder.h
│ │ ├── AbstractBinding.h
│ │ ├── AbstractExtraction.h
│ │ ├── AbstractExtractor.h
│ │ ├── AbstractPreparation.h
│ │ ├── AbstractPreparator.h
│ │ ├── AbstractSessionImpl.h
│ │ ├── ArchiveStrategy.h
│ │ ├── AutoTransaction.h
│ │ ├── Binding.h
│ │ ├── BulkBinding.h
│ │ ├── BulkExtraction.h
│ │ ├── Bulk.h
│ │ ├── Column.h
│ │ ├── Connector.h
│ │ ├── Constants.h
│ │ ├── DataException.h
│ │ ├── Data.h
│ │ ├── Date.h
│ │ ├── DynamicDateTime.h
│ │ ├── DynamicLOB.h
│ │ ├── Extraction.h
│ │ ├── Limit.h
│ │ ├── LOB.h
│ │ ├── LOBStream.h
│ │ ├── MetaColumn.h
│ │ ├── PooledSessionHolder.h
│ │ ├── PooledSessionImpl.h
│ │ ├── Position.h
│ │ ├── Preparation.h
│ │ ├── Range.h
│ │ ├── RecordSet.h
│ │ ├── RowFilter.h
│ │ ├── RowFormatter.h
│ │ ├── Row.h
│ │ ├── RowIterator.h
│ │ ├── SessionFactory.h
│ │ ├── Session.h
│ │ ├── SessionImpl.h
│ │ ├── SessionPoolContainer.h
│ │ ├── SessionPool.h
│ │ ├── SimpleRowFormatter.h
│ │ ├── SQLChannel.h
│ │ ├── StatementCreator.h
│ │ ├── Statement.h
│ │ ├── StatementImpl.h
│ │ ├── Time.h
│ │ ├── Transaction.h
│ │ └── TypeHandler.h
│ ├── Makefile
│ ├── MySQL
│ │ ├── cmake
│ │ │ └── PocoDataMySQLConfig.cmake
│ │ ├── CMakeLists.txt
│ │ ├── include
│ │ │ └── Poco
│ │ │ └── Data
│ │ │ └── MySQL
│ │ │ ├── Binder.h
│ │ │ ├── Connector.h
│ │ │ ├── Extractor.h
│ │ │ ├── MySQLException.h
│ │ │ ├── MySQL.h
│ │ │ ├── MySQLStatementImpl.h
│ │ │ ├── ResultMetadata.h
│ │ │ ├── SessionHandle.h
│ │ │ ├── SessionImpl.h
│ │ │ ├── StatementExecutor.h
│ │ │ └── Utility.h
│ │ ├── Makefile
│ │ ├── MySQL.progen
│ │ ├── MySQL_vs100.sln
│ │ ├── MySQL_vs100.vcxproj
│ │ ├── MySQL_vs100.vcxproj.filters
│ │ ├── MySQL_vs110.sln
│ │ ├── MySQL_vs110.vcxproj
│ │ ├── MySQL_vs110.vcxproj.filters
│ │ ├── MySQL_vs120.sln
│ │ ├── MySQL_vs120.vcxproj
│ │ ├── MySQL_vs120.vcxproj.filters
│ │ ├── MySQL_vs140.sln
│ │ ├── MySQL_vs140.vcxproj
│ │ ├── MySQL_vs140.vcxproj.filters
│ │ ├── MySQL_vs150.sln
│ │ ├── MySQL_vs150.vcxproj
│ │ ├── MySQL_vs150.vcxproj.filters
│ │ ├── MySQL_VS90.sln
│ │ ├── MySQL_VS90.vcproj
│ │ ├── MySQL_x64_vs100.sln
│ │ ├── MySQL_x64_vs100.vcxproj
│ │ ├── MySQL_x64_vs100.vcxproj.filters
│ │ ├── MySQL_x64_vs110.sln
│ │ ├── MySQL_x64_vs110.vcxproj
│ │ ├── MySQL_x64_vs110.vcxproj.filters
│ │ ├── MySQL_x64_vs120.sln
│ │ ├── MySQL_x64_vs120.vcxproj
│ │ ├── MySQL_x64_vs120.vcxproj.filters
│ │ ├── MySQL_x64_vs140.sln
│ │ ├── MySQL_x64_vs140.vcxproj
│ │ ├── MySQL_x64_vs140.vcxproj.filters
│ │ ├── MySQL_x64_vs150.sln
│ │ ├── MySQL_x64_vs150.vcxproj
│ │ ├── MySQL_x64_vs150.vcxproj.filters
│ │ ├── MySQL_x64_vs90.sln
│ │ ├── MySQL_x64_vs90.vcproj
│ │ ├── src
│ │ │ ├── Binder.cpp
│ │ │ ├── Connector.cpp
│ │ │ ├── Extractor.cpp
│ │ │ ├── MySQLException.cpp
│ │ │ ├── MySQLStatementImpl.cpp
│ │ │ ├── ResultMetadata.cpp
│ │ │ ├── SessionHandle.cpp
│ │ │ ├── SessionImpl.cpp
│ │ │ ├── StatementExecutor.cpp
│ │ │ └── Utility.cpp
│ │ └── testsuite
│ │ ├── CMakeLists.txt
│ │ ├── Makefile
│ │ ├── src
│ │ │ ├── Driver.cpp
│ │ │ ├── MySQLTest.cpp
│ │ │ ├── MySQLTest.h
│ │ │ ├── MySQLTestSuite.cpp
│ │ │ ├── MySQLTestSuite.h
│ │ │ ├── SQLExecutor.cpp
│ │ │ ├── SQLExecutor.h
│ │ │ └── WinDriver.cpp
│ │ ├── TestSuite.progen
│ │ ├── TestSuite_vs100.vcxproj
│ │ ├── TestSuite_vs100.vcxproj.filters
│ │ ├── TestSuite_vs110.vcxproj
│ │ ├── TestSuite_vs110.vcxproj.filters
│ │ ├── TestSuite_vs120.vcxproj
│ │ ├── TestSuite_vs120.vcxproj.filters
│ │ ├── TestSuite_vs140.vcxproj
│ │ ├── TestSuite_vs140.vcxproj.filters
│ │ ├── TestSuite_vs150.vcxproj
│ │ ├── TestSuite_vs150.vcxproj.filters
│ │ ├── TestSuite_VS90.vcproj
│ │ ├── TestSuite_x64_vs100.vcxproj
│ │ ├── TestSuite_x64_vs100.vcxproj.filters
│ │ ├── TestSuite_x64_vs110.vcxproj
│ │ ├── TestSuite_x64_vs110.vcxproj.filters
│ │ ├── TestSuite_x64_vs120.vcxproj
│ │ ├── TestSuite_x64_vs120.vcxproj.filters
│ │ ├── TestSuite_x64_vs140.vcxproj
│ │ ├── TestSuite_x64_vs140.vcxproj.filters
│ │ ├── TestSuite_x64_vs150.vcxproj
│ │ ├── TestSuite_x64_vs150.vcxproj.filters
│ │ └── TestSuite_x64_vs90.vcproj
│ ├── ODBC
│ │ ├── cmake
│ │ │ └── PocoDataODBCConfig.cmake
│ │ ├── CMakeLists.txt
│ │ ├── include
│ │ │ └── Poco
│ │ │ └── Data
│ │ │ └── ODBC
│ │ │ ├── Binder.h
│ │ │ ├── ConnectionHandle.h
│ │ │ ├── Connector.h
│ │ │ ├── Diagnostics.h
│ │ │ ├── EnvironmentHandle.h
│ │ │ ├── Error.h
│ │ │ ├── Extractor.h
│ │ │ ├── Handle.h
│ │ │ ├── ODBCException.h
│ │ │ ├── ODBC.h
│ │ │ ├── ODBCMetaColumn.h
│ │ │ ├── ODBCStatementImpl.h
│ │ │ ├── Parameter.h
│ │ │ ├── Preparator.h
│ │ │ ├── SessionImpl.h
│ │ │ ├── TypeInfo.h
│ │ │ ├── Unicode.h
│ │ │ ├── Unicode_UNIXODBC.h
│ │ │ ├── Unicode_WIN32.h
│ │ │ └── Utility.h
│ │ ├── Makefile
│ │ ├── ODBC.make
│ │ ├── ODBC.progen
│ │ ├── ODBC_vs100.sln
│ │ ├── ODBC_vs100.vcxproj
│ │ ├── ODBC_vs100.vcxproj.filters
│ │ ├── ODBC_vs110.sln
│ │ ├── ODBC_vs110.vcxproj
│ │ ├── ODBC_vs110.vcxproj.filters
│ │ ├── ODBC_vs120.sln
│ │ ├── ODBC_vs120.vcxproj
│ │ ├── ODBC_vs120.vcxproj.filters
│ │ ├── ODBC_vs140.sln
│ │ ├── ODBC_vs140.vcxproj
│ │ ├── ODBC_vs140.vcxproj.filters
│ │ ├── ODBC_vs150.sln
│ │ ├── ODBC_vs150.vcxproj
│ │ ├── ODBC_vs150.vcxproj.filters
│ │ ├── ODBC_VS90.sln
│ │ ├── ODBC_VS90.vcproj
│ │ ├── ODBC_x64_vs100.sln
│ │ ├── ODBC_x64_vs100.vcxproj
│ │ ├── ODBC_x64_vs100.vcxproj.filters
│ │ ├── ODBC_x64_vs110.sln
│ │ ├── ODBC_x64_vs110.vcxproj
│ │ ├── ODBC_x64_vs110.vcxproj.filters
│ │ ├── ODBC_x64_vs120.sln
│ │ ├── ODBC_x64_vs120.vcxproj
│ │ ├── ODBC_x64_vs120.vcxproj.filters
│ │ ├── ODBC_x64_vs140.sln
│ │ ├── ODBC_x64_vs140.vcxproj
│ │ ├── ODBC_x64_vs140.vcxproj.filters
│ │ ├── ODBC_x64_vs150.sln
│ │ ├── ODBC_x64_vs150.vcxproj
│ │ ├── ODBC_x64_vs150.vcxproj.filters
│ │ ├── ODBC_x64_vs90.sln
│ │ ├── ODBC_x64_vs90.vcproj
│ │ ├── src
│ │ │ ├── Binder.cpp
│ │ │ ├── ConnectionHandle.cpp
│ │ │ ├── Connector.cpp
│ │ │ ├── EnvironmentHandle.cpp
│ │ │ ├── Extractor.cpp
│ │ │ ├── ODBCException.cpp
│ │ │ ├── ODBCMetaColumn.cpp
│ │ │ ├── ODBCStatementImpl.cpp
│ │ │ ├── Parameter.cpp
│ │ │ ├── Preparator.cpp
│ │ │ ├── SessionImpl.cpp
│ │ │ ├── TypeInfo.cpp
│ │ │ ├── Unicode.cpp
│ │ │ ├── Unicode_UNIXODBC.cpp
│ │ │ ├── Unicode_WIN32.cpp
│ │ │ └── Utility.cpp
│ │ └── testsuite
│ │ ├── CMakeLists.txt
│ │ ├── Makefile
│ │ ├── src
│ │ │ ├── Driver.cpp
│ │ │ ├── ODBCAccessTest.cpp
│ │ │ ├── ODBCAccessTest.h
│ │ │ ├── ODBCDB2Test.cpp
│ │ │ ├── ODBCDB2Test.h
│ │ │ ├── ODBCMySQLTest.cpp
│ │ │ ├── ODBCMySQLTest.h
│ │ │ ├── ODBCOracleTest.cpp
│ │ │ ├── ODBCOracleTest.h
│ │ │ ├── ODBCPostgreSQLTest.cpp
│ │ │ ├── ODBCPostgreSQLTest.h
│ │ │ ├── ODBCSQLiteTest.cpp
│ │ │ ├── ODBCSQLiteTest.h
│ │ │ ├── ODBCSQLServerTest.cpp
│ │ │ ├── ODBCSQLServerTest.h
│ │ │ ├── ODBCTest.cpp
│ │ │ ├── ODBCTest.h
│ │ │ ├── ODBCTestSuite.cpp
│ │ │ ├── ODBCTestSuite.h
│ │ │ ├── SQLExecutor.cpp
│ │ │ ├── SQLExecutor.h
│ │ │ └── WinDriver.cpp
│ │ ├── TestSuite.progen
│ │ ├── TestSuite_vs100.vcxproj
│ │ ├── TestSuite_vs100.vcxproj.filters
│ │ ├── TestSuite_vs110.vcxproj
│ │ ├── TestSuite_vs110.vcxproj.filters
│ │ ├── TestSuite_vs120.vcxproj
│ │ ├── TestSuite_vs120.vcxproj.filters
│ │ ├── TestSuite_vs140.vcxproj
│ │ ├── TestSuite_vs140.vcxproj.filters
│ │ ├── TestSuite_vs150.vcxproj
│ │ ├── TestSuite_vs150.vcxproj.filters
│ │ ├── TestSuite_VS90.vcproj
│ │ ├── TestSuite_x64_vs100.vcxproj
│ │ ├── TestSuite_x64_vs100.vcxproj.filters
│ │ ├── TestSuite_x64_vs110.vcxproj
│ │ ├── TestSuite_x64_vs110.vcxproj.filters
│ │ ├── TestSuite_x64_vs120.vcxproj
│ │ ├── TestSuite_x64_vs120.vcxproj.filters
│ │ ├── TestSuite_x64_vs140.vcxproj
│ │ ├── TestSuite_x64_vs140.vcxproj.filters
│ │ ├── TestSuite_x64_vs150.vcxproj
│ │ ├── TestSuite_x64_vs150.vcxproj.filters
│ │ └── TestSuite_x64_vs90.vcproj
│ ├── samples
│ │ ├── Binding
│ │ │ ├── Binding_CE_vs90.vcproj
│ │ │ ├── Binding.progen
│ │ │ ├── Binding_vs100.vcxproj
│ │ │ ├── Binding_vs100.vcxproj.filters
│ │ │ ├── Binding_vs110.vcxproj
│ │ │ ├── Binding_vs110.vcxproj.filters
│ │ │ ├── Binding_vs120.vcxproj
│ │ │ ├── Binding_vs120.vcxproj.filters
│ │ │ ├── Binding_vs140.vcxproj
│ │ │ ├── Binding_vs140.vcxproj.filters
│ │ │ ├── Binding_vs150.vcxproj
│ │ │ ├── Binding_vs150.vcxproj.filters
│ │ │ ├── Binding_vs90.vcproj
│ │ │ ├── Binding_WEC2013_vs110.vcxproj
│ │ │ ├── Binding_WEC2013_vs110.vcxproj.filters
│ │ │ ├── Binding_WEC2013_vs120.vcxproj
│ │ │ ├── Binding_WEC2013_vs120.vcxproj.filters
│ │ │ ├── Binding_x64_vs100.vcxproj
│ │ │ ├── Binding_x64_vs100.vcxproj.filters
│ │ │ ├── Binding_x64_vs110.vcxproj
│ │ │ ├── Binding_x64_vs110.vcxproj.filters
│ │ │ ├── Binding_x64_vs120.vcxproj
│ │ │ ├── Binding_x64_vs120.vcxproj.filters
│ │ │ ├── Binding_x64_vs140.vcxproj
│ │ │ ├── Binding_x64_vs140.vcxproj.filters
│ │ │ ├── Binding_x64_vs150.vcxproj
│ │ │ ├── Binding_x64_vs150.vcxproj.filters
│ │ │ ├── Binding_x64_vs90.vcproj
│ │ │ ├── CMakeLists.txt
│ │ │ ├── Makefile
│ │ │ └── src
│ │ │ └── Binding.cpp
│ │ ├── CMakeLists.txt
│ │ ├── Makefile
│ │ ├── RecordSet
│ │ │ ├── CMakeLists.txt
│ │ │ ├── Makefile
│ │ │ ├── RecordSet_CE_vs90.vcproj
│ │ │ ├── RecordSet.progen
│ │ │ ├── RecordSet_vs100.vcxproj
│ │ │ ├── RecordSet_vs100.vcxproj.filters
│ │ │ ├── RecordSet_vs110.vcxproj
│ │ │ ├── RecordSet_vs110.vcxproj.filters
│ │ │ ├── RecordSet_vs120.vcxproj
│ │ │ ├── RecordSet_vs120.vcxproj.filters
│ │ │ ├── RecordSet_vs140.vcxproj
│ │ │ ├── RecordSet_vs140.vcxproj.filters
│ │ │ ├── RecordSet_vs150.vcxproj
│ │ │ ├── RecordSet_vs150.vcxproj.filters
│ │ │ ├── RecordSet_vs90.vcproj
│ │ │ ├── RecordSet_WEC2013_vs110.vcxproj
│ │ │ ├── RecordSet_WEC2013_vs110.vcxproj.filters
│ │ │ ├── RecordSet_WEC2013_vs120.vcxproj
│ │ │ ├── RecordSet_WEC2013_vs120.vcxproj.filters
│ │ │ ├── RecordSet_x64_vs100.vcxproj
│ │ │ ├── RecordSet_x64_vs100.vcxproj.filters
│ │ │ ├── RecordSet_x64_vs110.vcxproj
│ │ │ ├── RecordSet_x64_vs110.vcxproj.filters
│ │ │ ├── RecordSet_x64_vs120.vcxproj
│ │ │ ├── RecordSet_x64_vs120.vcxproj.filters
│ │ │ ├── RecordSet_x64_vs140.vcxproj
│ │ │ ├── RecordSet_x64_vs140.vcxproj.filters
│ │ │ ├── RecordSet_x64_vs150.vcxproj
│ │ │ ├── RecordSet_x64_vs150.vcxproj.filters
│ │ │ ├── RecordSet_x64_vs90.vcproj
│ │ │ └── src
│ │ │ └── RecordSet.cpp
│ │ ├── RowFormatter
│ │ │ ├── CMakeLists.txt
│ │ │ ├── Makefile
│ │ │ ├── RowFormatter_CE_vs90.vcproj
│ │ │ ├── RowFormatter.progen
│ │ │ ├── RowFormatter_vs100.vcxproj
│ │ │ ├── RowFormatter_vs100.vcxproj.filters
│ │ │ ├── RowFormatter_vs110.vcxproj
│ │ │ ├── RowFormatter_vs110.vcxproj.filters
│ │ │ ├── RowFormatter_vs120.vcxproj
│ │ │ ├── RowFormatter_vs120.vcxproj.filters
│ │ │ ├── RowFormatter_vs140.vcxproj
│ │ │ ├── RowFormatter_vs140.vcxproj.filters
│ │ │ ├── RowFormatter_vs150.vcxproj
│ │ │ ├── RowFormatter_vs150.vcxproj.filters
│ │ │ ├── RowFormatter_vs90.vcproj
│ │ │ ├── RowFormatter_WEC2013_vs110.vcxproj
│ │ │ ├── RowFormatter_WEC2013_vs110.vcxproj.filters
│ │ │ ├── RowFormatter_WEC2013_vs120.vcxproj
│ │ │ ├── RowFormatter_WEC2013_vs120.vcxproj.filters
│ │ │ ├── RowFormatter_x64_vs100.vcxproj
│ │ │ ├── RowFormatter_x64_vs100.vcxproj.filters
│ │ │ ├── RowFormatter_x64_vs110.vcxproj
│ │ │ ├── RowFormatter_x64_vs110.vcxproj.filters
│ │ │ ├── RowFormatter_x64_vs120.vcxproj
│ │ │ ├── RowFormatter_x64_vs120.vcxproj.filters
│ │ │ ├── RowFormatter_x64_vs140.vcxproj
│ │ │ ├── RowFormatter_x64_vs140.vcxproj.filters
│ │ │ ├── RowFormatter_x64_vs150.vcxproj
│ │ │ ├── RowFormatter_x64_vs150.vcxproj.filters
│ │ │ ├── RowFormatter_x64_vs90.vcproj
│ │ │ └── src
│ │ │ └── RowFormatter.cpp
│ │ ├── samples_CE_vs90.sln
│ │ ├── samples.progen
│ │ ├── samples_vs100.sln
│ │ ├── samples_vs110.sln
│ │ ├── samples_vs120.sln
│ │ ├── samples_vs140.sln
│ │ ├── samples_vs150.sln
│ │ ├── samples_vs90.sln
│ │ ├── samples_WEC2013_vs110.sln
│ │ ├── samples_WEC2013_vs120.sln
│ │ ├── samples_x64_vs100.sln
│ │ ├── samples_x64_vs110.sln
│ │ ├── samples_x64_vs120.sln
│ │ ├── samples_x64_vs140.sln
│ │ ├── samples_x64_vs150.sln
│ │ ├── samples_x64_vs90.sln
│ │ ├── Tuple
│ │ │ ├── CMakeLists.txt
│ │ │ ├── Makefile
│ │ │ ├── src
│ │ │ │ └── Tuple.cpp
│ │ │ ├── Tuple_CE_vs90.vcproj
│ │ │ ├── Tuple.progen
│ │ │ ├── Tuple_vs100.vcxproj
│ │ │ ├── Tuple_vs100.vcxproj.filters
│ │ │ ├── Tuple_vs110.vcxproj
│ │ │ ├── Tuple_vs110.vcxproj.filters
│ │ │ ├── Tuple_vs120.vcxproj
│ │ │ ├── Tuple_vs120.vcxproj.filters
│ │ │ ├── Tuple_vs140.vcxproj
│ │ │ ├── Tuple_vs140.vcxproj.filters
│ │ │ ├── Tuple_vs150.vcxproj
│ │ │ ├── Tuple_vs150.vcxproj.filters
│ │ │ ├── Tuple_vs90.vcproj
│ │ │ ├── Tuple_WEC2013_vs110.vcxproj
│ │ │ ├── Tuple_WEC2013_vs110.vcxproj.filters
│ │ │ ├── Tuple_WEC2013_vs120.vcxproj
│ │ │ ├── Tuple_WEC2013_vs120.vcxproj.filters
│ │ │ ├── Tuple_x64_vs100.vcxproj
│ │ │ ├── Tuple_x64_vs100.vcxproj.filters
│ │ │ ├── Tuple_x64_vs110.vcxproj
│ │ │ ├── Tuple_x64_vs110.vcxproj.filters
│ │ │ ├── Tuple_x64_vs120.vcxproj
│ │ │ ├── Tuple_x64_vs120.vcxproj.filters
│ │ │ ├── Tuple_x64_vs140.vcxproj
│ │ │ ├── Tuple_x64_vs140.vcxproj.filters
│ │ │ ├── Tuple_x64_vs150.vcxproj
│ │ │ ├── Tuple_x64_vs150.vcxproj.filters
│ │ │ └── Tuple_x64_vs90.vcproj
│ │ ├── TypeHandler
│ │ │ ├── CMakeLists.txt
│ │ │ ├── Makefile
│ │ │ ├── src
│ │ │ │ └── TypeHandler.cpp
│ │ │ ├── TypeHandler_CE_vs90.vcproj
│ │ │ ├── TypeHandler.progen
│ │ │ ├── TypeHandler_vs100.vcxproj
│ │ │ ├── TypeHandler_vs100.vcxproj.filters
│ │ │ ├── TypeHandler_vs110.vcxproj
│ │ │ ├── TypeHandler_vs110.vcxproj.filters
│ │ │ ├── TypeHandler_vs120.vcxproj
│ │ │ ├── TypeHandler_vs120.vcxproj.filters
│ │ │ ├── TypeHandler_vs140.vcxproj
│ │ │ ├── TypeHandler_vs140.vcxproj.filters
│ │ │ ├── TypeHandler_vs150.vcxproj
│ │ │ ├── TypeHandler_vs150.vcxproj.filters
│ │ │ ├── TypeHandler_vs90.vcproj
│ │ │ ├── TypeHandler_WEC2013_vs110.vcxproj
│ │ │ ├── TypeHandler_WEC2013_vs110.vcxproj.filters
│ │ │ ├── TypeHandler_WEC2013_vs120.vcxproj
│ │ │ ├── TypeHandler_WEC2013_vs120.vcxproj.filters
│ │ │ ├── TypeHandler_x64_vs100.vcxproj
│ │ │ ├── TypeHandler_x64_vs100.vcxproj.filters
│ │ │ ├── TypeHandler_x64_vs110.vcxproj
│ │ │ ├── TypeHandler_x64_vs110.vcxproj.filters
│ │ │ ├── TypeHandler_x64_vs120.vcxproj
│ │ │ ├── TypeHandler_x64_vs120.vcxproj.filters
│ │ │ ├── TypeHandler_x64_vs140.vcxproj
│ │ │ ├── TypeHandler_x64_vs140.vcxproj.filters
│ │ │ ├── TypeHandler_x64_vs150.vcxproj
│ │ │ ├── TypeHandler_x64_vs150.vcxproj.filters
│ │ │ └── TypeHandler_x64_vs90.vcproj
│ │ └── WebNotifier
│ │ ├── CMakeLists.txt
│ │ ├── Makefile
│ │ ├── src
│ │ │ └── WebNotifier.cpp
│ │ ├── WebNotifier_CE_vs90.vcproj
│ │ ├── WebNotifier.progen
│ │ ├── WebNotifier_vs100.vcxproj
│ │ ├── WebNotifier_vs100.vcxproj.filters
│ │ ├── WebNotifier_vs110.vcxproj
│ │ ├── WebNotifier_vs110.vcxproj.filters
│ │ ├── WebNotifier_vs120.vcxproj
│ │ ├── WebNotifier_vs120.vcxproj.filters
│ │ ├── WebNotifier_vs140.vcxproj
│ │ ├── WebNotifier_vs140.vcxproj.filters
│ │ ├── WebNotifier_vs150.vcxproj
│ │ ├── WebNotifier_vs150.vcxproj.filters
│ │ ├── WebNotifier_vs90.vcproj
│ │ ├── WebNotifier_WEC2013_vs110.vcxproj
│ │ ├── WebNotifier_WEC2013_vs110.vcxproj.filters
│ │ ├── WebNotifier_WEC2013_vs120.vcxproj
│ │ ├── WebNotifier_WEC2013_vs120.vcxproj.filters
│ │ ├── WebNotifier_x64_vs100.vcxproj
│ │ ├── WebNotifier_x64_vs100.vcxproj.filters
│ │ ├── WebNotifier_x64_vs110.vcxproj
│ │ ├── WebNotifier_x64_vs110.vcxproj.filters
│ │ ├── WebNotifier_x64_vs120.vcxproj
│ │ ├── WebNotifier_x64_vs120.vcxproj.filters
│ │ ├── WebNotifier_x64_vs140.vcxproj
│ │ ├── WebNotifier_x64_vs140.vcxproj.filters
│ │ ├── WebNotifier_x64_vs150.vcxproj
│ │ ├── WebNotifier_x64_vs150.vcxproj.filters
│ │ └── WebNotifier_x64_vs90.vcproj
│ ├── SQLite
│ │ ├── cmake
│ │ │ └── PocoDataSQLiteConfig.cmake
│ │ ├── CMakeLists.txt
│ │ ├── include
│ │ │ └── Poco
│ │ │ └── Data
│ │ │ └── SQLite
│ │ │ ├── Binder.h
│ │ │ ├── Connector.h
│ │ │ ├── Extractor.h
│ │ │ ├── Notifier.h
│ │ │ ├── SessionImpl.h
│ │ │ ├── SQLiteException.h
│ │ │ ├── SQLite.h
│ │ │ ├── SQLiteStatementImpl.h
│ │ │ └── Utility.h
│ │ ├── Makefile
│ │ ├── SQLite_CE_vs90.sln
│ │ ├── SQLite_CE_vs90.vcproj
│ │ ├── SQLite.progen
│ │ ├── SQLite_vs100.sln
│ │ ├── SQLite_vs100.vcxproj
│ │ ├── SQLite_vs100.vcxproj.filters
│ │ ├── SQLite_vs110.sln
│ │ ├── SQLite_vs110.vcxproj
│ │ ├── SQLite_vs110.vcxproj.filters
│ │ ├── SQLite_vs120.sln
│ │ ├── SQLite_vs120.vcxproj
│ │ ├── SQLite_vs120.vcxproj.filters
│ │ ├── SQLite_vs140.sln
│ │ ├── SQLite_vs140.vcxproj
│ │ ├── SQLite_vs140.vcxproj.filters
│ │ ├── SQLite_vs150.sln
│ │ ├── SQLite_vs150.vcxproj
│ │ ├── SQLite_vs150.vcxproj.filters
│ │ ├── SQLite_VS90.sln
│ │ ├── SQLite_VS90.vcproj
│ │ ├── SQLite_WEC2013_vs110.sln
│ │ ├── SQLite_WEC2013_vs110.vcxproj
│ │ ├── SQLite_WEC2013_vs110.vcxproj.filters
│ │ ├── SQLite_WEC2013_vs120.sln
│ │ ├── SQLite_WEC2013_vs120.vcxproj
│ │ ├── SQLite_WEC2013_vs120.vcxproj.filters
│ │ ├── SQLite_x64_vs100.sln
│ │ ├── SQLite_x64_vs100.vcxproj
│ │ ├── SQLite_x64_vs100.vcxproj.filters
│ │ ├── SQLite_x64_vs110.sln
│ │ ├── SQLite_x64_vs110.vcxproj
│ │ ├── SQLite_x64_vs110.vcxproj.filters
│ │ ├── SQLite_x64_vs120.sln
│ │ ├── SQLite_x64_vs120.vcxproj
│ │ ├── SQLite_x64_vs120.vcxproj.filters
│ │ ├── SQLite_x64_vs140.sln
│ │ ├── SQLite_x64_vs140.vcxproj
│ │ ├── SQLite_x64_vs140.vcxproj.filters
│ │ ├── SQLite_x64_vs150.sln
│ │ ├── SQLite_x64_vs150.vcxproj
│ │ ├── SQLite_x64_vs150.vcxproj.filters
│ │ ├── SQLite_x64_vs90.sln
│ │ ├── SQLite_x64_vs90.vcproj
│ │ ├── src
│ │ │ ├── Binder.cpp
│ │ │ ├── Connector.cpp
│ │ │ ├── Extractor.cpp
│ │ │ ├── Notifier.cpp
│ │ │ ├── SessionImpl.cpp
│ │ │ ├── sqlite3.c
│ │ │ ├── sqlite3.h
│ │ │ ├── SQLiteException.cpp
│ │ │ ├── SQLiteStatementImpl.cpp
│ │ │ └── Utility.cpp
│ │ └── testsuite
│ │ ├── CMakeLists.txt
│ │ ├── Makefile
│ │ ├── src
│ │ │ ├── Driver.cpp
│ │ │ ├── SQLiteTest.cpp
│ │ │ ├── SQLiteTest.h
│ │ │ ├── SQLiteTestSuite.cpp
│ │ │ ├── SQLiteTestSuite.h
│ │ │ ├── WinCEDriver.cpp
│ │ │ └── WinDriver.cpp
│ │ ├── TestSuite_CE_vs90.vcproj
│ │ ├── TestSuite.progen
│ │ ├── TestSuite_vs100.vcxproj
│ │ ├── TestSuite_vs100.vcxproj.filters
│ │ ├── TestSuite_vs110.vcxproj
│ │ ├── TestSuite_vs110.vcxproj.filters
│ │ ├── TestSuite_vs120.vcxproj
│ │ ├── TestSuite_vs120.vcxproj.filters
│ │ ├── TestSuite_vs140.vcxproj
│ │ ├── TestSuite_vs140.vcxproj.filters
│ │ ├── TestSuite_vs150.vcxproj
│ │ ├── TestSuite_vs150.vcxproj.filters
│ │ ├── TestSuite_VS90.vcproj
│ │ ├── TestSuite_WEC2013_vs110.vcxproj
│ │ ├── TestSuite_WEC2013_vs110.vcxproj.filters
│ │ ├── TestSuite_WEC2013_vs120.vcxproj
│ │ ├── TestSuite_WEC2013_vs120.vcxproj.filters
│ │ ├── TestSuite_x64_vs100.vcxproj
│ │ ├── TestSuite_x64_vs100.vcxproj.filters
│ │ ├── TestSuite_x64_vs110.vcxproj
│ │ ├── TestSuite_x64_vs110.vcxproj.filters
│ │ ├── TestSuite_x64_vs120.vcxproj
│ │ ├── TestSuite_x64_vs120.vcxproj.filters
│ │ ├── TestSuite_x64_vs140.vcxproj
│ │ ├── TestSuite_x64_vs140.vcxproj.filters
│ │ ├── TestSuite_x64_vs150.vcxproj
│ │ ├── TestSuite_x64_vs150.vcxproj.filters
│ │ └── TestSuite_x64_vs90.vcproj
│ ├── src
│ │ ├── AbstractBinder.cpp
│ │ ├── AbstractBinding.cpp
│ │ ├── AbstractExtraction.cpp
│ │ ├── AbstractExtractor.cpp
│ │ ├── AbstractPreparation.cpp
│ │ ├── AbstractPreparator.cpp
│ │ ├── ArchiveStrategy.cpp
│ │ ├── Bulk.cpp
│ │ ├── Connector.cpp
│ │ ├── DataException.cpp
│ │ ├── Date.cpp
│ │ ├── DynamicLOB.cpp
│ │ ├── Limit.cpp
│ │ ├── MetaColumn.cpp
│ │ ├── PooledSessionHolder.cpp
│ │ ├── PooledSessionImpl.cpp
│ │ ├── Position.cpp
│ │ ├── Range.cpp
│ │ ├── RecordSet.cpp
│ │ ├── Row.cpp
│ │ ├── RowFilter.cpp
│ │ ├── RowFormatter.cpp
│ │ ├── RowIterator.cpp
│ │ ├── Session.cpp
│ │ ├── SessionFactory.cpp
│ │ ├── SessionImpl.cpp
│ │ ├── SessionPoolContainer.cpp
│ │ ├── SessionPool.cpp
│ │ ├── SimpleRowFormatter.cpp
│ │ ├── SQLChannel.cpp
│ │ ├── Statement.cpp
│ │ ├── StatementCreator.cpp
│ │ ├── StatementImpl.cpp
│ │ ├── Time.cpp
│ │ └── Transaction.cpp
│ └── testsuite
│ ├── CMakeLists.txt
│ ├── Makefile
│ ├── src
│ │ ├── Binder.cpp
│ │ ├── Binder.h
│ │ ├── Connector.cpp
│ │ ├── Connector.h
│ │ ├── DataTest.cpp
│ │ ├── DataTest.h
│ │ ├── DataTestSuite.cpp
│ │ ├── DataTestSuite.h
│ │ ├── Driver.cpp
│ │ ├── Extractor.cpp
│ │ ├── Extractor.h
│ │ ├── Preparator.cpp
│ │ ├── Preparator.h
│ │ ├── SessionImpl.cpp
│ │ ├── SessionImpl.h
│ │ ├── SessionPoolTest.cpp
│ │ ├── SessionPoolTest.h
│ │ ├── StatementImpl.cpp
│ │ ├── StatementImpl.h
│ │ ├── TestStatementImpl.cpp
│ │ ├── TestStatementImpl.h
│ │ ├── WinCEDriver.cpp
│ │ └── WinDriver.cpp
│ ├── TestSuite_CE_vs90.vcproj
│ ├── TestSuite.progen
│ ├── TestSuite_vs100.vcxproj
│ ├── TestSuite_vs100.vcxproj.filters
│ ├── TestSuite_vs110.vcxproj
│ ├── TestSuite_vs110.vcxproj.filters
│ ├── TestSuite_vs120.vcxproj
│ ├── TestSuite_vs120.vcxproj.filters
│ ├── TestSuite_vs140.vcxproj
│ ├── TestSuite_vs140.vcxproj.filters
│ ├── TestSuite_vs150.vcxproj
│ ├── TestSuite_vs150.vcxproj.filters
│ ├── TestSuite_VS90.vcproj
│ ├── TestSuite_WEC2013_vs110.vcxproj
│ ├── TestSuite_WEC2013_vs110.vcxproj.filters
│ ├── TestSuite_WEC2013_vs120.vcxproj
│ ├── TestSuite_WEC2013_vs120.vcxproj.filters
│ ├── TestSuite_x64_vs100.vcxproj
│ ├── TestSuite_x64_vs100.vcxproj.filters
│ ├── TestSuite_x64_vs110.vcxproj
│ ├── TestSuite_x64_vs110.vcxproj.filters
│ ├── TestSuite_x64_vs120.vcxproj
│ ├── TestSuite_x64_vs120.vcxproj.filters
│ ├── TestSuite_x64_vs140.vcxproj
│ ├── TestSuite_x64_vs140.vcxproj.filters
│ ├── TestSuite_x64_vs150.vcxproj
│ ├── TestSuite_x64_vs150.vcxproj.filters
│ └── TestSuite_x64_vs90.vcproj
├── DLLVersion.rc
├── doc
│ ├── 00100-GuidedTour.page
│ ├── 00200-GettingStarted.page
│ ├── 80100-HowToGetHelp.page
│ ├── 90100-Acknowledgements.page
│ ├── 99100-ReleaseNotes.page
│ ├── 99150-GMakeBuildNotes.page
│ ├── 99150-WindowsPlatformNotes.page
│ ├── 99200-WinCEPlatformNotes.page
│ ├── 99250-VxWorksPlatformNotes.page
│ ├── 99300-AndroidPlatformNotes.page
│ └── Acknowledgements.html
├── Foundation
│ ├── cmake
│ │ └── PocoFoundationConfig.cmake
│ ├── CMakeLists.txt
│ ├── Foundation_CE_vs90.sln
│ ├── Foundation_CE_vs90.vcproj
│ ├── Foundation.progen
│ ├── Foundation_vs100.sln
│ ├── Foundation_vs100.vcxproj
│ ├── Foundation_vs100.vcxproj.filters
│ ├── Foundation_vs110.sln
│ ├── Foundation_vs110.vcxproj
│ ├── Foundation_vs110.vcxproj.filters
│ ├── Foundation_vs120.sln
│ ├── Foundation_vs120.vcxproj
│ ├── Foundation_vs120.vcxproj.filters
│ ├── Foundation_vs140.sln
│ ├── Foundation_vs140.vcxproj
│ ├── Foundation_vs140.vcxproj.filters
│ ├── Foundation_vs150.sln
│ ├── Foundation_vs150.vcxproj
│ ├── Foundation_vs150.vcxproj.filters
│ ├── Foundation_vs90.sln
│ ├── Foundation_vs90.vcproj
│ ├── Foundation_WEC2013_vs110.sln
│ ├── Foundation_WEC2013_vs110.vcxproj
│ ├── Foundation_WEC2013_vs110.vcxproj.filters
│ ├── Foundation_WEC2013_vs120.sln
│ ├── Foundation_WEC2013_vs120.vcxproj
│ ├── Foundation_WEC2013_vs120.vcxproj.filters
│ ├── Foundation_x64_vs100.sln
│ ├── Foundation_x64_vs100.vcxproj
│ ├── Foundation_x64_vs100.vcxproj.filters
│ ├── Foundation_x64_vs110.sln
│ ├── Foundation_x64_vs110.vcxproj
│ ├── Foundation_x64_vs110.vcxproj.filters
│ ├── Foundation_x64_vs120.sln
│ ├── Foundation_x64_vs120.vcxproj
│ ├── Foundation_x64_vs120.vcxproj.filters
│ ├── Foundation_x64_vs140.sln
│ ├── Foundation_x64_vs140.vcxproj
│ ├── Foundation_x64_vs140.vcxproj.filters
│ ├── Foundation_x64_vs150.sln
│ ├── Foundation_x64_vs150.vcxproj
│ ├── Foundation_x64_vs150.vcxproj.filters
│ ├── Foundation_x64_vs90.sln
│ ├── Foundation_x64_vs90.vcproj
│ ├── include
│ │ └── Poco
│ │ ├── AbstractCache.h
│ │ ├── AbstractDelegate.h
│ │ ├── AbstractEvent.h
│ │ ├── AbstractObserver.h
│ │ ├── AbstractPriorityDelegate.h
│ │ ├── AbstractStrategy.h
│ │ ├── AccessExpirationDecorator.h
│ │ ├── AccessExpireCache.h
│ │ ├── AccessExpireLRUCache.h
│ │ ├── AccessExpireStrategy.h
│ │ ├── ActiveDispatcher.h
│ │ ├── ActiveMethod.h
│ │ ├── ActiveResult.h
│ │ ├── ActiveRunnable.h
│ │ ├── ActiveStarter.h
│ │ ├── Activity.h
│ │ ├── Alignment.h
│ │ ├── Any.h
│ │ ├── ArchiveStrategy.h
│ │ ├── Array.h
│ │ ├── ASCIIEncoding.h
│ │ ├── Ascii.h
│ │ ├── AsyncChannel.h
│ │ ├── AtomicCounter.h
│ │ ├── AutoPtr.h
│ │ ├── AutoReleasePool.h
│ │ ├── Base32Decoder.h
│ │ ├── Base32Encoder.h
│ │ ├── Base64Decoder.h
│ │ ├── Base64Encoder.h
│ │ ├── BasicEvent.h
│ │ ├── BinaryReader.h
│ │ ├── BinaryWriter.h
│ │ ├── BufferAllocator.h
│ │ ├── BufferedBidirectionalStreamBuf.h
│ │ ├── BufferedStreamBuf.h
│ │ ├── Buffer.h
│ │ ├── Bugcheck.h
│ │ ├── ByteOrder.h
│ │ ├── Channel.h
│ │ ├── Checksum.h
│ │ ├── ClassLibrary.h
│ │ ├── ClassLoader.h
│ │ ├── Clock.h
│ │ ├── Condition.h
│ │ ├── Config.h
│ │ ├── Configurable.h
│ │ ├── ConsoleChannel.h
│ │ ├── CountingStream.h
│ │ ├── DateTimeFormat.h
│ │ ├── DateTimeFormatter.h
│ │ ├── DateTime.h
│ │ ├── DateTimeParser.h
│ │ ├── Debugger.h
│ │ ├── DefaultStrategy.h
│ │ ├── DeflatingStream.h
│ │ ├── Delegate.h
│ │ ├── DigestEngine.h
│ │ ├── DigestStream.h
│ │ ├── DirectoryIterator.h
│ │ ├── DirectoryIteratorStrategy.h
│ │ ├── DirectoryIterator_UNIX.h
│ │ ├── DirectoryIterator_WIN32.h
│ │ ├── DirectoryIterator_WIN32U.h
│ │ ├── DirectoryWatcher.h
│ │ ├── Dynamic
│ │ │ ├── Pair.h
│ │ │ ├── Struct.h
│ │ │ ├── Var.h
│ │ │ ├── VarHolder.h
│ │ │ └── VarIterator.h
│ │ ├── DynamicAny.h
│ │ ├── DynamicAnyHolder.h
│ │ ├── DynamicFactory.h
│ │ ├── DynamicStruct.h
│ │ ├── Environment.h
│ │ ├── Environment_UNIX.h
│ │ ├── Environment_VX.h
│ │ ├── Environment_WIN32.h
│ │ ├── Environment_WIN32U.h
│ │ ├── Environment_WINCE.h
│ │ ├── Error.h
│ │ ├── ErrorHandler.h
│ │ ├── EventArgs.h
│ │ ├── EventChannel.h
│ │ ├── Event.h
│ │ ├── EventLogChannel.h
│ │ ├── Event_POSIX.h
│ │ ├── Event_VX.h
│ │ ├── Event_WIN32.h
│ │ ├── Exception.h
│ │ ├── ExpirationDecorator.h
│ │ ├── ExpireCache.h
│ │ ├── Expire.h
│ │ ├── ExpireLRUCache.h
│ │ ├── ExpireStrategy.h
│ │ ├── FIFOBuffer.h
│ │ ├── FIFOBufferStream.h
│ │ ├── FIFOEvent.h
│ │ ├── FIFOStrategy.h
│ │ ├── FileChannel.h
│ │ ├── File.h
│ │ ├── FileStreamFactory.h
│ │ ├── FileStream.h
│ │ ├── FileStream_POSIX.h
│ │ ├── FileStream_WIN32.h
│ │ ├── File_UNIX.h
│ │ ├── File_VX.h
│ │ ├── File_WIN32.h
│ │ ├── File_WIN32U.h
│ │ ├── File_WINCE.h
│ │ ├── Format.h
│ │ ├── Formatter.h
│ │ ├── FormattingChannel.h
│ │ ├── Foundation.h
│ │ ├── FPEnvironment_C99.h
│ │ ├── FPEnvironment_DEC.h
│ │ ├── FPEnvironment_DUMMY.h
│ │ ├── FPEnvironment.h
│ │ ├── FPEnvironment_QNX.h
│ │ ├── FPEnvironment_SUN.h
│ │ ├── FPEnvironment_WIN32.h
│ │ ├── FunctionDelegate.h
│ │ ├── FunctionPriorityDelegate.h
│ │ ├── Glob.h
│ │ ├── HashFunction.h
│ │ ├── Hash.h
│ │ ├── HashMap.h
│ │ ├── HashSet.h
│ │ ├── HashStatistic.h
│ │ ├── HashTable.h
│ │ ├── HexBinaryDecoder.h
│ │ ├── HexBinaryEncoder.h
│ │ ├── HMACEngine.h
│ │ ├── InflatingStream.h
│ │ ├── Instantiator.h
│ │ ├── JSONString.h
│ │ ├── KeyValueArgs.h
│ │ ├── Latin1Encoding.h
│ │ ├── Latin2Encoding.h
│ │ ├── Latin9Encoding.h
│ │ ├── LinearHashTable.h
│ │ ├── LineEndingConverter.h
│ │ ├── ListMap.h
│ │ ├── LocalDateTime.h
│ │ ├── LogFile.h
│ │ ├── LogFile_STD.h
│ │ ├── LogFile_WIN32.h
│ │ ├── LogFile_WIN32U.h
│ │ ├── Logger.h
│ │ ├── LoggingFactory.h
│ │ ├── LoggingRegistry.h
│ │ ├── LogStream.h
│ │ ├── LRUCache.h
│ │ ├── LRUStrategy.h
│ │ ├── Manifest.h
│ │ ├── MD4Engine.h
│ │ ├── MD5Engine.h
│ │ ├── MemoryPool.h
│ │ ├── MemoryStream.h
│ │ ├── Message.h
│ │ ├── MetaObject.h
│ │ ├── MetaProgramming.h
│ │ ├── Mutex.h
│ │ ├── Mutex_POSIX.h
│ │ ├── Mutex_VX.h
│ │ ├── Mutex_WIN32.h
│ │ ├── Mutex_WINCE.h
│ │ ├── NamedEvent_Android.h
│ │ ├── NamedEvent.h
│ │ ├── NamedEvent_UNIX.h
│ │ ├── NamedEvent_WIN32.h
│ │ ├── NamedEvent_WIN32U.h
│ │ ├── NamedMutex_Android.h
│ │ ├── NamedMutex.h
│ │ ├── NamedMutex_UNIX.h
│ │ ├── NamedMutex_WIN32.h
│ │ ├── NamedMutex_WIN32U.h
│ │ ├── NamedTuple.h
│ │ ├── NestedDiagnosticContext.h
│ │ ├── NObserver.h
│ │ ├── NotificationCenter.h
│ │ ├── Notification.h
│ │ ├── NotificationQueue.h
│ │ ├── NotificationStrategy.h
│ │ ├── Nullable.h
│ │ ├── NullChannel.h
│ │ ├── NullStream.h
│ │ ├── NumberFormatter.h
│ │ ├── NumberParser.h
│ │ ├── NumericString.h
│ │ ├── ObjectPool.h
│ │ ├── Observer.h
│ │ ├── Optional.h
│ │ ├── Path.h
│ │ ├── Path_UNIX.h
│ │ ├── Path_WIN32.h
│ │ ├── Path_WIN32U.h
│ │ ├── Path_WINCE.h
│ │ ├── PatternFormatter.h
│ │ ├── PBKDF2Engine.h
│ │ ├── Pipe.h
│ │ ├── PipeImpl_DUMMY.h
│ │ ├── PipeImpl.h
│ │ ├── PipeImpl_POSIX.h
│ │ ├── PipeImpl_WIN32.h
│ │ ├── PipeStream.h
│ │ ├── Platform.h
│ │ ├── Platform_POSIX.h
│ │ ├── Platform_VX.h
│ │ ├── Platform_WIN32.h
│ │ ├── Poco.h
│ │ ├── PriorityDelegate.h
│ │ ├── PriorityEvent.h
│ │ ├── PriorityExpire.h
│ │ ├── PriorityNotificationQueue.h
│ │ ├── PriorityStrategy.h
│ │ ├── Process.h
│ │ ├── Process_UNIX.h
│ │ ├── Process_VX.h
│ │ ├── Process_WIN32.h
│ │ ├── Process_WIN32U.h
│ │ ├── Process_WINCE.h
│ │ ├── PurgeStrategy.h
│ │ ├── Random.h
│ │ ├── RandomStream.h
│ │ ├── RecursiveDirectoryIterator.h
│ │ ├── RecursiveDirectoryIteratorImpl.h
│ │ ├── RefCountedObject.h
│ │ ├── RegularExpression.h
│ │ ├── RotateStrategy.h
│ │ ├── RunnableAdapter.h
│ │ ├── Runnable.h
│ │ ├── RWLock_Android.h
│ │ ├── RWLock.h
│ │ ├── RWLock_POSIX.h
│ │ ├── RWLock_VX.h
│ │ ├── RWLock_WIN32.h
│ │ ├── RWLock_WINCE.h
│ │ ├── ScopedLock.h
│ │ ├── ScopedUnlock.h
│ │ ├── Semaphore.h
│ │ ├── Semaphore_POSIX.h
│ │ ├── Semaphore_VX.h
│ │ ├── Semaphore_WIN32.h
│ │ ├── SHA1Engine.h
│ │ ├── SharedLibrary.h
│ │ ├── SharedLibrary_HPUX.h
│ │ ├── SharedLibrary_UNIX.h
│ │ ├── SharedLibrary_VX.h
│ │ ├── SharedLibrary_WIN32.h
│ │ ├── SharedLibrary_WIN32U.h
│ │ ├── SharedMemory_DUMMY.h
│ │ ├── SharedMemory.h
│ │ ├── SharedMemory_POSIX.h
│ │ ├── SharedMemory_WIN32.h
│ │ ├── SharedPtr.h
│ │ ├── SignalHandler.h
│ │ ├── SimpleFileChannel.h
│ │ ├── SimpleHashTable.h
│ │ ├── SingletonHolder.h
│ │ ├── SortedDirectoryIterator.h
│ │ ├── SplitterChannel.h
│ │ ├── Stopwatch.h
│ │ ├── StrategyCollection.h
│ │ ├── StreamChannel.h
│ │ ├── StreamConverter.h
│ │ ├── StreamCopier.h
│ │ ├── StreamTokenizer.h
│ │ ├── StreamUtil.h
│ │ ├── String.h
│ │ ├── StringTokenizer.h
│ │ ├── SynchronizedObject.h
│ │ ├── SyslogChannel.h
│ │ ├── Task.h
│ │ ├── TaskManager.h
│ │ ├── TaskNotification.h
│ │ ├── TeeStream.h
│ │ ├── TemporaryFile.h
│ │ ├── TextBufferIterator.h
│ │ ├── TextConverter.h
│ │ ├── TextEncoding.h
│ │ ├── TextIterator.h
│ │ ├── Thread.h
│ │ ├── ThreadLocal.h
│ │ ├── ThreadPool.h
│ │ ├── Thread_POSIX.h
│ │ ├── ThreadTarget.h
│ │ ├── Thread_VX.h
│ │ ├── Thread_WIN32.h
│ │ ├── Thread_WINCE.h
│ │ ├── TimedNotificationQueue.h
│ │ ├── Timer.h
│ │ ├── Timespan.h
│ │ ├── Timestamp.h
│ │ ├── Timezone.h
│ │ ├── Token.h
│ │ ├── Tuple.h
│ │ ├── TypeList.h
│ │ ├── Types.h
│ │ ├── UnbufferedStreamBuf.h
│ │ ├── UnicodeConverter.h
│ │ ├── Unicode.h
│ │ ├── UniqueAccessExpireCache.h
│ │ ├── UniqueAccessExpireLRUCache.h
│ │ ├── UniqueAccessExpireStrategy.h
│ │ ├── UniqueExpireCache.h
│ │ ├── UniqueExpireLRUCache.h
│ │ ├── UniqueExpireStrategy.h
│ │ ├── UnWindows.h
│ │ ├── URI.h
│ │ ├── URIStreamFactory.h
│ │ ├── URIStreamOpener.h
│ │ ├── UTF16Encoding.h
│ │ ├── UTF32Encoding.h
│ │ ├── UTF8Encoding.h
│ │ ├── UTF8String.h
│ │ ├── UTFString.h
│ │ ├── UUIDGenerator.h
│ │ ├── UUID.h
│ │ ├── ValidArgs.h
│ │ ├── Version.h
│ │ ├── Void.h
│ │ ├── Windows1250Encoding.h
│ │ ├── Windows1251Encoding.h
│ │ ├── Windows1252Encoding.h
│ │ ├── WindowsConsoleChannel.h
│ │ ├── zconf.h
│ │ └── zlib.h
│ ├── Makefile
│ ├── samples
│ │ ├── ActiveMethod
│ │ │ ├── ActiveMethod_CE_vs90.vcproj
│ │ │ ├── ActiveMethod.progen
│ │ │ ├── ActiveMethod_vs100.vcxproj
│ │ │ ├── ActiveMethod_vs100.vcxproj.filters
│ │ │ ├── ActiveMethod_vs110.vcxproj
│ │ │ ├── ActiveMethod_vs110.vcxproj.filters
│ │ │ ├── ActiveMethod_vs120.vcxproj
│ │ │ ├── ActiveMethod_vs120.vcxproj.filters
│ │ │ ├── ActiveMethod_vs140.vcxproj
│ │ │ ├── ActiveMethod_vs140.vcxproj.filters
│ │ │ ├── ActiveMethod_vs150.vcxproj
│ │ │ ├── ActiveMethod_vs150.vcxproj.filters
│ │ │ ├── ActiveMethod_vs90.vcproj
│ │ │ ├── ActiveMethod_WEC2013_vs110.vcxproj
│ │ │ ├── ActiveMethod_WEC2013_vs110.vcxproj.filters
│ │ │ ├── ActiveMethod_WEC2013_vs120.vcxproj
│ │ │ ├── ActiveMethod_WEC2013_vs120.vcxproj.filters
│ │ │ ├── ActiveMethod_x64_vs100.vcxproj
│ │ │ ├── ActiveMethod_x64_vs100.vcxproj.filters
│ │ │ ├── ActiveMethod_x64_vs110.vcxproj
│ │ │ ├── ActiveMethod_x64_vs110.vcxproj.filters
│ │ │ ├── ActiveMethod_x64_vs120.vcxproj
│ │ │ ├── ActiveMethod_x64_vs120.vcxproj.filters
│ │ │ ├── ActiveMethod_x64_vs140.vcxproj
│ │ │ ├── ActiveMethod_x64_vs140.vcxproj.filters
│ │ │ ├── ActiveMethod_x64_vs150.vcxproj
│ │ │ ├── ActiveMethod_x64_vs150.vcxproj.filters
│ │ │ ├── ActiveMethod_x64_vs90.vcproj
│ │ │ ├── CMakeLists.txt
│ │ │ ├── Makefile
│ │ │ └── src
│ │ │ └── ActiveMethod.cpp
│ │ ├── Activity
│ │ │ ├── Activity_CE_vs90.vcproj
│ │ │ ├── Activity.progen
│ │ │ ├── Activity_vs100.vcxproj
│ │ │ ├── Activity_vs100.vcxproj.filters
│ │ │ ├── Activity_vs110.vcxproj
│ │ │ ├── Activity_vs110.vcxproj.filters
│ │ │ ├── Activity_vs120.vcxproj
│ │ │ ├── Activity_vs120.vcxproj.filters
│ │ │ ├── Activity_vs140.vcxproj
│ │ │ ├── Activity_vs140.vcxproj.filters
│ │ │ ├── Activity_vs150.vcxproj
│ │ │ ├── Activity_vs150.vcxproj.filters
│ │ │ ├── Activity_vs90.vcproj
│ │ │ ├── Activity_WEC2013_vs110.vcxproj
│ │ │ ├── Activity_WEC2013_vs110.vcxproj.filters
│ │ │ ├── Activity_WEC2013_vs120.vcxproj
│ │ │ ├── Activity_WEC2013_vs120.vcxproj.filters
│ │ │ ├── Activity_x64_vs100.vcxproj
│ │ │ ├── Activity_x64_vs100.vcxproj.filters
│ │ │ ├── Activity_x64_vs110.vcxproj
│ │ │ ├── Activity_x64_vs110.vcxproj.filters
│ │ │ ├── Activity_x64_vs120.vcxproj
│ │ │ ├── Activity_x64_vs120.vcxproj.filters
│ │ │ ├── Activity_x64_vs140.vcxproj
│ │ │ ├── Activity_x64_vs140.vcxproj.filters
│ │ │ ├── Activity_x64_vs150.vcxproj
│ │ │ ├── Activity_x64_vs150.vcxproj.filters
│ │ │ ├── Activity_x64_vs90.vcproj
│ │ │ ├── CMakeLists.txt
│ │ │ ├── Makefile
│ │ │ └── src
│ │ │ └── Activity.cpp
│ │ ├── base64decode
│ │ │ ├── base64decode_CE_vs90.vcproj
│ │ │ ├── base64decode.progen
│ │ │ ├── base64decode_vs100.vcxproj
│ │ │ ├── base64decode_vs100.vcxproj.filters
│ │ │ ├── base64decode_vs110.vcxproj
│ │ │ ├── base64decode_vs110.vcxproj.filters
│ │ │ ├── base64decode_vs120.vcxproj
│ │ │ ├── base64decode_vs120.vcxproj.filters
│ │ │ ├── base64decode_vs140.vcxproj
│ │ │ ├── base64decode_vs140.vcxproj.filters
│ │ │ ├── base64decode_vs150.vcxproj
│ │ │ ├── base64decode_vs150.vcxproj.filters
│ │ │ ├── base64decode_vs90.vcproj
│ │ │ ├── base64decode_WEC2013_vs110.vcxproj
│ │ │ ├── base64decode_WEC2013_vs110.vcxproj.filters
│ │ │ ├── base64decode_WEC2013_vs120.vcxproj
│ │ │ ├── base64decode_WEC2013_vs120.vcxproj.filters
│ │ │ ├── base64decode_x64_vs100.vcxproj
│ │ │ ├── base64decode_x64_vs100.vcxproj.filters
│ │ │ ├── base64decode_x64_vs110.vcxproj
│ │ │ ├── base64decode_x64_vs110.vcxproj.filters
│ │ │ ├── base64decode_x64_vs120.vcxproj
│ │ │ ├── base64decode_x64_vs120.vcxproj.filters
│ │ │ ├── base64decode_x64_vs140.vcxproj
│ │ │ ├── base64decode_x64_vs140.vcxproj.filters
│ │ │ ├── base64decode_x64_vs150.vcxproj
│ │ │ ├── base64decode_x64_vs150.vcxproj.filters
│ │ │ ├── base64decode_x64_vs90.vcproj
│ │ │ ├── CMakeLists.txt
│ │ │ ├── Makefile
│ │ │ └── src
│ │ │ └── base64decode.cpp
│ │ ├── base64encode
│ │ │ ├── base64encode_CE_vs90.vcproj
│ │ │ ├── base64encode.progen
│ │ │ ├── base64encode_vs100.vcxproj
│ │ │ ├── base64encode_vs100.vcxproj.filters
│ │ │ ├── base64encode_vs110.vcxproj
│ │ │ ├── base64encode_vs110.vcxproj.filters
│ │ │ ├── base64encode_vs120.vcxproj
│ │ │ ├── base64encode_vs120.vcxproj.filters
│ │ │ ├── base64encode_vs140.vcxproj
│ │ │ ├── base64encode_vs140.vcxproj.filters
│ │ │ ├── base64encode_vs150.vcxproj
│ │ │ ├── base64encode_vs150.vcxproj.filters
│ │ │ ├── base64encode_vs90.vcproj
│ │ │ ├── base64encode_WEC2013_vs110.vcxproj
│ │ │ ├── base64encode_WEC2013_vs110.vcxproj.filters
│ │ │ ├── base64encode_WEC2013_vs120.vcxproj
│ │ │ ├── base64encode_WEC2013_vs120.vcxproj.filters
│ │ │ ├── base64encode_x64_vs100.vcxproj
│ │ │ ├── base64encode_x64_vs100.vcxproj.filters
│ │ │ ├── base64encode_x64_vs110.vcxproj
│ │ │ ├── base64encode_x64_vs110.vcxproj.filters
│ │ │ ├── base64encode_x64_vs120.vcxproj
│ │ │ ├── base64encode_x64_vs120.vcxproj.filters
│ │ │ ├── base64encode_x64_vs140.vcxproj
│ │ │ ├── base64encode_x64_vs140.vcxproj.filters
│ │ │ ├── base64encode_x64_vs150.vcxproj
│ │ │ ├── base64encode_x64_vs150.vcxproj.filters
│ │ │ ├── base64encode_x64_vs90.vcproj
│ │ │ ├── CMakeLists.txt
│ │ │ ├── Makefile
│ │ │ └── src
│ │ │ └── base64encode.cpp
│ │ ├── BinaryReaderWriter
│ │ │ ├── BinaryReaderWriter_CE_vs90.vcproj
│ │ │ ├── BinaryReaderWriter.progen
│ │ │ ├── BinaryReaderWriter_vs100.vcxproj
│ │ │ ├── BinaryReaderWriter_vs100.vcxproj.filters
│ │ │ ├── BinaryReaderWriter_vs110.vcxproj
│ │ │ ├── BinaryReaderWriter_vs110.vcxproj.filters
│ │ │ ├── BinaryReaderWriter_vs120.vcxproj
│ │ │ ├── BinaryReaderWriter_vs120.vcxproj.filters
│ │ │ ├── BinaryReaderWriter_vs140.vcxproj
│ │ │ ├── BinaryReaderWriter_vs140.vcxproj.filters
│ │ │ ├── BinaryReaderWriter_vs150.vcxproj
│ │ │ ├── BinaryReaderWriter_vs150.vcxproj.filters
│ │ │ ├── BinaryReaderWriter_vs90.vcproj
│ │ │ ├── BinaryReaderWriter_WEC2013_vs110.vcxproj
│ │ │ ├── BinaryReaderWriter_WEC2013_vs110.vcxproj.filters
│ │ │ ├── BinaryReaderWriter_WEC2013_vs120.vcxproj
│ │ │ ├── BinaryReaderWriter_WEC2013_vs120.vcxproj.filters
│ │ │ ├── BinaryReaderWriter_x64_vs100.vcxproj
│ │ │ ├── BinaryReaderWriter_x64_vs100.vcxproj.filters
│ │ │ ├── BinaryReaderWriter_x64_vs110.vcxproj
│ │ │ ├── BinaryReaderWriter_x64_vs110.vcxproj.filters
│ │ │ ├── BinaryReaderWriter_x64_vs120.vcxproj
│ │ │ ├── BinaryReaderWriter_x64_vs120.vcxproj.filters
│ │ │ ├── BinaryReaderWriter_x64_vs140.vcxproj
│ │ │ ├── BinaryReaderWriter_x64_vs140.vcxproj.filters
│ │ │ ├── BinaryReaderWriter_x64_vs150.vcxproj
│ │ │ ├── BinaryReaderWriter_x64_vs150.vcxproj.filters
│ │ │ ├── BinaryReaderWriter_x64_vs90.vcproj
│ │ │ ├── CMakeLists.txt
│ │ │ ├── Makefile
│ │ │ └── src
│ │ │ └── BinaryReaderWriter.cpp
│ │ ├── CMakeLists.txt
│ │ ├── DateTime
│ │ │ ├── CMakeLists.txt
│ │ │ ├── DateTime_CE_vs90.vcproj
│ │ │ ├── DateTime.progen
│ │ │ ├── DateTime_vs100.vcxproj
│ │ │ ├── DateTime_vs100.vcxproj.filters
│ │ │ ├── DateTime_vs110.vcxproj
│ │ │ ├── DateTime_vs110.vcxproj.filters
│ │ │ ├── DateTime_vs120.vcxproj
│ │ │ ├── DateTime_vs120.vcxproj.filters
│ │ │ ├── DateTime_vs140.vcxproj
│ │ │ ├── DateTime_vs140.vcxproj.filters
│ │ │ ├── DateTime_vs150.vcxproj
│ │ │ ├── DateTime_vs150.vcxproj.filters
│ │ │ ├── DateTime_vs90.vcproj
│ │ │ ├── DateTime_WEC2013_vs110.vcxproj
│ │ │ ├── DateTime_WEC2013_vs110.vcxproj.filters
│ │ │ ├── DateTime_WEC2013_vs120.vcxproj
│ │ │ ├── DateTime_WEC2013_vs120.vcxproj.filters
│ │ │ ├── DateTime_x64_vs100.vcxproj
│ │ │ ├── DateTime_x64_vs100.vcxproj.filters
│ │ │ ├── DateTime_x64_vs110.vcxproj
│ │ │ ├── DateTime_x64_vs110.vcxproj.filters
│ │ │ ├── DateTime_x64_vs120.vcxproj
│ │ │ ├── DateTime_x64_vs120.vcxproj.filters
│ │ │ ├── DateTime_x64_vs140.vcxproj
│ │ │ ├── DateTime_x64_vs140.vcxproj.filters
│ │ │ ├── DateTime_x64_vs150.vcxproj
│ │ │ ├── DateTime_x64_vs150.vcxproj.filters
│ │ │ ├── DateTime_x64_vs90.vcproj
│ │ │ ├── Makefile
│ │ │ └── src
│ │ │ └── DateTime.cpp
│ │ ├── deflate
│ │ │ ├── CMakeLists.txt
│ │ │ ├── deflate_CE_vs90.vcproj
│ │ │ ├── deflate.progen
│ │ │ ├── deflate_vs100.vcxproj
│ │ │ ├── deflate_vs100.vcxproj.filters
│ │ │ ├── deflate_vs110.vcxproj
│ │ │ ├── deflate_vs110.vcxproj.filters
│ │ │ ├── deflate_vs120.vcxproj
│ │ │ ├── deflate_vs120.vcxproj.filters
│ │ │ ├── deflate_vs140.vcxproj
│ │ │ ├── deflate_vs140.vcxproj.filters
│ │ │ ├── deflate_vs150.vcxproj
│ │ │ ├── deflate_vs150.vcxproj.filters
│ │ │ ├── deflate_vs90.vcproj
│ │ │ ├── deflate_WEC2013_vs110.vcxproj
│ │ │ ├── deflate_WEC2013_vs110.vcxproj.filters
│ │ │ ├── deflate_WEC2013_vs120.vcxproj
│ │ │ ├── deflate_WEC2013_vs120.vcxproj.filters
│ │ │ ├── deflate_x64_vs100.vcxproj
│ │ │ ├── deflate_x64_vs100.vcxproj.filters
│ │ │ ├── deflate_x64_vs110.vcxproj
│ │ │ ├── deflate_x64_vs110.vcxproj.filters
│ │ │ ├── deflate_x64_vs120.vcxproj
│ │ │ ├── deflate_x64_vs120.vcxproj.filters
│ │ │ ├── deflate_x64_vs140.vcxproj
│ │ │ ├── deflate_x64_vs140.vcxproj.filters
│ │ │ ├── deflate_x64_vs150.vcxproj
│ │ │ ├── deflate_x64_vs150.vcxproj.filters
│ │ │ ├── deflate_x64_vs90.vcproj
│ │ │ ├── Makefile
│ │ │ └── src
│ │ │ └── deflate.cpp
│ │ ├── dir
│ │ │ ├── CMakeLists.txt
│ │ │ ├── dir_CE_vs90.vcproj
│ │ │ ├── dir.progen
│ │ │ ├── dir_vs100.vcxproj
│ │ │ ├── dir_vs100.vcxproj.filters
│ │ │ ├── dir_vs110.vcxproj
│ │ │ ├── dir_vs110.vcxproj.filters
│ │ │ ├── dir_vs120.vcxproj
│ │ │ ├── dir_vs120.vcxproj.filters
│ │ │ ├── dir_vs140.vcxproj
│ │ │ ├── dir_vs140.vcxproj.filters
│ │ │ ├── dir_vs150.vcxproj
│ │ │ ├── dir_vs150.vcxproj.filters
│ │ │ ├── dir_vs90.vcproj
│ │ │ ├── dir_WEC2013_vs110.vcxproj
│ │ │ ├── dir_WEC2013_vs110.vcxproj.filters
│ │ │ ├── dir_WEC2013_vs120.vcxproj
│ │ │ ├── dir_WEC2013_vs120.vcxproj.filters
│ │ │ ├── dir_x64_vs100.vcxproj
│ │ │ ├── dir_x64_vs100.vcxproj.filters
│ │ │ ├── dir_x64_vs110.vcxproj
│ │ │ ├── dir_x64_vs110.vcxproj.filters
│ │ │ ├── dir_x64_vs120.vcxproj
│ │ │ ├── dir_x64_vs120.vcxproj.filters
│ │ │ ├── dir_x64_vs140.vcxproj
│ │ │ ├── dir_x64_vs140.vcxproj.filters
│ │ │ ├── dir_x64_vs150.vcxproj
│ │ │ ├── dir_x64_vs150.vcxproj.filters
│ │ │ ├── dir_x64_vs90.vcproj
│ │ │ ├── Makefile
│ │ │ └── src
│ │ │ └── dir.cpp
│ │ ├── grep
│ │ │ ├── CMakeLists.txt
│ │ │ ├── grep_CE_vs90.vcproj
│ │ │ ├── grep.progen
│ │ │ ├── grep_vs100.vcxproj
│ │ │ ├── grep_vs100.vcxproj.filters
│ │ │ ├── grep_vs110.vcxproj
│ │ │ ├── grep_vs110.vcxproj.filters
│ │ │ ├── grep_vs120.vcxproj
│ │ │ ├── grep_vs120.vcxproj.filters
│ │ │ ├── grep_vs140.vcxproj
│ │ │ ├── grep_vs140.vcxproj.filters
│ │ │ ├── grep_vs150.vcxproj
│ │ │ ├── grep_vs150.vcxproj.filters
│ │ │ ├── grep_vs90.vcproj
│ │ │ ├── grep_WEC2013_vs110.vcxproj
│ │ │ ├── grep_WEC2013_vs110.vcxproj.filters
│ │ │ ├── grep_WEC2013_vs120.vcxproj
│ │ │ ├── grep_WEC2013_vs120.vcxproj.filters
│ │ │ ├── grep_x64_vs100.vcxproj
│ │ │ ├── grep_x64_vs100.vcxproj.filters
│ │ │ ├── grep_x64_vs110.vcxproj
│ │ │ ├── grep_x64_vs110.vcxproj.filters
│ │ │ ├── grep_x64_vs120.vcxproj
│ │ │ ├── grep_x64_vs120.vcxproj.filters
│ │ │ ├── grep_x64_vs140.vcxproj
│ │ │ ├── grep_x64_vs140.vcxproj.filters
│ │ │ ├── grep_x64_vs150.vcxproj
│ │ │ ├── grep_x64_vs150.vcxproj.filters
│ │ │ ├── grep_x64_vs90.vcproj
│ │ │ ├── Makefile
│ │ │ └── src
│ │ │ └── grep.cpp
│ │ ├── hmacmd5
│ │ │ ├── CMakeLists.txt
│ │ │ ├── hmacmd5_CE_vs90.vcproj
│ │ │ ├── hmacmd5.progen
│ │ │ ├── hmacmd5_vs100.vcxproj
│ │ │ ├── hmacmd5_vs100.vcxproj.filters
│ │ │ ├── hmacmd5_vs110.vcxproj
│ │ │ ├── hmacmd5_vs110.vcxproj.filters
│ │ │ ├── hmacmd5_vs120.vcxproj
│ │ │ ├── hmacmd5_vs120.vcxproj.filters
│ │ │ ├── hmacmd5_vs140.vcxproj
│ │ │ ├── hmacmd5_vs140.vcxproj.filters
│ │ │ ├── hmacmd5_vs150.vcxproj
│ │ │ ├── hmacmd5_vs150.vcxproj.filters
│ │ │ ├── hmacmd5_vs90.vcproj
│ │ │ ├── hmacmd5_WEC2013_vs110.vcxproj
│ │ │ ├── hmacmd5_WEC2013_vs110.vcxproj.filters
│ │ │ ├── hmacmd5_WEC2013_vs120.vcxproj
│ │ │ ├── hmacmd5_WEC2013_vs120.vcxproj.filters
│ │ │ ├── hmacmd5_x64_vs100.vcxproj
│ │ │ ├── hmacmd5_x64_vs100.vcxproj.filters
│ │ │ ├── hmacmd5_x64_vs110.vcxproj
│ │ │ ├── hmacmd5_x64_vs110.vcxproj.filters
│ │ │ ├── hmacmd5_x64_vs120.vcxproj
│ │ │ ├── hmacmd5_x64_vs120.vcxproj.filters
│ │ │ ├── hmacmd5_x64_vs140.vcxproj
│ │ │ ├── hmacmd5_x64_vs140.vcxproj.filters
│ │ │ ├── hmacmd5_x64_vs150.vcxproj
│ │ │ ├── hmacmd5_x64_vs150.vcxproj.filters
│ │ │ ├── hmacmd5_x64_vs90.vcproj
│ │ │ ├── Makefile
│ │ │ └── src
│ │ │ └── hmacmd5.cpp
│ │ ├── inflate
│ │ │ ├── CMakeLists.txt
│ │ │ ├── inflate_CE_vs90.vcproj
│ │ │ ├── inflate.progen
│ │ │ ├── inflate_vs100.vcxproj
│ │ │ ├── inflate_vs100.vcxproj.filters
│ │ │ ├── inflate_vs110.vcxproj
│ │ │ ├── inflate_vs110.vcxproj.filters
│ │ │ ├── inflate_vs120.vcxproj
│ │ │ ├── inflate_vs120.vcxproj.filters
│ │ │ ├── inflate_vs140.vcxproj
│ │ │ ├── inflate_vs140.vcxproj.filters
│ │ │ ├── inflate_vs150.vcxproj
│ │ │ ├── inflate_vs150.vcxproj.filters
│ │ │ ├── inflate_vs90.vcproj
│ │ │ ├── inflate_WEC2013_vs110.vcxproj
│ │ │ ├── inflate_WEC2013_vs110.vcxproj.filters
│ │ │ ├── inflate_WEC2013_vs120.vcxproj
│ │ │ ├── inflate_WEC2013_vs120.vcxproj.filters
│ │ │ ├── inflate_x64_vs100.vcxproj
│ │ │ ├── inflate_x64_vs100.vcxproj.filters
│ │ │ ├── inflate_x64_vs110.vcxproj
│ │ │ ├── inflate_x64_vs110.vcxproj.filters
│ │ │ ├── inflate_x64_vs120.vcxproj
│ │ │ ├── inflate_x64_vs120.vcxproj.filters
│ │ │ ├── inflate_x64_vs140.vcxproj
│ │ │ ├── inflate_x64_vs140.vcxproj.filters
│ │ │ ├── inflate_x64_vs150.vcxproj
│ │ │ ├── inflate_x64_vs150.vcxproj.filters
│ │ │ ├── inflate_x64_vs90.vcproj
│ │ │ ├── Makefile
│ │ │ └── src
│ │ │ └── inflate.cpp
│ │ ├── LineEndingConverter
│ │ │ ├── CMakeLists.txt
│ │ │ ├── LineEndingConverter.progen
│ │ │ ├── LineEndingConverter_vs100.vcxproj
│ │ │ ├── LineEndingConverter_vs100.vcxproj.filters
│ │ │ ├── LineEndingConverter_vs110.vcxproj
│ │ │ ├── LineEndingConverter_vs110.vcxproj.filters
│ │ │ ├── LineEndingConverter_vs120.vcxproj
│ │ │ ├── LineEndingConverter_vs120.vcxproj.filters
│ │ │ ├── LineEndingConverter_vs140.vcxproj
│ │ │ ├── LineEndingConverter_vs140.vcxproj.filters
│ │ │ ├── LineEndingConverter_vs150.vcxproj
│ │ │ ├── LineEndingConverter_vs150.vcxproj.filters
│ │ │ ├── LineEndingConverter_vs90.vcproj
│ │ │ ├── LineEndingConverter_x64_vs100.vcxproj
│ │ │ ├── LineEndingConverter_x64_vs100.vcxproj.filters
│ │ │ ├── LineEndingConverter_x64_vs110.vcxproj
│ │ │ ├── LineEndingConverter_x64_vs110.vcxproj.filters
│ │ │ ├── LineEndingConverter_x64_vs120.vcxproj
│ │ │ ├── LineEndingConverter_x64_vs120.vcxproj.filters
│ │ │ ├── LineEndingConverter_x64_vs140.vcxproj
│ │ │ ├── LineEndingConverter_x64_vs140.vcxproj.filters
│ │ │ ├── LineEndingConverter_x64_vs150.vcxproj
│ │ │ ├── LineEndingConverter_x64_vs150.vcxproj.filters
│ │ │ ├── LineEndingConverter_x64_vs90.vcproj
│ │ │ ├── Makefile
│ │ │ └── src
│ │ │ └── LineEndingConverter.cpp
│ │ ├── Logger
│ │ │ ├── CMakeLists.txt
│ │ │ ├── Logger_CE_vs90.vcproj
│ │ │ ├── Logger.progen
│ │ │ ├── Logger_vs100.vcxproj
│ │ │ ├── Logger_vs100.vcxproj.filters
│ │ │ ├── Logger_vs110.vcxproj
│ │ │ ├── Logger_vs110.vcxproj.filters
│ │ │ ├── Logger_vs120.vcxproj
│ │ │ ├── Logger_vs120.vcxproj.filters
│ │ │ ├── Logger_vs140.vcxproj
│ │ │ ├── Logger_vs140.vcxproj.filters
│ │ │ ├── Logger_vs150.vcxproj
│ │ │ ├── Logger_vs150.vcxproj.filters
│ │ │ ├── Logger_vs90.vcproj
│ │ │ ├── Logger_WEC2013_vs110.vcxproj
│ │ │ ├── Logger_WEC2013_vs110.vcxproj.filters
│ │ │ ├── Logger_WEC2013_vs120.vcxproj
│ │ │ ├── Logger_WEC2013_vs120.vcxproj.filters
│ │ │ ├── Logger_x64_vs100.vcxproj
│ │ │ ├── Logger_x64_vs100.vcxproj.filters
│ │ │ ├── Logger_x64_vs110.vcxproj
│ │ │ ├── Logger_x64_vs110.vcxproj.filters
│ │ │ ├── Logger_x64_vs120.vcxproj
│ │ │ ├── Logger_x64_vs120.vcxproj.filters
│ │ │ ├── Logger_x64_vs140.vcxproj
│ │ │ ├── Logger_x64_vs140.vcxproj.filters
│ │ │ ├── Logger_x64_vs150.vcxproj
│ │ │ ├── Logger_x64_vs150.vcxproj.filters
│ │ │ ├── Logger_x64_vs90.vcproj
│ │ │ ├── Makefile
│ │ │ └── src
│ │ │ └── Logger.cpp
│ │ ├── LogRotation
│ │ │ ├── CMakeLists.txt
│ │ │ ├── LogRotation_CE_vs90.vcproj
│ │ │ ├── LogRotation.progen
│ │ │ ├── LogRotation_vs100.vcxproj
│ │ │ ├── LogRotation_vs100.vcxproj.filters
│ │ │ ├── LogRotation_vs110.vcxproj
│ │ │ ├── LogRotation_vs110.vcxproj.filters
│ │ │ ├── LogRotation_vs120.vcxproj
│ │ │ ├── LogRotation_vs120.vcxproj.filters
│ │ │ ├── LogRotation_vs140.vcxproj
│ │ │ ├── LogRotation_vs140.vcxproj.filters
│ │ │ ├── LogRotation_vs150.vcxproj
│ │ │ ├── LogRotation_vs150.vcxproj.filters
│ │ │ ├── LogRotation_vs90.vcproj
│ │ │ ├── LogRotation_WEC2013_vs110.vcxproj
│ │ │ ├── LogRotation_WEC2013_vs110.vcxproj.filters
│ │ │ ├── LogRotation_WEC2013_vs120.vcxproj
│ │ │ ├── LogRotation_WEC2013_vs120.vcxproj.filters
│ │ │ ├── LogRotation_x64_vs100.vcxproj
│ │ │ ├── LogRotation_x64_vs100.vcxproj.filters
│ │ │ ├── LogRotation_x64_vs110.vcxproj
│ │ │ ├── LogRotation_x64_vs110.vcxproj.filters
│ │ │ ├── LogRotation_x64_vs120.vcxproj
│ │ │ ├── LogRotation_x64_vs120.vcxproj.filters
│ │ │ ├── LogRotation_x64_vs140.vcxproj
│ │ │ ├── LogRotation_x64_vs140.vcxproj.filters
│ │ │ ├── LogRotation_x64_vs150.vcxproj
│ │ │ ├── LogRotation_x64_vs150.vcxproj.filters
│ │ │ ├── LogRotation_x64_vs90.vcproj
│ │ │ ├── Makefile
│ │ │ └── src
│ │ │ └── LogRotation.cpp
│ │ ├── Makefile
│ │ ├── md5
│ │ │ ├── CMakeLists.txt
│ │ │ ├── Makefile
│ │ │ ├── md5_CE_vs90.vcproj
│ │ │ ├── md5.progen
│ │ │ ├── md5_vs100.vcxproj
│ │ │ ├── md5_vs100.vcxproj.filters
│ │ │ ├── md5_vs110.vcxproj
│ │ │ ├── md5_vs110.vcxproj.filters
│ │ │ ├── md5_vs120.vcxproj
│ │ │ ├── md5_vs120.vcxproj.filters
│ │ │ ├── md5_vs140.vcxproj
│ │ │ ├── md5_vs140.vcxproj.filters
│ │ │ ├── md5_vs150.vcxproj
│ │ │ ├── md5_vs150.vcxproj.filters
│ │ │ ├── md5_vs90.vcproj
│ │ │ ├── md5_WEC2013_vs110.vcxproj
│ │ │ ├── md5_WEC2013_vs110.vcxproj.filters
│ │ │ ├── md5_WEC2013_vs120.vcxproj
│ │ │ ├── md5_WEC2013_vs120.vcxproj.filters
│ │ │ ├── md5_x64_vs100.vcxproj
│ │ │ ├── md5_x64_vs100.vcxproj.filters
│ │ │ ├── md5_x64_vs110.vcxproj
│ │ │ ├── md5_x64_vs110.vcxproj.filters
│ │ │ ├── md5_x64_vs120.vcxproj
│ │ │ ├── md5_x64_vs120.vcxproj.filters
│ │ │ ├── md5_x64_vs140.vcxproj
│ │ │ ├── md5_x64_vs140.vcxproj.filters
│ │ │ ├── md5_x64_vs150.vcxproj
│ │ │ ├── md5_x64_vs150.vcxproj.filters
│ │ │ ├── md5_x64_vs90.vcproj
│ │ │ └── src
│ │ │ └── md5.cpp
│ │ ├── NotificationQueue
│ │ │ ├── CMakeLists.txt
│ │ │ ├── Makefile
│ │ │ ├── NotificationQueue_CE_vs90.vcproj
│ │ │ ├── NotificationQueue.progen
│ │ │ ├── NotificationQueue_vs100.vcxproj
│ │ │ ├── NotificationQueue_vs100.vcxproj.filters
│ │ │ ├── NotificationQueue_vs110.vcxproj
│ │ │ ├── NotificationQueue_vs110.vcxproj.filters
│ │ │ ├── NotificationQueue_vs120.vcxproj
│ │ │ ├── NotificationQueue_vs120.vcxproj.filters
│ │ │ ├── NotificationQueue_vs140.vcxproj
│ │ │ ├── NotificationQueue_vs140.vcxproj.filters
│ │ │ ├── NotificationQueue_vs150.vcxproj
│ │ │ ├── NotificationQueue_vs150.vcxproj.filters
│ │ │ ├── NotificationQueue_vs90.vcproj
│ │ │ ├── NotificationQueue_WEC2013_vs110.vcxproj
│ │ │ ├── NotificationQueue_WEC2013_vs110.vcxproj.filters
│ │ │ ├── NotificationQueue_WEC2013_vs120.vcxproj
│ │ │ ├── NotificationQueue_WEC2013_vs120.vcxproj.filters
│ │ │ ├── NotificationQueue_x64_vs100.vcxproj
│ │ │ ├── NotificationQueue_x64_vs100.vcxproj.filters
│ │ │ ├── NotificationQueue_x64_vs110.vcxproj
│ │ │ ├── NotificationQueue_x64_vs110.vcxproj.filters
│ │ │ ├── NotificationQueue_x64_vs120.vcxproj
│ │ │ ├── NotificationQueue_x64_vs120.vcxproj.filters
│ │ │ ├── NotificationQueue_x64_vs140.vcxproj
│ │ │ ├── NotificationQueue_x64_vs140.vcxproj.filters
│ │ │ ├── NotificationQueue_x64_vs150.vcxproj
│ │ │ ├── NotificationQueue_x64_vs150.vcxproj.filters
│ │ │ ├── NotificationQueue_x64_vs90.vcproj
│ │ │ └── src
│ │ │ └── NotificationQueue.cpp
│ │ ├── samples_CE_vs90.sln
│ │ ├── samples.progen
│ │ ├── samples_vs100.sln
│ │ ├── samples_vs110.sln
│ │ ├── samples_vs120.sln
│ │ ├── samples_vs140.sln
│ │ ├── samples_vs150.sln
│ │ ├── samples_vs90.sln
│ │ ├── samples_WEC2013_vs110.sln
│ │ ├── samples_WEC2013_vs120.sln
│ │ ├── samples_x64_vs100.sln
│ │ ├── samples_x64_vs110.sln
│ │ ├── samples_x64_vs120.sln
│ │ ├── samples_x64_vs140.sln
│ │ ├── samples_x64_vs150.sln
│ │ ├── samples_x64_vs90.sln
│ │ ├── StringTokenizer
│ │ │ ├── CMakeLists.txt
│ │ │ ├── Makefile
│ │ │ ├── src
│ │ │ │ └── StringTokenizer.cpp
│ │ │ ├── StringTokenizer_CE_vs90.vcproj
│ │ │ ├── StringTokenizer.progen
│ │ │ ├── StringTokenizer_vs100.vcxproj
│ │ │ ├── StringTokenizer_vs100.vcxproj.filters
│ │ │ ├── StringTokenizer_vs110.vcxproj
│ │ │ ├── StringTokenizer_vs110.vcxproj.filters
│ │ │ ├── StringTokenizer_vs120.vcxproj
│ │ │ ├── StringTokenizer_vs120.vcxproj.filters
│ │ │ ├── StringTokenizer_vs140.vcxproj
│ │ │ ├── StringTokenizer_vs140.vcxproj.filters
│ │ │ ├── StringTokenizer_vs150.vcxproj
│ │ │ ├── StringTokenizer_vs150.vcxproj.filters
│ │ │ ├── StringTokenizer_vs90.vcproj
│ │ │ ├── StringTokenizer_WEC2013_vs110.vcxproj
│ │ │ ├── StringTokenizer_WEC2013_vs110.vcxproj.filters
│ │ │ ├── StringTokenizer_WEC2013_vs120.vcxproj
│ │ │ ├── StringTokenizer_WEC2013_vs120.vcxproj.filters
│ │ │ ├── StringTokenizer_x64_vs100.vcxproj
│ │ │ ├── StringTokenizer_x64_vs100.vcxproj.filters
│ │ │ ├── StringTokenizer_x64_vs110.vcxproj
│ │ │ ├── StringTokenizer_x64_vs110.vcxproj.filters
│ │ │ ├── StringTokenizer_x64_vs120.vcxproj
│ │ │ ├── StringTokenizer_x64_vs120.vcxproj.filters
│ │ │ ├── StringTokenizer_x64_vs140.vcxproj
│ │ │ ├── StringTokenizer_x64_vs140.vcxproj.filters
│ │ │ ├── StringTokenizer_x64_vs150.vcxproj
│ │ │ ├── StringTokenizer_x64_vs150.vcxproj.filters
│ │ │ └── StringTokenizer_x64_vs90.vcproj
│ │ ├── Timer
│ │ │ ├── CMakeLists.txt
│ │ │ ├── Makefile
│ │ │ ├── src
│ │ │ │ └── Timer.cpp
│ │ │ ├── Timer_CE_vs90.vcproj
│ │ │ ├── Timer.progen
│ │ │ ├── Timer_vs100.vcxproj
│ │ │ ├── Timer_vs100.vcxproj.filters
│ │ │ ├── Timer_vs110.vcxproj
│ │ │ ├── Timer_vs110.vcxproj.filters
│ │ │ ├── Timer_vs120.vcxproj
│ │ │ ├── Timer_vs120.vcxproj.filters
│ │ │ ├── Timer_vs140.vcxproj
│ │ │ ├── Timer_vs140.vcxproj.filters
│ │ │ ├── Timer_vs150.vcxproj
│ │ │ ├── Timer_vs150.vcxproj.filters
│ │ │ ├── Timer_vs90.vcproj
│ │ │ ├── Timer_WEC2013_vs110.vcxproj
│ │ │ ├── Timer_WEC2013_vs110.vcxproj.filters
│ │ │ ├── Timer_WEC2013_vs120.vcxproj
│ │ │ ├── Timer_WEC2013_vs120.vcxproj.filters
│ │ │ ├── Timer_x64_vs100.vcxproj
│ │ │ ├── Timer_x64_vs100.vcxproj.filters
│ │ │ ├── Timer_x64_vs110.vcxproj
│ │ │ ├── Timer_x64_vs110.vcxproj.filters
│ │ │ ├── Timer_x64_vs120.vcxproj
│ │ │ ├── Timer_x64_vs120.vcxproj.filters
│ │ │ ├── Timer_x64_vs140.vcxproj
│ │ │ ├── Timer_x64_vs140.vcxproj.filters
│ │ │ ├── Timer_x64_vs150.vcxproj
│ │ │ ├── Timer_x64_vs150.vcxproj.filters
│ │ │ └── Timer_x64_vs90.vcproj
│ │ ├── URI
│ │ │ ├── CMakeLists.txt
│ │ │ ├── Makefile
│ │ │ ├── src
│ │ │ │ └── URI.cpp
│ │ │ ├── URI_CE_vs90.vcproj
│ │ │ ├── URI.progen
│ │ │ ├── URI_vs100.vcxproj
│ │ │ ├── URI_vs100.vcxproj.filters
│ │ │ ├── URI_vs110.vcxproj
│ │ │ ├── URI_vs110.vcxproj.filters
│ │ │ ├── URI_vs120.vcxproj
│ │ │ ├── URI_vs120.vcxproj.filters
│ │ │ ├── URI_vs140.vcxproj
│ │ │ ├── URI_vs140.vcxproj.filters
│ │ │ ├── URI_vs150.vcxproj
│ │ │ ├── URI_vs150.vcxproj.filters
│ │ │ ├── URI_vs90.vcproj
│ │ │ ├── URI_WEC2013_vs110.vcxproj
│ │ │ ├── URI_WEC2013_vs110.vcxproj.filters
│ │ │ ├── URI_WEC2013_vs120.vcxproj
│ │ │ ├── URI_WEC2013_vs120.vcxproj.filters
│ │ │ ├── URI_x64_vs100.vcxproj
│ │ │ ├── URI_x64_vs100.vcxproj.filters
│ │ │ ├── URI_x64_vs110.vcxproj
│ │ │ ├── URI_x64_vs110.vcxproj.filters
│ │ │ ├── URI_x64_vs120.vcxproj
│ │ │ ├── URI_x64_vs120.vcxproj.filters
│ │ │ ├── URI_x64_vs140.vcxproj
│ │ │ ├── URI_x64_vs140.vcxproj.filters
│ │ │ ├── URI_x64_vs150.vcxproj
│ │ │ ├── URI_x64_vs150.vcxproj.filters
│ │ │ └── URI_x64_vs90.vcproj
│ │ └── uuidgen
│ │ ├── CMakeLists.txt
│ │ ├── Makefile
│ │ ├── src
│ │ │ └── uuidgen.cpp
│ │ ├── uuidgen_CE_vs90.vcproj
│ │ ├── uuidgen.progen
│ │ ├── uuidgen_vs100.vcxproj
│ │ ├── uuidgen_vs100.vcxproj.filters
│ │ ├── uuidgen_vs110.vcxproj
│ │ ├── uuidgen_vs110.vcxproj.filters
│ │ ├── uuidgen_vs120.vcxproj
│ │ ├── uuidgen_vs120.vcxproj.filters
│ │ ├── uuidgen_vs140.vcxproj
│ │ ├── uuidgen_vs140.vcxproj.filters
│ │ ├── uuidgen_vs150.vcxproj
│ │ ├── uuidgen_vs150.vcxproj.filters
│ │ ├── uuidgen_vs90.vcproj
│ │ ├── uuidgen_WEC2013_vs110.vcxproj
│ │ ├── uuidgen_WEC2013_vs110.vcxproj.filters
│ │ ├── uuidgen_WEC2013_vs120.vcxproj
│ │ ├── uuidgen_WEC2013_vs120.vcxproj.filters
│ │ ├── uuidgen_x64_vs100.vcxproj
│ │ ├── uuidgen_x64_vs100.vcxproj.filters
│ │ ├── uuidgen_x64_vs110.vcxproj
│ │ ├── uuidgen_x64_vs110.vcxproj.filters
│ │ ├── uuidgen_x64_vs120.vcxproj
│ │ ├── uuidgen_x64_vs120.vcxproj.filters
│ │ ├── uuidgen_x64_vs140.vcxproj
│ │ ├── uuidgen_x64_vs140.vcxproj.filters
│ │ ├── uuidgen_x64_vs150.vcxproj
│ │ ├── uuidgen_x64_vs150.vcxproj.filters
│ │ └── uuidgen_x64_vs90.vcproj
│ ├── src
│ │ ├── AbstractObserver.cpp
│ │ ├── ActiveDispatcher.cpp
│ │ ├── adler32.c
│ │ ├── ArchiveStrategy.cpp
│ │ ├── Ascii.cpp
│ │ ├── ASCIIEncoding.cpp
│ │ ├── AsyncChannel.cpp
│ │ ├── AtomicCounter.cpp
│ │ ├── Base32Decoder.cpp
│ │ ├── Base32Encoder.cpp
│ │ ├── Base64Decoder.cpp
│ │ ├── Base64Encoder.cpp
│ │ ├── bignum.cc
│ │ ├── bignum-dtoa.cc
│ │ ├── bignum-dtoa.h
│ │ ├── bignum.h
│ │ ├── BinaryReader.cpp
│ │ ├── BinaryWriter.cpp
│ │ ├── Bugcheck.cpp
│ │ ├── ByteOrder.cpp
│ │ ├── cached-powers.cc
│ │ ├── cached-powers.h
│ │ ├── Channel.cpp
│ │ ├── Checksum.cpp
│ │ ├── Clock.cpp
│ │ ├── compress.c
│ │ ├── Condition.cpp
│ │ ├── Configurable.cpp
│ │ ├── ConsoleChannel.cpp
│ │ ├── CountingStream.cpp
│ │ ├── crc32.c
│ │ ├── crc32.h
│ │ ├── DateTime.cpp
│ │ ├── DateTimeFormat.cpp
│ │ ├── DateTimeFormatter.cpp
│ │ ├── DateTimeParser.cpp
│ │ ├── Debugger.cpp
│ │ ├── deflate.c
│ │ ├── deflate.h
│ │ ├── DeflatingStream.cpp
│ │ ├── DigestEngine.cpp
│ │ ├── DigestStream.cpp
│ │ ├── DirectoryIterator.cpp
│ │ ├── DirectoryIteratorStrategy.cpp
│ │ ├── DirectoryIterator_UNIX.cpp
│ │ ├── DirectoryIterator_WIN32.cpp
│ │ ├── DirectoryIterator_WIN32U.cpp
│ │ ├── DirectoryWatcher.cpp
│ │ ├── diy-fp.cc
│ │ ├── diy-fp.h
│ │ ├── double-conversion.cc
│ │ ├── double-conversion.h
│ │ ├── Environment.cpp
│ │ ├── Environment_UNIX.cpp
│ │ ├── Environment_VX.cpp
│ │ ├── Environment_WIN32.cpp
│ │ ├── Environment_WIN32U.cpp
│ │ ├── Environment_WINCE.cpp
│ │ ├── Error.cpp
│ │ ├── ErrorHandler.cpp
│ │ ├── EventArgs.cpp
│ │ ├── EventChannel.cpp
│ │ ├── Event.cpp
│ │ ├── EventLogChannel.cpp
│ │ ├── Event_POSIX.cpp
│ │ ├── Event_VX.cpp
│ │ ├── Event_WIN32.cpp
│ │ ├── Exception.cpp
│ │ ├── fast-dtoa.cc
│ │ ├── fast-dtoa.h
│ │ ├── FIFOBufferStream.cpp
│ │ ├── FileChannel.cpp
│ │ ├── File.cpp
│ │ ├── FileStream.cpp
│ │ ├── FileStreamFactory.cpp
│ │ ├── FileStream_POSIX.cpp
│ │ ├── FileStream_WIN32.cpp
│ │ ├── File_UNIX.cpp
│ │ ├── File_VX.cpp
│ │ ├── File_WIN32.cpp
│ │ ├── File_WIN32U.cpp
│ │ ├── File_WINCE.cpp
│ │ ├── fixed-dtoa.cc
│ │ ├── fixed-dtoa.h
│ │ ├── Format.cpp
│ │ ├── Formatter.cpp
│ │ ├── FormattingChannel.cpp
│ │ ├── FPEnvironment_C99.cpp
│ │ ├── FPEnvironment.cpp
│ │ ├── FPEnvironment_DEC.cpp
│ │ ├── FPEnvironment_DUMMY.cpp
│ │ ├── FPEnvironment_QNX.cpp
│ │ ├── FPEnvironment_SUN.cpp
│ │ ├── FPEnvironment_WIN32.cpp
│ │ ├── Glob.cpp
│ │ ├── gzguts.h
│ │ ├── Hash.cpp
│ │ ├── HashStatistic.cpp
│ │ ├── HexBinaryDecoder.cpp
│ │ ├── HexBinaryEncoder.cpp
│ │ ├── ieee.h
│ │ ├── infback.c
│ │ ├── inffast.c
│ │ ├── inffast.h
│ │ ├── inffixed.h
│ │ ├── inflate.c
│ │ ├── inflate.h
│ │ ├── InflatingStream.cpp
│ │ ├── inftrees.c
│ │ ├── inftrees.h
│ │ ├── JSONString.cpp
│ │ ├── Latin1Encoding.cpp
│ │ ├── Latin2Encoding.cpp
│ │ ├── Latin9Encoding.cpp
│ │ ├── LineEndingConverter.cpp
│ │ ├── LocalDateTime.cpp
│ │ ├── LogFile.cpp
│ │ ├── LogFile_STD.cpp
│ │ ├── LogFile_WIN32.cpp
│ │ ├── LogFile_WIN32U.cpp
│ │ ├── Logger.cpp
│ │ ├── LoggingFactory.cpp
│ │ ├── LoggingRegistry.cpp
│ │ ├── LogStream.cpp
│ │ ├── Manifest.cpp
│ │ ├── MD4Engine.cpp
│ │ ├── MD5Engine.cpp
│ │ ├── MemoryPool.cpp
│ │ ├── MemoryStream.cpp
│ │ ├── Message.cpp
│ │ ├── MSG00001.bin
│ │ ├── Mutex.cpp
│ │ ├── Mutex_POSIX.cpp
│ │ ├── Mutex_VX.cpp
│ │ ├── Mutex_WIN32.cpp
│ │ ├── Mutex_WINCE.cpp
│ │ ├── NamedEvent_Android.cpp
│ │ ├── NamedEvent.cpp
│ │ ├── NamedEvent_UNIX.cpp
│ │ ├── NamedEvent_WIN32.cpp
│ │ ├── NamedEvent_WIN32U.cpp
│ │ ├── NamedMutex_Android.cpp
│ │ ├── NamedMutex.cpp
│ │ ├── NamedMutex_UNIX.cpp
│ │ ├── NamedMutex_WIN32.cpp
│ │ ├── NamedMutex_WIN32U.cpp
│ │ ├── NestedDiagnosticContext.cpp
│ │ ├── NotificationCenter.cpp
│ │ ├── Notification.cpp
│ │ ├── NotificationQueue.cpp
│ │ ├── NullChannel.cpp
│ │ ├── NullStream.cpp
│ │ ├── NumberFormatter.cpp
│ │ ├── NumberParser.cpp
│ │ ├── NumericString.cpp
│ │ ├── Path.cpp
│ │ ├── Path_UNIX.cpp
│ │ ├── Path_WIN32.cpp
│ │ ├── Path_WIN32U.cpp
│ │ ├── Path_WINCE.cpp
│ │ ├── PatternFormatter.cpp
│ │ ├── pcre_byte_order.c
│ │ ├── pcre_chartables.c
│ │ ├── pcre_compile.c
│ │ ├── pcre_config.c
│ │ ├── pcre_config.h
│ │ ├── pcre_dfa_exec.c
│ │ ├── pcre_exec.c
│ │ ├── pcre_fullinfo.c
│ │ ├── pcre_get.c
│ │ ├── pcre_globals.c
│ │ ├── pcre.h
│ │ ├── pcre_internal.h
│ │ ├── pcre_jit_compile.c
│ │ ├── pcre_maketables.c
│ │ ├── pcre_newline.c
│ │ ├── pcre_ord2utf8.c
│ │ ├── pcre_refcount.c
│ │ ├── pcre_string_utils.c
│ │ ├── pcre_study.c
│ │ ├── pcre_tables.c
│ │ ├── pcre_ucd.c
│ │ ├── pcre_valid_utf8.c
│ │ ├── pcre_version.c
│ │ ├── pcre_xclass.c
│ │ ├── Pipe.cpp
│ │ ├── PipeImpl.cpp
│ │ ├── PipeImpl_DUMMY.cpp
│ │ ├── PipeImpl_POSIX.cpp
│ │ ├── PipeImpl_WIN32.cpp
│ │ ├── PipeStream.cpp
│ │ ├── pocomsg.mc
│ │ ├── PriorityNotificationQueue.cpp
│ │ ├── Process.cpp
│ │ ├── Process_UNIX.cpp
│ │ ├── Process_VX.cpp
│ │ ├── Process_WIN32.cpp
│ │ ├── Process_WIN32U.cpp
│ │ ├── Process_WINCE.cpp
│ │ ├── PurgeStrategy.cpp
│ │ ├── Random.cpp
│ │ ├── RandomStream.cpp
│ │ ├── RefCountedObject.cpp
│ │ ├── RegularExpression.cpp
│ │ ├── RotateStrategy.cpp
│ │ ├── Runnable.cpp
│ │ ├── RWLock_Android.cpp
│ │ ├── RWLock.cpp
│ │ ├── RWLock_POSIX.cpp
│ │ ├── RWLock_VX.cpp
│ │ ├── RWLock_WIN32.cpp
│ │ ├── RWLock_WINCE.cpp
│ │ ├── Semaphore.cpp
│ │ ├── Semaphore_POSIX.cpp
│ │ ├── Semaphore_VX.cpp
│ │ ├── Semaphore_WIN32.cpp
│ │ ├── SHA1Engine.cpp
│ │ ├── SharedLibrary.cpp
│ │ ├── SharedLibrary_HPUX.cpp
│ │ ├── SharedLibrary_UNIX.cpp
│ │ ├── SharedLibrary_VX.cpp
│ │ ├── SharedLibrary_WIN32.cpp
│ │ ├── SharedLibrary_WIN32U.cpp
│ │ ├── SharedMemory.cpp
│ │ ├── SharedMemory_DUMMY.cpp
│ │ ├── SharedMemory_POSIX.cpp
│ │ ├── SharedMemory_WIN32.cpp
│ │ ├── SignalHandler.cpp
│ │ ├── SimpleFileChannel.cpp
│ │ ├── SortedDirectoryIterator.cpp
│ │ ├── SplitterChannel.cpp
│ │ ├── Stopwatch.cpp
│ │ ├── StreamChannel.cpp
│ │ ├── StreamConverter.cpp
│ │ ├── StreamCopier.cpp
│ │ ├── StreamTokenizer.cpp
│ │ ├── String.cpp
│ │ ├── StringTokenizer.cpp
│ │ ├── strtod.cc
│ │ ├── strtod.h
│ │ ├── SynchronizedObject.cpp
│ │ ├── SyslogChannel.cpp
│ │ ├── Task.cpp
│ │ ├── TaskManager.cpp
│ │ ├── TaskNotification.cpp
│ │ ├── TeeStream.cpp
│ │ ├── TemporaryFile.cpp
│ │ ├── TextBufferIterator.cpp
│ │ ├── TextConverter.cpp
│ │ ├── TextEncoding.cpp
│ │ ├── TextIterator.cpp
│ │ ├── Thread.cpp
│ │ ├── ThreadLocal.cpp
│ │ ├── ThreadPool.cpp
│ │ ├── Thread_POSIX.cpp
│ │ ├── ThreadTarget.cpp
│ │ ├── Thread_VX.cpp
│ │ ├── Thread_WIN32.cpp
│ │ ├── Thread_WINCE.cpp
│ │ ├── TimedNotificationQueue.cpp
│ │ ├── Timer.cpp
│ │ ├── Timespan.cpp
│ │ ├── Timestamp.cpp
│ │ ├── Timezone.cpp
│ │ ├── Timezone_UNIX.cpp
│ │ ├── Timezone_VX.cpp
│ │ ├── Timezone_WIN32.cpp
│ │ ├── Timezone_WINCE.cpp
│ │ ├── Token.cpp
│ │ ├── trees.c
│ │ ├── trees.h
│ │ ├── ucp.h
│ │ ├── UnicodeConverter.cpp
│ │ ├── Unicode.cpp
│ │ ├── URI.cpp
│ │ ├── URIStreamFactory.cpp
│ │ ├── URIStreamOpener.cpp
│ │ ├── UTF16Encoding.cpp
│ │ ├── UTF32Encoding.cpp
│ │ ├── UTF8Encoding.cpp
│ │ ├── UTF8String.cpp
│ │ ├── utils.h
│ │ ├── UUID.cpp
│ │ ├── UUIDGenerator.cpp
│ │ ├── Var.cpp
│ │ ├── VarHolder.cpp
│ │ ├── VarIterator.cpp
│ │ ├── Void.cpp
│ │ ├── Windows1250Encoding.cpp
│ │ ├── Windows1251Encoding.cpp
│ │ ├── Windows1252Encoding.cpp
│ │ ├── WindowsConsoleChannel.cpp
│ │ ├── zconf.h
│ │ ├── zlib.h
│ │ ├── zutil.c
│ │ └── zutil.h
│ ├── testsuite
│ │ ├── CMakeLists.txt
│ │ ├── data
│ │ │ └── testdata.txt
│ │ ├── Makefile
│ │ ├── Makefile-Driver
│ │ ├── Makefile-TestApp
│ │ ├── Makefile-TestLibrary
│ │ ├── src
│ │ │ ├── ActiveDispatcherTest.cpp
│ │ │ ├── ActiveDispatcherTest.h
│ │ │ ├── ActiveMethodTest.cpp
│ │ │ ├── ActiveMethodTest.h
│ │ │ ├── ActivityTest.cpp
│ │ │ ├── ActivityTest.h
│ │ │ ├── AnyTest.cpp
│ │ │ ├── AnyTest.h
│ │ │ ├── ArrayTest.cpp
│ │ │ ├── ArrayTest.h
│ │ │ ├── AutoPtrTest.cpp
│ │ │ ├── AutoPtrTest.h
│ │ │ ├── AutoReleasePoolTest.cpp
│ │ │ ├── AutoReleasePoolTest.h
│ │ │ ├── Base32Test.cpp
│ │ │ ├── Base32Test.h
│ │ │ ├── Base64Test.cpp
│ │ │ ├── Base64Test.h
│ │ │ ├── BasicEventTest.cpp
│ │ │ ├── BasicEventTest.h
│ │ │ ├── BinaryReaderWriterTest.cpp
│ │ │ ├── BinaryReaderWriterTest.h
│ │ │ ├── ByteOrderTest.cpp
│ │ │ ├── ByteOrderTest.h
│ │ │ ├── CacheTestSuite.cpp
│ │ │ ├── CacheTestSuite.h
│ │ │ ├── ChannelTest.cpp
│ │ │ ├── ChannelTest.h
│ │ │ ├── ClassLoaderTest.cpp
│ │ │ ├── ClassLoaderTest.h
│ │ │ ├── ClockTest.cpp
│ │ │ ├── ClockTest.h
│ │ │ ├── ConditionTest.cpp
│ │ │ ├── ConditionTest.h
│ │ │ ├── CoreTest.cpp
│ │ │ ├── CoreTest.h
│ │ │ ├── CoreTestSuite.cpp
│ │ │ ├── CoreTestSuite.h
│ │ │ ├── CountingStreamTest.cpp
│ │ │ ├── CountingStreamTest.h
│ │ │ ├── CryptTestSuite.cpp
│ │ │ ├── CryptTestSuite.h
│ │ │ ├── DateTimeFormatterTest.cpp
│ │ │ ├── DateTimeFormatterTest.h
│ │ │ ├── DateTimeParserTest.cpp
│ │ │ ├── DateTimeParserTest.h
│ │ │ ├── DateTimeTest.cpp
│ │ │ ├── DateTimeTest.h
│ │ │ ├── DateTimeTestSuite.cpp
│ │ │ ├── DateTimeTestSuite.h
│ │ │ ├── DigestStreamTest.cpp
│ │ │ ├── DigestStreamTest.h
│ │ │ ├── DirectoryIteratorsTest.cpp
│ │ │ ├── DirectoryIteratorsTest.h
│ │ │ ├── DirectoryWatcherTest.cpp
│ │ │ ├── DirectoryWatcherTest.h
│ │ │ ├── Driver.cpp
│ │ │ ├── DummyDelegate.cpp
│ │ │ ├── DummyDelegate.h
│ │ │ ├── DynamicFactoryTest.cpp
│ │ │ ├── DynamicFactoryTest.h
│ │ │ ├── DynamicTestSuite.cpp
│ │ │ ├── DynamicTestSuite.h
│ │ │ ├── EventTestSuite.cpp
│ │ │ ├── EventTestSuite.h
│ │ │ ├── ExpireCacheTest.cpp
│ │ │ ├── ExpireCacheTest.h
│ │ │ ├── ExpireLRUCacheTest.cpp
│ │ │ ├── ExpireLRUCacheTest.h
│ │ │ ├── FIFOBufferStreamTest.cpp
│ │ │ ├── FIFOBufferStreamTest.h
│ │ │ ├── FIFOEventTest.cpp
│ │ │ ├── FIFOEventTest.h
│ │ │ ├── FileChannelTest.cpp
│ │ │ ├── FileChannelTest.h
│ │ │ ├── FileStreamTest.cpp
│ │ │ ├── FileStreamTest.h
│ │ │ ├── FilesystemTestSuite.cpp
│ │ │ ├── FilesystemTestSuite.h
│ │ │ ├── FileTest.cpp
│ │ │ ├── FileTest.h
│ │ │ ├── FormatTest.cpp
│ │ │ ├── FormatTest.h
│ │ │ ├── FoundationTestSuite.cpp
│ │ │ ├── FoundationTestSuite.h
│ │ │ ├── FPETest.cpp
│ │ │ ├── FPETest.h
│ │ │ ├── GlobTest.cpp
│ │ │ ├── GlobTest.h
│ │ │ ├── HashingTestSuite.cpp
│ │ │ ├── HashingTestSuite.h
│ │ │ ├── HashMapTest.cpp
│ │ │ ├── HashMapTest.h
│ │ │ ├── HashSetTest.cpp
│ │ │ ├── HashSetTest.h
│ │ │ ├── HashTableTest.cpp
│ │ │ ├── HashTableTest.h
│ │ │ ├── HexBinaryTest.cpp
│ │ │ ├── HexBinaryTest.h
│ │ │ ├── HMACEngineTest.cpp
│ │ │ ├── HMACEngineTest.h
│ │ │ ├── LinearHashTableTest.cpp
│ │ │ ├── LinearHashTableTest.h
│ │ │ ├── LineEndingConverterTest.cpp
│ │ │ ├── LineEndingConverterTest.h
│ │ │ ├── ListMapTest.cpp
│ │ │ ├── ListMapTest.h
│ │ │ ├── LocalDateTimeTest.cpp
│ │ │ ├── LocalDateTimeTest.h
│ │ │ ├── LoggerTest.cpp
│ │ │ ├── LoggerTest.h
│ │ │ ├── LoggingFactoryTest.cpp
│ │ │ ├── LoggingFactoryTest.h
│ │ │ ├── LoggingRegistryTest.cpp
│ │ │ ├── LoggingRegistryTest.h
│ │ │ ├── LoggingTestSuite.cpp
│ │ │ ├── LoggingTestSuite.h
│ │ │ ├── LogStreamTest.cpp
│ │ │ ├── LogStreamTest.h
│ │ │ ├── LRUCacheTest.cpp
│ │ │ ├── LRUCacheTest.h
│ │ │ ├── ManifestTest.cpp
│ │ │ ├── ManifestTest.h
│ │ │ ├── MD4EngineTest.cpp
│ │ │ ├── MD4EngineTest.h
│ │ │ ├── MD5EngineTest.cpp
│ │ │ ├── MD5EngineTest.h
│ │ │ ├── MemoryPoolTest.cpp
│ │ │ ├── MemoryPoolTest.h
│ │ │ ├── MemoryStreamTest.cpp
│ │ │ ├── MemoryStreamTest.h
│ │ │ ├── NamedEventTest.cpp
│ │ │ ├── NamedEventTest.h
│ │ │ ├── NamedMutexTest.cpp
│ │ │ ├── NamedMutexTest.h
│ │ │ ├── NamedTuplesTest.cpp
│ │ │ ├── NamedTuplesTest.h
│ │ │ ├── NDCTest.cpp
│ │ │ ├── NDCTest.h
│ │ │ ├── NotificationCenterTest.cpp
│ │ │ ├── NotificationCenterTest.h
│ │ │ ├── NotificationQueueTest.cpp
│ │ │ ├── NotificationQueueTest.h
│ │ │ ├── NotificationsTestSuite.cpp
│ │ │ ├── NotificationsTestSuite.h
│ │ │ ├── NullStreamTest.cpp
│ │ │ ├── NullStreamTest.h
│ │ │ ├── NumberFormatterTest.cpp
│ │ │ ├── NumberFormatterTest.h
│ │ │ ├── NumberParserTest.cpp
│ │ │ ├── NumberParserTest.h
│ │ │ ├── ObjectPoolTest.cpp
│ │ │ ├── ObjectPoolTest.h
│ │ │ ├── PathTest.cpp
│ │ │ ├── PathTest.h
│ │ │ ├── PatternFormatterTest.cpp
│ │ │ ├── PatternFormatterTest.h
│ │ │ ├── PBKDF2EngineTest.cpp
│ │ │ ├── PBKDF2EngineTest.h
│ │ │ ├── PriorityEventTest.cpp
│ │ │ ├── PriorityEventTest.h
│ │ │ ├── PriorityNotificationQueueTest.cpp
│ │ │ ├── PriorityNotificationQueueTest.h
│ │ │ ├── ProcessesTestSuite.cpp
│ │ │ ├── ProcessesTestSuite.h
│ │ │ ├── ProcessTest.cpp
│ │ │ ├── ProcessTest.h
│ │ │ ├── RandomStreamTest.cpp
│ │ │ ├── RandomStreamTest.h
│ │ │ ├── RandomTest.cpp
│ │ │ ├── RandomTest.h
│ │ │ ├── RegularExpressionTest.cpp
│ │ │ ├── RegularExpressionTest.h
│ │ │ ├── RWLockTest.cpp
│ │ │ ├── RWLockTest.h
│ │ │ ├── SemaphoreTest.cpp
│ │ │ ├── SemaphoreTest.h
│ │ │ ├── SHA1EngineTest.cpp
│ │ │ ├── SHA1EngineTest.h
│ │ │ ├── SharedLibraryTest.cpp
│ │ │ ├── SharedLibraryTest.h
│ │ │ ├── SharedLibraryTestSuite.cpp
│ │ │ ├── SharedLibraryTestSuite.h
│ │ │ ├── SharedMemoryTest.cpp
│ │ │ ├── SharedMemoryTest.h
│ │ │ ├── SharedPtrTest.cpp
│ │ │ ├── SharedPtrTest.h
│ │ │ ├── SimpleFileChannelTest.cpp
│ │ │ ├── SimpleFileChannelTest.h
│ │ │ ├── SimpleHashTableTest.cpp
│ │ │ ├── SimpleHashTableTest.h
│ │ │ ├── StopwatchTest.cpp
│ │ │ ├── StopwatchTest.h
│ │ │ ├── StreamConverterTest.cpp
│ │ │ ├── StreamConverterTest.h
│ │ │ ├── StreamCopierTest.cpp
│ │ │ ├── StreamCopierTest.h
│ │ │ ├── StreamsTestSuite.cpp
│ │ │ ├── StreamsTestSuite.h
│ │ │ ├── StreamTokenizerTest.cpp
│ │ │ ├── StreamTokenizerTest.h
│ │ │ ├── StringTest.cpp
│ │ │ ├── StringTest.h
│ │ │ ├── StringTokenizerTest.cpp
│ │ │ ├── StringTokenizerTest.h
│ │ │ ├── TaskManagerTest.cpp
│ │ │ ├── TaskManagerTest.h
│ │ │ ├── TaskTest.cpp
│ │ │ ├── TaskTest.h
│ │ │ ├── TaskTestSuite.cpp
│ │ │ ├── TaskTestSuite.h
│ │ │ ├── TeeStreamTest.cpp
│ │ │ ├── TeeStreamTest.h
│ │ │ ├── TestApp.cpp
│ │ │ ├── TestApp_WINCE.cpp
│ │ │ ├── TestChannel.cpp
│ │ │ ├── TestChannel.h
│ │ │ ├── TestLibrary.cpp
│ │ │ ├── TestPlugin.cpp
│ │ │ ├── TestPlugin.h
│ │ │ ├── TextBufferIteratorTest.cpp
│ │ │ ├── TextBufferIteratorTest.h
│ │ │ ├── TextConverterTest.cpp
│ │ │ ├── TextConverterTest.h
│ │ │ ├── TextEncodingTest.cpp
│ │ │ ├── TextEncodingTest.h
│ │ │ ├── TextIteratorTest.cpp
│ │ │ ├── TextIteratorTest.h
│ │ │ ├── TextTestSuite.cpp
│ │ │ ├── TextTestSuite.h
│ │ │ ├── ThreadingTestSuite.cpp
│ │ │ ├── ThreadingTestSuite.h
│ │ │ ├── ThreadLocalTest.cpp
│ │ │ ├── ThreadLocalTest.h
│ │ │ ├── ThreadPoolTest.cpp
│ │ │ ├── ThreadPoolTest.h
│ │ │ ├── ThreadTest.cpp
│ │ │ ├── ThreadTest.h
│ │ │ ├── TimedNotificationQueueTest.cpp
│ │ │ ├── TimedNotificationQueueTest.h
│ │ │ ├── TimerTest.cpp
│ │ │ ├── TimerTest.h
│ │ │ ├── TimespanTest.cpp
│ │ │ ├── TimespanTest.h
│ │ │ ├── TimestampTest.cpp
│ │ │ ├── TimestampTest.h
│ │ │ ├── TimezoneTest.cpp
│ │ │ ├── TimezoneTest.h
│ │ │ ├── TuplesTest.cpp
│ │ │ ├── TuplesTest.h
│ │ │ ├── TypeListTest.cpp
│ │ │ ├── TypeListTest.h
│ │ │ ├── UnicodeConverterTest.cpp
│ │ │ ├── UnicodeConverterTest.h
│ │ │ ├── UniqueExpireCacheTest.cpp
│ │ │ ├── UniqueExpireCacheTest.h
│ │ │ ├── UniqueExpireLRUCacheTest.cpp
│ │ │ ├── UniqueExpireLRUCacheTest.h
│ │ │ ├── URIStreamOpenerTest.cpp
│ │ │ ├── URIStreamOpenerTest.h
│ │ │ ├── URITest.cpp
│ │ │ ├── URITest.h
│ │ │ ├── URITestSuite.cpp
│ │ │ ├── URITestSuite.h
│ │ │ ├── UTF8StringTest.cpp
│ │ │ ├── UTF8StringTest.h
│ │ │ ├── UUIDGeneratorTest.cpp
│ │ │ ├── UUIDGeneratorTest.h
│ │ │ ├── UUIDTest.cpp
│ │ │ ├── UUIDTest.h
│ │ │ ├── UUIDTestSuite.cpp
│ │ │ ├── UUIDTestSuite.h
│ │ │ ├── VarTest.cpp
│ │ │ ├── VarTest.h
│ │ │ ├── WinCEDriver.cpp
│ │ │ ├── WinDriver.cpp
│ │ │ ├── ZLibTest.cpp
│ │ │ └── ZLibTest.h
│ │ ├── TestApp_CE_vs90.vcproj
│ │ ├── TestApp_vs100.vcxproj
│ │ ├── TestApp_vs100.vcxproj.filters
│ │ ├── TestApp_vs110.vcxproj
│ │ ├── TestApp_vs110.vcxproj.filters
│ │ ├── TestApp_vs120.vcxproj
│ │ ├── TestApp_vs120.vcxproj.filters
│ │ ├── TestApp_vs140.vcxproj
│ │ ├── TestApp_vs140.vcxproj.filters
│ │ ├── TestApp_vs150.vcxproj
│ │ ├── TestApp_vs150.vcxproj.filters
│ │ ├── TestApp_vs90.vcproj
│ │ ├── TestApp_WEC2013_vs110.vcxproj
│ │ ├── TestApp_WEC2013_vs110.vcxproj.filters
│ │ ├── TestApp_WEC2013_vs120.vcxproj
│ │ ├── TestApp_WEC2013_vs120.vcxproj.filters
│ │ ├── TestApp_x64_vs100.vcxproj
│ │ ├── TestApp_x64_vs100.vcxproj.filters
│ │ ├── TestApp_x64_vs110.vcxproj
│ │ ├── TestApp_x64_vs110.vcxproj.filters
│ │ ├── TestApp_x64_vs120.vcxproj
│ │ ├── TestApp_x64_vs120.vcxproj.filters
│ │ ├── TestApp_x64_vs140.vcxproj
│ │ ├── TestApp_x64_vs140.vcxproj.filters
│ │ ├── TestApp_x64_vs150.vcxproj
│ │ ├── TestApp_x64_vs150.vcxproj.filters
│ │ ├── TestApp_x64_vs90.vcproj
│ │ ├── TestLibrary_CE_vs90.vcproj
│ │ ├── testlibrary.opt
│ │ ├── TestLibrary_vs100.vcxproj
│ │ ├── TestLibrary_vs100.vcxproj.filters
│ │ ├── TestLibrary_vs110.vcxproj
│ │ ├── TestLibrary_vs110.vcxproj.filters
│ │ ├── TestLibrary_vs120.vcxproj
│ │ ├── TestLibrary_vs120.vcxproj.filters
│ │ ├── TestLibrary_vs140.vcxproj
│ │ ├── TestLibrary_vs140.vcxproj.filters
│ │ ├── TestLibrary_vs150.vcxproj
│ │ ├── TestLibrary_vs150.vcxproj.filters
│ │ ├── TestLibrary_vs90.vcproj
│ │ ├── TestLibrary_WEC2013_vs110.vcxproj
│ │ ├── TestLibrary_WEC2013_vs110.vcxproj.filters
│ │ ├── TestLibrary_WEC2013_vs120.vcxproj
│ │ ├── TestLibrary_WEC2013_vs120.vcxproj.filters
│ │ ├── TestLibrary_x64_vs100.vcxproj
│ │ ├── TestLibrary_x64_vs100.vcxproj.filters
│ │ ├── TestLibrary_x64_vs110.vcxproj
│ │ ├── TestLibrary_x64_vs110.vcxproj.filters
│ │ ├── TestLibrary_x64_vs120.vcxproj
│ │ ├── TestLibrary_x64_vs120.vcxproj.filters
│ │ ├── TestLibrary_x64_vs140.vcxproj
│ │ ├── TestLibrary_x64_vs140.vcxproj.filters
│ │ ├── TestLibrary_x64_vs150.vcxproj
│ │ ├── TestLibrary_x64_vs150.vcxproj.filters
│ │ ├── TestLibrary_x64_vs90.vcproj
│ │ ├── TestSuite_CE_vs90.vcproj
│ │ ├── TestSuite.progen
│ │ ├── TestSuite_vs100.vcxproj
│ │ ├── TestSuite_vs100.vcxproj.filters
│ │ ├── TestSuite_vs110.vcxproj
│ │ ├── TestSuite_vs110.vcxproj.filters
│ │ ├── TestSuite_vs120.vcxproj
│ │ ├── TestSuite_vs120.vcxproj.filters
│ │ ├── TestSuite_vs140.vcxproj
│ │ ├── TestSuite_vs140.vcxproj.filters
│ │ ├── TestSuite_vs150.vcxproj
│ │ ├── TestSuite_vs150.vcxproj.filters
│ │ ├── TestSuite_vs90.vcproj
│ │ ├── TestSuite_WEC2013_vs110.vcxproj
│ │ ├── TestSuite_WEC2013_vs110.vcxproj.filters
│ │ ├── TestSuite_WEC2013_vs120.vcxproj
│ │ ├── TestSuite_WEC2013_vs120.vcxproj.filters
│ │ ├── TestSuite_x64_vs100.vcxproj
│ │ ├── TestSuite_x64_vs100.vcxproj.filters
│ │ ├── TestSuite_x64_vs110.vcxproj
│ │ ├── TestSuite_x64_vs110.vcxproj.filters
│ │ ├── TestSuite_x64_vs120.vcxproj
│ │ ├── TestSuite_x64_vs120.vcxproj.filters
│ │ ├── TestSuite_x64_vs140.vcxproj
│ │ ├── TestSuite_x64_vs140.vcxproj.filters
│ │ ├── TestSuite_x64_vs150.vcxproj
│ │ ├── TestSuite_x64_vs150.vcxproj.filters
│ │ └── TestSuite_x64_vs90.vcproj
│ └── wcelibcex-1.0
│ ├── AUTHORS.txt
│ ├── BUILD.txt
│ ├── COPYING.txt
│ ├── LICENSE.txt
│ ├── msvc80
│ │ ├── wcelibcex_lib.sln
│ │ ├── wcelibcex_lib.vcproj
│ │ └── wcelibcex.vsprops
│ ├── README.txt
│ └── src
│ ├── errno.h
│ ├── fcntl.h
│ ├── wce_abort.c
│ ├── wce_access.c
│ ├── wce_asctime.c
│ ├── wce_bsearch.c
│ ├── wce_clock.c
│ ├── wce_ctime.c
│ ├── wce_direct.h
│ ├── wce_directorymanagement.c
│ ├── wce_errno.c
│ ├── wce_errno.h
│ ├── wce_fcntl.h
│ ├── wce_findfile.c
│ ├── wce_getenv.c
│ ├── wce_getopt.c
│ ├── wce_gettimeofday.c
│ ├── wce_io.h
│ ├── wce_lfind.c
│ ├── wce_localtime.c
│ ├── wce_mkdir.c
│ ├── wce_mktime.c
│ ├── wce_path.c
│ ├── wce_rename.c
│ ├── wce_rewind.c
│ ├── wce_rmdir.c
│ ├── wce_setlocale.c
│ ├── wce_stat.c
│ ├── wce_stat.h
│ ├── wce_stdio.h
│ ├── wce_stdlib.h
│ ├── wce_strerror.c
│ ├── wce_string.h
│ ├── wce_time.c
│ ├── wce_time.h
│ ├── wce_timesys.c
│ ├── wce_timesys.h
│ ├── wce_types.h
│ ├── wce_unistd.h
│ ├── wce_unlink.c
│ ├── wce_winbase.c
│ └── wce_winbase.h
├── JSON
│ ├── cmake
│ │ └── PocoJSONConfig.cmake
│ ├── CMakeLists.txt
│ ├── include
│ │ └── Poco
│ │ └── JSON
│ │ ├── Array.h
│ │ ├── Handler.h
│ │ ├── JSONException.h
│ │ ├── JSON.h
│ │ ├── Object.h
│ │ ├── ParseHandler.h
│ │ ├── Parser.h
│ │ ├── ParserImpl.h
│ │ ├── PrintHandler.h
│ │ ├── Query.h
│ │ ├── Stringifier.h
│ │ ├── TemplateCache.h
│ │ └── Template.h
│ ├── JSON_CE_vs90.sln
│ ├── JSON_CE_vs90.vcproj
│ ├── JSON.progen
│ ├── JSON_vs100.sln
│ ├── JSON_vs100.vcxproj
│ ├── JSON_vs100.vcxproj.filters
│ ├── JSON_vs110.sln
│ ├── JSON_vs110.vcxproj
│ ├── JSON_vs110.vcxproj.filters
│ ├── JSON_vs120.sln
│ ├── JSON_vs120.vcxproj
│ ├── JSON_vs120.vcxproj.filters
│ ├── JSON_vs140.sln
│ ├── JSON_vs140.vcxproj
│ ├── JSON_vs140.vcxproj.filters
│ ├── JSON_vs150.sln
│ ├── JSON_vs150.vcxproj
│ ├── JSON_vs150.vcxproj.filters
│ ├── JSON_vs90.sln
│ ├── JSON_vs90.vcproj
│ ├── JSON_WEC2013_vs110.sln
│ ├── JSON_WEC2013_vs110.vcxproj
│ ├── JSON_WEC2013_vs110.vcxproj.filters
│ ├── JSON_WEC2013_vs120.sln
│ ├── JSON_WEC2013_vs120.vcxproj
│ ├── JSON_WEC2013_vs120.vcxproj.filters
│ ├── JSON_x64_vs100.sln
│ ├── JSON_x64_vs100.vcxproj
│ ├── JSON_x64_vs100.vcxproj.filters
│ ├── JSON_x64_vs110.sln
│ ├── JSON_x64_vs110.vcxproj
│ ├── JSON_x64_vs110.vcxproj.filters
│ ├── JSON_x64_vs120.sln
│ ├── JSON_x64_vs120.vcxproj
│ ├── JSON_x64_vs120.vcxproj.filters
│ ├── JSON_x64_vs140.sln
│ ├── JSON_x64_vs140.vcxproj
│ ├── JSON_x64_vs140.vcxproj.filters
│ ├── JSON_x64_vs150.sln
│ ├── JSON_x64_vs150.vcxproj
│ ├── JSON_x64_vs150.vcxproj.filters
│ ├── JSON_x64_vs90.sln
│ ├── JSON_x64_vs90.vcproj
│ ├── Makefile
│ ├── samples
│ │ ├── Benchmark
│ │ │ ├── Benchmark_CE_vs90.vcproj
│ │ │ ├── Benchmark.progen
│ │ │ ├── Benchmark_vs100.vcxproj
│ │ │ ├── Benchmark_vs100.vcxproj.filters
│ │ │ ├── Benchmark_vs110.vcxproj
│ │ │ ├── Benchmark_vs110.vcxproj.filters
│ │ │ ├── Benchmark_vs120.vcxproj
│ │ │ ├── Benchmark_vs120.vcxproj.filters
│ │ │ ├── Benchmark_vs140.vcxproj
│ │ │ ├── Benchmark_vs140.vcxproj.filters
│ │ │ ├── Benchmark_vs150.vcxproj
│ │ │ ├── Benchmark_vs150.vcxproj.filters
│ │ │ ├── Benchmark_vs90.vcproj
│ │ │ ├── Benchmark_WEC2013_vs110.vcxproj
│ │ │ ├── Benchmark_WEC2013_vs110.vcxproj.filters
│ │ │ ├── Benchmark_WEC2013_vs120.vcxproj
│ │ │ ├── Benchmark_WEC2013_vs120.vcxproj.filters
│ │ │ ├── Benchmark_x64_vs100.vcxproj
│ │ │ ├── Benchmark_x64_vs100.vcxproj.filters
│ │ │ ├── Benchmark_x64_vs110.vcxproj
│ │ │ ├── Benchmark_x64_vs110.vcxproj.filters
│ │ │ ├── Benchmark_x64_vs120.vcxproj
│ │ │ ├── Benchmark_x64_vs120.vcxproj.filters
│ │ │ ├── Benchmark_x64_vs140.vcxproj
│ │ │ ├── Benchmark_x64_vs140.vcxproj.filters
│ │ │ ├── Benchmark_x64_vs150.vcxproj
│ │ │ ├── Benchmark_x64_vs150.vcxproj.filters
│ │ │ ├── Benchmark_x64_vs90.vcproj
│ │ │ ├── CMakeLists.txt
│ │ │ ├── Makefile
│ │ │ └── src
│ │ │ └── Benchmark.cpp
│ │ ├── CMakeLists.txt
│ │ ├── Makefile
│ │ ├── samples_CE_vs90.sln
│ │ ├── samples.progen
│ │ ├── samples_vs100.sln
│ │ ├── samples_vs110.sln
│ │ ├── samples_vs120.sln
│ │ ├── samples_vs140.sln
│ │ ├── samples_vs150.sln
│ │ ├── samples_vs90.sln
│ │ ├── samples_WEC2013_vs110.sln
│ │ ├── samples_WEC2013_vs120.sln
│ │ ├── samples_x64_vs100.sln
│ │ ├── samples_x64_vs110.sln
│ │ ├── samples_x64_vs120.sln
│ │ ├── samples_x64_vs140.sln
│ │ ├── samples_x64_vs150.sln
│ │ └── samples_x64_vs90.sln
│ ├── src
│ │ ├── Array.cpp
│ │ ├── Handler.cpp
│ │ ├── JSONException.cpp
│ │ ├── Object.cpp
│ │ ├── ParseHandler.cpp
│ │ ├── Parser.cpp
│ │ ├── ParserImpl.cpp
│ │ ├── pd_json.c
│ │ ├── pd_json.h
│ │ ├── pd_json_private.h
│ │ ├── PrintHandler.cpp
│ │ ├── Query.cpp
│ │ ├── Stringifier.cpp
│ │ ├── TemplateCache.cpp
│ │ └── Template.cpp
│ └── testsuite
│ ├── CMakeLists.txt
│ ├── data
│ │ ├── invalid
│ │ │ ├── apostrophe
│ │ │ │ └── input
│ │ │ ├── ascii-unicode-identifier
│ │ │ │ └── input
│ │ │ ├── brace-comma
│ │ │ │ └── input
│ │ │ ├── bracket-comma
│ │ │ │ └── input
│ │ │ ├── bracket-one-comma
│ │ │ │ └── input
│ │ │ ├── double-closing-brace
│ │ │ │ └── input
│ │ │ ├── double-closing-bracket
│ │ │ │ └── input
│ │ │ ├── empty
│ │ │ │ └── input
│ │ │ ├── escaped-null-byte-in-string
│ │ │ │ └── input
│ │ │ ├── extra-comma-in-array
│ │ │ │ └── input
│ │ │ ├── extra-comma-in-multiline-array
│ │ │ │ └── input
│ │ │ ├── garbage-after-newline
│ │ │ │ └── input
│ │ │ ├── garbage-at-the-end
│ │ │ │ └── input
│ │ │ ├── integer-starting-with-zero
│ │ │ │ └── input
│ │ │ ├── invalid-escape
│ │ │ │ └── input
│ │ │ ├── invalid-identifier
│ │ │ │ └── input
│ │ │ ├── invalid-negative-integer
│ │ │ │ └── input
│ │ │ ├── invalid-negative-real
│ │ │ │ └── input
│ │ │ ├── invalid-second-surrogate
│ │ │ │ └── input
│ │ │ ├── lone-open-brace
│ │ │ │ └── input
│ │ │ ├── lone-open-bracket
│ │ │ │ └── input
│ │ │ ├── lone-second-surrogate
│ │ │ │ └── input
│ │ │ ├── minus-sign-without-number
│ │ │ │ └── input
│ │ │ ├── negative-integer-starting-with-zero
│ │ │ │ └── input
│ │ │ ├── null
│ │ │ │ └── input
│ │ │ ├── null-byte-in-string
│ │ │ │ └── input
│ │ │ ├── null-byte-outside-string
│ │ │ │ └── input
│ │ │ ├── object-apostrophes
│ │ │ │ └── input
│ │ │ ├── object-garbage-at-end
│ │ │ │ └── input
│ │ │ ├── object-in-unterminated-array
│ │ │ │ └── input
│ │ │ ├── object-no-colon
│ │ │ │ └── input
│ │ │ ├── object-no-value
│ │ │ │ └── input
│ │ │ ├── object-unterminated-value
│ │ │ │ └── input
│ │ │ ├── real-garbage-after-e
│ │ │ │ └── input
│ │ │ ├── real-negative-overflow
│ │ │ │ └── input
│ │ │ ├── real-positive-overflow
│ │ │ │ └── input
│ │ │ ├── real-truncated-at-e
│ │ │ │ └── input
│ │ │ ├── real-truncated-at-point
│ │ │ │ └── input
│ │ │ ├── tab-character-in-string
│ │ │ │ └── input
│ │ │ ├── too-big-negative-integer
│ │ │ │ └── input
│ │ │ ├── too-big-positive-integer
│ │ │ │ └── input
│ │ │ ├── truncated-unicode-surrogate
│ │ │ │ └── input
│ │ │ ├── unicode-identifier
│ │ │ │ └── input
│ │ │ ├── unterminated-array
│ │ │ │ └── input
│ │ │ ├── unterminated-array-and-object
│ │ │ │ └── input
│ │ │ ├── unterminated-empty-key
│ │ │ │ └── input
│ │ │ ├── unterminated-key
│ │ │ │ └── input
│ │ │ ├── unterminated-object-and-array
│ │ │ │ └── input
│ │ │ └── unterminated-string
│ │ │ └── input
│ │ ├── invalid-unicode
│ │ │ ├── encoded-surrogate-half
│ │ │ │ └── input
│ │ │ ├── invalid-utf-8-after-backslash
│ │ │ │ └── input
│ │ │ ├── invalid-utf-8-in-array
│ │ │ │ └── input
│ │ │ ├── invalid-utf-8-in-bigger-int
│ │ │ │ └── input
│ │ │ ├── invalid-utf-8-in-escape
│ │ │ │ └── input
│ │ │ ├── invalid-utf-8-in-exponent
│ │ │ │ └── input
│ │ │ ├── invalid-utf-8-in-identifier
│ │ │ │ └── input
│ │ │ ├── invalid-utf-8-in-int
│ │ │ │ └── input
│ │ │ ├── invalid-utf-8-in-real-after-e
│ │ │ │ └── input
│ │ │ ├── invalid-utf-8-in-string
│ │ │ │ └── input
│ │ │ ├── lone-invalid-utf-8
│ │ │ │ └── input
│ │ │ ├── lone-utf-8-continuation-byte
│ │ │ │ └── input
│ │ │ ├── not-in-unicode-range
│ │ │ │ └── input
│ │ │ ├── overlong-3-byte-encoding
│ │ │ │ └── input
│ │ │ ├── overlong-4-byte-encoding
│ │ │ │ └── input
│ │ │ ├── overlong-ascii-encoding
│ │ │ │ └── input
│ │ │ ├── restricted-utf-8
│ │ │ │ └── input
│ │ │ └── truncated-utf-8
│ │ │ └── input
│ │ └── valid
│ │ ├── complex-array
│ │ │ └── input
│ │ ├── complex-object
│ │ │ └── input
│ │ ├── empty-array
│ │ │ └── input
│ │ ├── empty-object
│ │ │ └── input
│ │ ├── empty-object-in-array
│ │ │ └── input
│ │ ├── empty-string
│ │ │ └── input
│ │ ├── escaped-utf-control-char
│ │ │ └── input
│ │ ├── false
│ │ │ └── input
│ │ ├── negative-int
│ │ │ └── input
│ │ ├── negative-one
│ │ │ └── input
│ │ ├── negative-zero
│ │ │ └── input
│ │ ├── null
│ │ │ └── input
│ │ ├── one-byte-utf-8
│ │ │ └── input
│ │ ├── real-capital-e
│ │ │ └── input
│ │ ├── real-capital-e-negative-exponent
│ │ │ └── input
│ │ ├── real-capital-e-positive-exponent
│ │ │ └── input
│ │ ├── real-exponent
│ │ │ └── input
│ │ ├── real-fraction-exponent
│ │ │ └── input
│ │ ├── real-negative-exponent
│ │ │ └── input
│ │ ├── real-positive-exponent
│ │ │ └── input
│ │ ├── real-underflow
│ │ │ └── input
│ │ ├── short-string
│ │ │ └── input
│ │ ├── simple-ascii-string
│ │ │ └── input
│ │ ├── simple-int-0
│ │ │ └── input
│ │ ├── simple-int-1
│ │ │ └── input
│ │ ├── simple-int-123
│ │ │ └── input
│ │ ├── simple-object
│ │ │ └── input
│ │ ├── simple-real
│ │ │ └── input
│ │ ├── string-escapes
│ │ │ └── input
│ │ ├── three-byte-utf-8
│ │ │ └── input
│ │ ├── true
│ │ │ └── input
│ │ ├── two-byte-utf-8
│ │ │ └── input
│ │ ├── utf-8-string
│ │ │ └── input
│ │ └── utf-surrogate-four-byte-encoding
│ │ └── input
│ ├── Makefile
│ ├── src
│ │ ├── Driver.cpp
│ │ ├── JSONTest.cpp
│ │ ├── JSONTest.h
│ │ ├── JSONTestSuite.cpp
│ │ ├── JSONTestSuite.h
│ │ ├── WinCEDriver.cpp
│ │ └── WinDriver.cpp
│ ├── TestSuite_CE_vs90.vcproj
│ ├── TestSuite.progen
│ ├── TestSuite_vs100.vcxproj
│ ├── TestSuite_vs100.vcxproj.filters
│ ├── TestSuite_vs110.vcxproj
│ ├── TestSuite_vs110.vcxproj.filters
│ ├── TestSuite_vs120.vcxproj
│ ├── TestSuite_vs120.vcxproj.filters
│ ├── TestSuite_vs140.vcxproj
│ ├── TestSuite_vs140.vcxproj.filters
│ ├── TestSuite_vs150.vcxproj
│ ├── TestSuite_vs150.vcxproj.filters
│ ├── TestSuite_vs90.vcproj
│ ├── TestSuite_WEC2013_vs110.vcxproj
│ ├── TestSuite_WEC2013_vs110.vcxproj.filters
│ ├── TestSuite_WEC2013_vs120.vcxproj
│ ├── TestSuite_WEC2013_vs120.vcxproj.filters
│ ├── TestSuite_x64_vs100.vcxproj
│ ├── TestSuite_x64_vs100.vcxproj.filters
│ ├── TestSuite_x64_vs110.vcxproj
│ ├── TestSuite_x64_vs110.vcxproj.filters
│ ├── TestSuite_x64_vs120.vcxproj
│ ├── TestSuite_x64_vs120.vcxproj.filters
│ ├── TestSuite_x64_vs140.vcxproj
│ ├── TestSuite_x64_vs140.vcxproj.filters
│ ├── TestSuite_x64_vs150.vcxproj
│ ├── TestSuite_x64_vs150.vcxproj.filters
│ └── TestSuite_x64_vs90.vcproj
├── libversion
├── LICENSE
├── Makefile
├── MANIFEST
├── MongoDB
│ ├── cmake
│ │ └── PocoMongoDBConfig.cmake
│ ├── CMakeLists.txt
│ ├── include
│ │ └── Poco
│ │ └── MongoDB
│ │ ├── Array.h
│ │ ├── Binary.h
│ │ ├── BSONReader.h
│ │ ├── BSONWriter.h
│ │ ├── Connection.h
│ │ ├── Cursor.h
│ │ ├── Database.h
│ │ ├── DeleteRequest.h
│ │ ├── Document.h
│ │ ├── Element.h
│ │ ├── GetMoreRequest.h
│ │ ├── InsertRequest.h
│ │ ├── JavaScriptCode.h
│ │ ├── KillCursorsRequest.h
│ │ ├── Message.h
│ │ ├── MessageHeader.h
│ │ ├── MongoDB.h
│ │ ├── ObjectId.h
│ │ ├── PoolableConnectionFactory.h
│ │ ├── QueryRequest.h
│ │ ├── RegularExpression.h
│ │ ├── ReplicaSet.h
│ │ ├── RequestMessage.h
│ │ ├── ResponseMessage.h
│ │ └── UpdateRequest.h
│ ├── Makefile
│ ├── MongoDB_CE_vs90.sln
│ ├── MongoDB_CE_vs90.vcproj
│ ├── MongoDB.progen
│ ├── MongoDB_vs100.sln
│ ├── MongoDB_vs100.vcxproj
│ ├── MongoDB_vs100.vcxproj.filters
│ ├── MongoDB_vs110.sln
│ ├── MongoDB_vs110.vcxproj
│ ├── MongoDB_vs110.vcxproj.filters
│ ├── MongoDB_vs120.sln
│ ├── MongoDB_vs120.vcxproj
│ ├── MongoDB_vs120.vcxproj.filters
│ ├── MongoDB_vs140.sln
│ ├── MongoDB_vs140.vcxproj
│ ├── MongoDB_vs140.vcxproj.filters
│ ├── MongoDB_vs150.sln
│ ├── MongoDB_vs150.vcxproj
│ ├── MongoDB_vs150.vcxproj.filters
│ ├── MongoDB_vs90.sln
│ ├── MongoDB_vs90.vcproj
│ ├── MongoDB_x64_vs100.sln
│ ├── MongoDB_x64_vs100.vcxproj
│ ├── MongoDB_x64_vs100.vcxproj.filters
│ ├── MongoDB_x64_vs110.sln
│ ├── MongoDB_x64_vs110.vcxproj
│ ├── MongoDB_x64_vs110.vcxproj.filters
│ ├── MongoDB_x64_vs120.sln
│ ├── MongoDB_x64_vs120.vcxproj
│ ├── MongoDB_x64_vs120.vcxproj.filters
│ ├── MongoDB_x64_vs140.sln
│ ├── MongoDB_x64_vs140.vcxproj
│ ├── MongoDB_x64_vs140.vcxproj.filters
│ ├── MongoDB_x64_vs150.sln
│ ├── MongoDB_x64_vs150.vcxproj
│ ├── MongoDB_x64_vs150.vcxproj.filters
│ ├── MongoDB_x64_vs90.sln
│ ├── MongoDB_x64_vs90.vcproj
│ ├── samples
│ │ ├── CMakeLists.txt
│ │ ├── Makefile
│ │ ├── samples_CE_vs90.sln
│ │ ├── samples.progen
│ │ ├── samples_vs100.sln
│ │ ├── samples_vs110.sln
│ │ ├── samples_vs120.sln
│ │ ├── samples_vs140.sln
│ │ ├── samples_vs150.sln
│ │ ├── samples_vs90.sln
│ │ ├── samples_x64_vs100.sln
│ │ ├── samples_x64_vs110.sln
│ │ ├── samples_x64_vs120.sln
│ │ ├── samples_x64_vs140.sln
│ │ ├── samples_x64_vs150.sln
│ │ ├── samples_x64_vs90.sln
│ │ └── SQLToMongo
│ │ ├── CMakeLists.txt
│ │ ├── Makefile
│ │ ├── SQLToMongo_CE_vs90.vcproj
│ │ ├── SQLToMongo.progen
│ │ ├── SQLToMongo_vs100.vcxproj
│ │ ├── SQLToMongo_vs100.vcxproj.filters
│ │ ├── SQLToMongo_vs110.vcxproj
│ │ ├── SQLToMongo_vs110.vcxproj.filters
│ │ ├── SQLToMongo_vs120.vcxproj
│ │ ├── SQLToMongo_vs120.vcxproj.filters
│ │ ├── SQLToMongo_vs140.vcxproj
│ │ ├── SQLToMongo_vs140.vcxproj.filters
│ │ ├── SQLToMongo_vs150.vcxproj
│ │ ├── SQLToMongo_vs150.vcxproj.filters
│ │ ├── SQLToMongo_vs90.vcproj
│ │ ├── SQLToMongo_x64_vs100.vcxproj
│ │ ├── SQLToMongo_x64_vs100.vcxproj.filters
│ │ ├── SQLToMongo_x64_vs110.vcxproj
│ │ ├── SQLToMongo_x64_vs110.vcxproj.filters
│ │ ├── SQLToMongo_x64_vs120.vcxproj
│ │ ├── SQLToMongo_x64_vs120.vcxproj.filters
│ │ ├── SQLToMongo_x64_vs140.vcxproj
│ │ ├── SQLToMongo_x64_vs140.vcxproj.filters
│ │ ├── SQLToMongo_x64_vs150.vcxproj
│ │ ├── SQLToMongo_x64_vs150.vcxproj.filters
│ │ ├── SQLToMongo_x64_vs90.vcproj
│ │ └── src
│ │ └── SQLToMongo.cpp
│ ├── src
│ │ ├── Array.cpp
│ │ ├── Binary.cpp
│ │ ├── Connection.cpp
│ │ ├── Cursor.cpp
│ │ ├── Database.cpp
│ │ ├── DeleteRequest.cpp
│ │ ├── Document.cpp
│ │ ├── Element.cpp
│ │ ├── GetMoreRequest.cpp
│ │ ├── InsertRequest.cpp
│ │ ├── JavaScriptCode.cpp
│ │ ├── KillCursorsRequest.cpp
│ │ ├── Message.cpp
│ │ ├── MessageHeader.cpp
│ │ ├── ObjectId.cpp
│ │ ├── QueryRequest.cpp
│ │ ├── RegularExpression.cpp
│ │ ├── ReplicaSet.cpp
│ │ ├── RequestMessage.cpp
│ │ ├── ResponseMessage.cpp
│ │ └── UpdateRequest.cpp
│ └── testsuite
│ ├── CMakeLists.txt
│ ├── Makefile
│ ├── src
│ │ ├── Driver.cpp
│ │ ├── MongoDBTest.cpp
│ │ ├── MongoDBTest.h
│ │ ├── MongoDBTestSuite.cpp
│ │ ├── MongoDBTestSuite.h
│ │ ├── WinCEDriver.cpp
│ │ └── WinDriver.cpp
│ ├── TestSuite_CE_vs90.vcproj
│ ├── TestSuite.progen
│ ├── TestSuite_vs100.vcxproj
│ ├── TestSuite_vs100.vcxproj.filters
│ ├── TestSuite_vs110.vcxproj
│ ├── TestSuite_vs110.vcxproj.filters
│ ├── TestSuite_vs120.vcxproj
│ ├── TestSuite_vs120.vcxproj.filters
│ ├── TestSuite_vs140.vcxproj
│ ├── TestSuite_vs140.vcxproj.filters
│ ├── TestSuite_vs150.vcxproj
│ ├── TestSuite_vs150.vcxproj.filters
│ ├── TestSuite_vs90.vcproj
│ ├── TestSuite_x64_vs100.vcxproj
│ ├── TestSuite_x64_vs100.vcxproj.filters
│ ├── TestSuite_x64_vs110.vcxproj
│ ├── TestSuite_x64_vs110.vcxproj.filters
│ ├── TestSuite_x64_vs120.vcxproj
│ ├── TestSuite_x64_vs120.vcxproj.filters
│ ├── TestSuite_x64_vs140.vcxproj
│ ├── TestSuite_x64_vs140.vcxproj.filters
│ ├── TestSuite_x64_vs150.vcxproj
│ ├── TestSuite_x64_vs150.vcxproj.filters
│ └── TestSuite_x64_vs90.vcproj
├── Net
│ ├── cmake
│ │ └── PocoNetConfig.cmake
│ ├── CMakeLists.txt
│ ├── include
│ │ └── Poco
│ │ └── Net
│ │ ├── AbstractHTTPRequestHandler.h
│ │ ├── DatagramSocket.h
│ │ ├── DatagramSocketImpl.h
│ │ ├── DialogSocket.h
│ │ ├── DNS.h
│ │ ├── FilePartSource.h
│ │ ├── FTPClientSession.h
│ │ ├── FTPStreamFactory.h
│ │ ├── HostEntry.h
│ │ ├── HTMLForm.h
│ │ ├── HTTPAuthenticationParams.h
│ │ ├── HTTPBasicCredentials.h
│ │ ├── HTTPBasicStreamBuf.h
│ │ ├── HTTPBufferAllocator.h
│ │ ├── HTTPChunkedStream.h
│ │ ├── HTTPClientSession.h
│ │ ├── HTTPCookie.h
│ │ ├── HTTPCredentials.h
│ │ ├── HTTPDigestCredentials.h
│ │ ├── HTTPFixedLengthStream.h
│ │ ├── HTTPHeaderStream.h
│ │ ├── HTTPIOStream.h
│ │ ├── HTTPMessage.h
│ │ ├── HTTPRequest.h
│ │ ├── HTTPRequestHandlerFactory.h
│ │ ├── HTTPRequestHandler.h
│ │ ├── HTTPResponse.h
│ │ ├── HTTPServerConnectionFactory.h
│ │ ├── HTTPServerConnection.h
│ │ ├── HTTPServer.h
│ │ ├── HTTPServerParams.h
│ │ ├── HTTPServerRequest.h
│ │ ├── HTTPServerRequestImpl.h
│ │ ├── HTTPServerResponse.h
│ │ ├── HTTPServerResponseImpl.h
│ │ ├── HTTPServerSession.h
│ │ ├── HTTPSessionFactory.h
│ │ ├── HTTPSession.h
│ │ ├── HTTPSessionInstantiator.h
│ │ ├── HTTPStreamFactory.h
│ │ ├── HTTPStream.h
│ │ ├── ICMPClient.h
│ │ ├── ICMPEventArgs.h
│ │ ├── ICMPPacket.h
│ │ ├── ICMPPacketImpl.h
│ │ ├── ICMPSocket.h
│ │ ├── ICMPSocketImpl.h
│ │ ├── ICMPv4PacketImpl.h
│ │ ├── IPAddress.h
│ │ ├── IPAddressImpl.h
│ │ ├── MailMessage.h
│ │ ├── MailRecipient.h
│ │ ├── MailStream.h
│ │ ├── MediaType.h
│ │ ├── MessageHeader.h
│ │ ├── MulticastSocket.h
│ │ ├── MultipartReader.h
│ │ ├── MultipartWriter.h
│ │ ├── NameValueCollection.h
│ │ ├── NetException.h
│ │ ├── Net.h
│ │ ├── NetworkInterface.h
│ │ ├── NTPClient.h
│ │ ├── NTPEventArgs.h
│ │ ├── NTPPacket.h
│ │ ├── NullPartHandler.h
│ │ ├── OAuth10Credentials.h
│ │ ├── OAuth20Credentials.h
│ │ ├── ParallelSocketAcceptor.h
│ │ ├── ParallelSocketReactor.h
│ │ ├── PartHandler.h
│ │ ├── PartSource.h
│ │ ├── PartStore.h
│ │ ├── PollSet.h
│ │ ├── POP3ClientSession.h
│ │ ├── QuotedPrintableDecoder.h
│ │ ├── QuotedPrintableEncoder.h
│ │ ├── RawSocket.h
│ │ ├── RawSocketImpl.h
│ │ ├── RemoteSyslogChannel.h
│ │ ├── RemoteSyslogListener.h
│ │ ├── ServerSocket.h
│ │ ├── ServerSocketImpl.h
│ │ ├── SMTPChannel.h
│ │ ├── SMTPClientSession.h
│ │ ├── SocketAcceptor.h
│ │ ├── SocketAddress.h
│ │ ├── SocketAddressImpl.h
│ │ ├── SocketConnector.h
│ │ ├── SocketDefs.h
│ │ ├── Socket.h
│ │ ├── SocketImpl.h
│ │ ├── SocketNotification.h
│ │ ├── SocketNotifier.h
│ │ ├── SocketReactor.h
│ │ ├── SocketStream.h
│ │ ├── StreamSocket.h
│ │ ├── StreamSocketImpl.h
│ │ ├── StringPartSource.h
│ │ ├── TCPServerConnectionFactory.h
│ │ ├── TCPServerConnection.h
│ │ ├── TCPServerDispatcher.h
│ │ ├── TCPServer.h
│ │ ├── TCPServerParams.h
│ │ ├── WebSocket.h
│ │ └── WebSocketImpl.h
│ ├── Makefile
│ ├── Net_CE_vs90.sln
│ ├── Net_CE_vs90.vcproj
│ ├── Net.progen
│ ├── Net_vs100.sln
│ ├── Net_vs100.vcxproj
│ ├── Net_vs100.vcxproj.filters
│ ├── Net_vs110.sln
│ ├── Net_vs110.vcxproj
│ ├── Net_vs110.vcxproj.filters
│ ├── Net_vs120.sln
│ ├── Net_vs120.vcxproj
│ ├── Net_vs120.vcxproj.filters
│ ├── Net_vs140.sln
│ ├── Net_vs140.vcxproj
│ ├── Net_vs140.vcxproj.filters
│ ├── Net_vs150.sln
│ ├── Net_vs150.vcxproj
│ ├── Net_vs150.vcxproj.filters
│ ├── Net_vs90.sln
│ ├── Net_vs90.vcproj
│ ├── Net_WEC2013_vs110.sln
│ ├── Net_WEC2013_vs110.vcxproj
│ ├── Net_WEC2013_vs110.vcxproj.filters
│ ├── Net_WEC2013_vs120.sln
│ ├── Net_WEC2013_vs120.vcxproj
│ ├── Net_WEC2013_vs120.vcxproj.filters
│ ├── Net_x64_vs100.sln
│ ├── Net_x64_vs100.vcxproj
│ ├── Net_x64_vs100.vcxproj.filters
│ ├── Net_x64_vs110.sln
│ ├── Net_x64_vs110.vcxproj
│ ├── Net_x64_vs110.vcxproj.filters
│ ├── Net_x64_vs120.sln
│ ├── Net_x64_vs120.vcxproj
│ ├── Net_x64_vs120.vcxproj.filters
│ ├── Net_x64_vs140.sln
│ ├── Net_x64_vs140.vcxproj
│ ├── Net_x64_vs140.vcxproj.filters
│ ├── Net_x64_vs150.sln
│ ├── Net_x64_vs150.vcxproj
│ ├── Net_x64_vs150.vcxproj.filters
│ ├── Net_x64_vs90.sln
│ ├── Net_x64_vs90.vcproj
│ ├── samples
│ │ ├── CMakeLists.txt
│ │ ├── dict
│ │ │ ├── CMakeLists.txt
│ │ │ ├── dict_CE_vs90.vcproj
│ │ │ ├── dict.progen
│ │ │ ├── dict_vs100.vcxproj
│ │ │ ├── dict_vs100.vcxproj.filters
│ │ │ ├── dict_vs110.vcxproj
│ │ │ ├── dict_vs110.vcxproj.filters
│ │ │ ├── dict_vs120.vcxproj
│ │ │ ├── dict_vs120.vcxproj.filters
│ │ │ ├── dict_vs140.vcxproj
│ │ │ ├── dict_vs140.vcxproj.filters
│ │ │ ├── dict_vs150.vcxproj
│ │ │ ├── dict_vs150.vcxproj.filters
│ │ │ ├── dict_vs90.vcproj
│ │ │ ├── dict_WEC2013_vs110.vcxproj
│ │ │ ├── dict_WEC2013_vs110.vcxproj.filters
│ │ │ ├── dict_WEC2013_vs120.vcxproj
│ │ │ ├── dict_WEC2013_vs120.vcxproj.filters
│ │ │ ├── dict_x64_vs100.vcxproj
│ │ │ ├── dict_x64_vs100.vcxproj.filters
│ │ │ ├── dict_x64_vs110.vcxproj
│ │ │ ├── dict_x64_vs110.vcxproj.filters
│ │ │ ├── dict_x64_vs120.vcxproj
│ │ │ ├── dict_x64_vs120.vcxproj.filters
│ │ │ ├── dict_x64_vs140.vcxproj
│ │ │ ├── dict_x64_vs140.vcxproj.filters
│ │ │ ├── dict_x64_vs150.vcxproj
│ │ │ ├── dict_x64_vs150.vcxproj.filters
│ │ │ ├── dict_x64_vs90.vcproj
│ │ │ ├── Makefile
│ │ │ └── src
│ │ │ └── dict.cpp
│ │ ├── download
│ │ │ ├── CMakeLists.txt
│ │ │ ├── download_CE_vs90.vcproj
│ │ │ ├── download.progen
│ │ │ ├── download_vs100.vcxproj
│ │ │ ├── download_vs100.vcxproj.filters
│ │ │ ├── download_vs110.vcxproj
│ │ │ ├── download_vs110.vcxproj.filters
│ │ │ ├── download_vs120.vcxproj
│ │ │ ├── download_vs120.vcxproj.filters
│ │ │ ├── download_vs140.vcxproj
│ │ │ ├── download_vs140.vcxproj.filters
│ │ │ ├── download_vs150.vcxproj
│ │ │ ├── download_vs150.vcxproj.filters
│ │ │ ├── download_vs90.vcproj
│ │ │ ├── download_WEC2013_vs110.vcxproj
│ │ │ ├── download_WEC2013_vs110.vcxproj.filters
│ │ │ ├── download_WEC2013_vs120.vcxproj
│ │ │ ├── download_WEC2013_vs120.vcxproj.filters
│ │ │ ├── download_x64_vs100.vcxproj
│ │ │ ├── download_x64_vs100.vcxproj.filters
│ │ │ ├── download_x64_vs110.vcxproj
│ │ │ ├── download_x64_vs110.vcxproj.filters
│ │ │ ├── download_x64_vs120.vcxproj
│ │ │ ├── download_x64_vs120.vcxproj.filters
│ │ │ ├── download_x64_vs140.vcxproj
│ │ │ ├── download_x64_vs140.vcxproj.filters
│ │ │ ├── download_x64_vs150.vcxproj
│ │ │ ├── download_x64_vs150.vcxproj.filters
│ │ │ ├── download_x64_vs90.vcproj
│ │ │ ├── Makefile
│ │ │ └── src
│ │ │ └── download.cpp
│ │ ├── EchoServer
│ │ │ ├── CMakeLists.txt
│ │ │ ├── EchoServer_CE_vs90.vcproj
│ │ │ ├── EchoServer.progen
│ │ │ ├── EchoServer.properties
│ │ │ ├── EchoServer_vs100.vcxproj
│ │ │ ├── EchoServer_vs100.vcxproj.filters
│ │ │ ├── EchoServer_vs110.vcxproj
│ │ │ ├── EchoServer_vs110.vcxproj.filters
│ │ │ ├── EchoServer_vs120.vcxproj
│ │ │ ├── EchoServer_vs120.vcxproj.filters
│ │ │ ├── EchoServer_vs140.vcxproj
│ │ │ ├── EchoServer_vs140.vcxproj.filters
│ │ │ ├── EchoServer_vs150.vcxproj
│ │ │ ├── EchoServer_vs150.vcxproj.filters
│ │ │ ├── EchoServer_vs90.vcproj
│ │ │ ├── EchoServer_WEC2013_vs110.vcxproj
│ │ │ ├── EchoServer_WEC2013_vs110.vcxproj.filters
│ │ │ ├── EchoServer_WEC2013_vs120.vcxproj
│ │ │ ├── EchoServer_WEC2013_vs120.vcxproj.filters
│ │ │ ├── EchoServer_x64_vs100.vcxproj
│ │ │ ├── EchoServer_x64_vs100.vcxproj.filters
│ │ │ ├── EchoServer_x64_vs110.vcxproj
│ │ │ ├── EchoServer_x64_vs110.vcxproj.filters
│ │ │ ├── EchoServer_x64_vs120.vcxproj
│ │ │ ├── EchoServer_x64_vs120.vcxproj.filters
│ │ │ ├── EchoServer_x64_vs140.vcxproj
│ │ │ ├── EchoServer_x64_vs140.vcxproj.filters
│ │ │ ├── EchoServer_x64_vs150.vcxproj
│ │ │ ├── EchoServer_x64_vs150.vcxproj.filters
│ │ │ ├── EchoServer_x64_vs90.vcproj
│ │ │ ├── Makefile
│ │ │ └── src
│ │ │ └── EchoServer.cpp
│ │ ├── HTTPFormServer
│ │ │ ├── CMakeLists.txt
│ │ │ ├── HTTPFormServer_CE_vs90.vcproj
│ │ │ ├── HTTPFormServer.progen
│ │ │ ├── HTTPFormServer.properties
│ │ │ ├── HTTPFormServer_vs100.vcxproj
│ │ │ ├── HTTPFormServer_vs100.vcxproj.filters
│ │ │ ├── HTTPFormServer_vs110.vcxproj
│ │ │ ├── HTTPFormServer_vs110.vcxproj.filters
│ │ │ ├── HTTPFormServer_vs120.vcxproj
│ │ │ ├── HTTPFormServer_vs120.vcxproj.filters
│ │ │ ├── HTTPFormServer_vs140.vcxproj
│ │ │ ├── HTTPFormServer_vs140.vcxproj.filters
│ │ │ ├── HTTPFormServer_vs150.vcxproj
│ │ │ ├── HTTPFormServer_vs150.vcxproj.filters
│ │ │ ├── HTTPFormServer_vs90.vcproj
│ │ │ ├── HTTPFormServer_WEC2013_vs110.vcxproj
│ │ │ ├── HTTPFormServer_WEC2013_vs110.vcxproj.filters
│ │ │ ├── HTTPFormServer_WEC2013_vs120.vcxproj
│ │ │ ├── HTTPFormServer_WEC2013_vs120.vcxproj.filters
│ │ │ ├── HTTPFormServer_x64_vs100.vcxproj
│ │ │ ├── HTTPFormServer_x64_vs100.vcxproj.filters
│ │ │ ├── HTTPFormServer_x64_vs110.vcxproj
│ │ │ ├── HTTPFormServer_x64_vs110.vcxproj.filters
│ │ │ ├── HTTPFormServer_x64_vs120.vcxproj
│ │ │ ├── HTTPFormServer_x64_vs120.vcxproj.filters
│ │ │ ├── HTTPFormServer_x64_vs140.vcxproj
│ │ │ ├── HTTPFormServer_x64_vs140.vcxproj.filters
│ │ │ ├── HTTPFormServer_x64_vs150.vcxproj
│ │ │ ├── HTTPFormServer_x64_vs150.vcxproj.filters
│ │ │ ├── HTTPFormServer_x64_vs90.vcproj
│ │ │ ├── Makefile
│ │ │ └── src
│ │ │ └── HTTPFormServer.cpp
│ │ ├── httpget
│ │ │ ├── CMakeLists.txt
│ │ │ ├── httpget_CE_vs90.vcproj
│ │ │ ├── httpget.progen
│ │ │ ├── httpget_vs100.vcxproj
│ │ │ ├── httpget_vs100.vcxproj.filters
│ │ │ ├── httpget_vs110.vcxproj
│ │ │ ├── httpget_vs110.vcxproj.filters
│ │ │ ├── httpget_vs120.vcxproj
│ │ │ ├── httpget_vs120.vcxproj.filters
│ │ │ ├── httpget_vs140.vcxproj
│ │ │ ├── httpget_vs140.vcxproj.filters
│ │ │ ├── httpget_vs150.vcxproj
│ │ │ ├── httpget_vs150.vcxproj.filters
│ │ │ ├── httpget_vs90.vcproj
│ │ │ ├── httpget_WEC2013_vs110.vcxproj
│ │ │ ├── httpget_WEC2013_vs110.vcxproj.filters
│ │ │ ├── httpget_WEC2013_vs120.vcxproj
│ │ │ ├── httpget_WEC2013_vs120.vcxproj.filters
│ │ │ ├── httpget_x64_vs100.vcxproj
│ │ │ ├── httpget_x64_vs100.vcxproj.filters
│ │ │ ├── httpget_x64_vs110.vcxproj
│ │ │ ├── httpget_x64_vs110.vcxproj.filters
│ │ │ ├── httpget_x64_vs120.vcxproj
│ │ │ ├── httpget_x64_vs120.vcxproj.filters
│ │ │ ├── httpget_x64_vs140.vcxproj
│ │ │ ├── httpget_x64_vs140.vcxproj.filters
│ │ │ ├── httpget_x64_vs150.vcxproj
│ │ │ ├── httpget_x64_vs150.vcxproj.filters
│ │ │ ├── httpget_x64_vs90.vcproj
│ │ │ ├── Makefile
│ │ │ └── src
│ │ │ └── httpget.cpp
│ │ ├── HTTPLoadTest
│ │ │ ├── CMakeLists.txt
│ │ │ ├── HTTPLoadTest_CE_vs90.vcproj
│ │ │ ├── HTTPLoadTest.progen
│ │ │ ├── HTTPLoadTest_vs100.vcxproj
│ │ │ ├── HTTPLoadTest_vs100.vcxproj.filters
│ │ │ ├── HTTPLoadTest_vs110.vcxproj
│ │ │ ├── HTTPLoadTest_vs110.vcxproj.filters
│ │ │ ├── HTTPLoadTest_vs120.vcxproj
│ │ │ ├── HTTPLoadTest_vs120.vcxproj.filters
│ │ │ ├── HTTPLoadTest_vs140.vcxproj
│ │ │ ├── HTTPLoadTest_vs140.vcxproj.filters
│ │ │ ├── HTTPLoadTest_vs150.vcxproj
│ │ │ ├── HTTPLoadTest_vs150.vcxproj.filters
│ │ │ ├── HTTPLoadTest_vs90.vcproj
│ │ │ ├── HTTPLoadTest_WEC2013_vs110.vcxproj
│ │ │ ├── HTTPLoadTest_WEC2013_vs110.vcxproj.filters
│ │ │ ├── HTTPLoadTest_WEC2013_vs120.vcxproj
│ │ │ ├── HTTPLoadTest_WEC2013_vs120.vcxproj.filters
│ │ │ ├── HTTPLoadTest_x64_vs100.vcxproj
│ │ │ ├── HTTPLoadTest_x64_vs100.vcxproj.filters
│ │ │ ├── HTTPLoadTest_x64_vs110.vcxproj
│ │ │ ├── HTTPLoadTest_x64_vs110.vcxproj.filters
│ │ │ ├── HTTPLoadTest_x64_vs120.vcxproj
│ │ │ ├── HTTPLoadTest_x64_vs120.vcxproj.filters
│ │ │ ├── HTTPLoadTest_x64_vs140.vcxproj
│ │ │ ├── HTTPLoadTest_x64_vs140.vcxproj.filters
│ │ │ ├── HTTPLoadTest_x64_vs150.vcxproj
│ │ │ ├── HTTPLoadTest_x64_vs150.vcxproj.filters
│ │ │ ├── HTTPLoadTest_x64_vs90.vcproj
│ │ │ ├── Makefile
│ │ │ └── src
│ │ │ └── HTTPLoadTest.cpp
│ │ ├── HTTPTimeServer
│ │ │ ├── CMakeLists.txt
│ │ │ ├── HTTPTimeServer_CE_vs90.vcproj
│ │ │ ├── HTTPTimeServer.progen
│ │ │ ├── HTTPTimeServer.properties
│ │ │ ├── HTTPTimeServer_vs100.vcxproj
│ │ │ ├── HTTPTimeServer_vs100.vcxproj.filters
│ │ │ ├── HTTPTimeServer_vs110.vcxproj
│ │ │ ├── HTTPTimeServer_vs110.vcxproj.filters
│ │ │ ├── HTTPTimeServer_vs120.vcxproj
│ │ │ ├── HTTPTimeServer_vs120.vcxproj.filters
│ │ │ ├── HTTPTimeServer_vs140.vcxproj
│ │ │ ├── HTTPTimeServer_vs140.vcxproj.filters
│ │ │ ├── HTTPTimeServer_vs150.vcxproj
│ │ │ ├── HTTPTimeServer_vs150.vcxproj.filters
│ │ │ ├── HTTPTimeServer_vs90.vcproj
│ │ │ ├── HTTPTimeServer_WEC2013_vs110.vcxproj
│ │ │ ├── HTTPTimeServer_WEC2013_vs110.vcxproj.filters
│ │ │ ├── HTTPTimeServer_WEC2013_vs120.vcxproj
│ │ │ ├── HTTPTimeServer_WEC2013_vs120.vcxproj.filters
│ │ │ ├── HTTPTimeServer_x64_vs100.vcxproj
│ │ │ ├── HTTPTimeServer_x64_vs100.vcxproj.filters
│ │ │ ├── HTTPTimeServer_x64_vs110.vcxproj
│ │ │ ├── HTTPTimeServer_x64_vs110.vcxproj.filters
│ │ │ ├── HTTPTimeServer_x64_vs120.vcxproj
│ │ │ ├── HTTPTimeServer_x64_vs120.vcxproj.filters
│ │ │ ├── HTTPTimeServer_x64_vs140.vcxproj
│ │ │ ├── HTTPTimeServer_x64_vs140.vcxproj.filters
│ │ │ ├── HTTPTimeServer_x64_vs150.vcxproj
│ │ │ ├── HTTPTimeServer_x64_vs150.vcxproj.filters
│ │ │ ├── HTTPTimeServer_x64_vs90.vcproj
│ │ │ ├── Makefile
│ │ │ └── src
│ │ │ └── HTTPTimeServer.cpp
│ │ ├── ifconfig
│ │ │ ├── CMakeLists.txt
│ │ │ ├── ifconfig_CE_vs90.vcproj
│ │ │ ├── ifconfig.progen
│ │ │ ├── ifconfig_vs100.vcxproj
│ │ │ ├── ifconfig_vs100.vcxproj.filters
│ │ │ ├── ifconfig_vs110.vcxproj
│ │ │ ├── ifconfig_vs110.vcxproj.filters
│ │ │ ├── ifconfig_vs120.vcxproj
│ │ │ ├── ifconfig_vs120.vcxproj.filters
│ │ │ ├── ifconfig_vs140.vcxproj
│ │ │ ├── ifconfig_vs140.vcxproj.filters
│ │ │ ├── ifconfig_vs150.vcxproj
│ │ │ ├── ifconfig_vs150.vcxproj.filters
│ │ │ ├── ifconfig_vs90.vcproj
│ │ │ ├── ifconfig_WEC2013_vs110.vcxproj
│ │ │ ├── ifconfig_WEC2013_vs110.vcxproj.filters
│ │ │ ├── ifconfig_WEC2013_vs120.vcxproj
│ │ │ ├── ifconfig_WEC2013_vs120.vcxproj.filters
│ │ │ ├── ifconfig_x64_vs100.vcxproj
│ │ │ ├── ifconfig_x64_vs100.vcxproj.filters
│ │ │ ├── ifconfig_x64_vs110.vcxproj
│ │ │ ├── ifconfig_x64_vs110.vcxproj.filters
│ │ │ ├── ifconfig_x64_vs120.vcxproj
│ │ │ ├── ifconfig_x64_vs120.vcxproj.filters
│ │ │ ├── ifconfig_x64_vs140.vcxproj
│ │ │ ├── ifconfig_x64_vs140.vcxproj.filters
│ │ │ ├── ifconfig_x64_vs150.vcxproj
│ │ │ ├── ifconfig_x64_vs150.vcxproj.filters
│ │ │ ├── ifconfig_x64_vs90.vcproj
│ │ │ ├── Makefile
│ │ │ └── src
│ │ │ └── ifconfig.cpp
│ │ │ ├── CMakeLists.txt
│ │ │ ├── Mail_CE_vs90.vcproj
│ │ │ ├── Mail.progen
│ │ │ ├── Mail_vs100.vcxproj
│ │ │ ├── Mail_vs100.vcxproj.filters
│ │ │ ├── Mail_vs110.vcxproj
│ │ │ ├── Mail_vs110.vcxproj.filters
│ │ │ ├── Mail_vs120.vcxproj
│ │ │ ├── Mail_vs120.vcxproj.filters
│ │ │ ├── Mail_vs140.vcxproj
│ │ │ ├── Mail_vs140.vcxproj.filters
│ │ │ ├── Mail_vs150.vcxproj
│ │ │ ├── Mail_vs150.vcxproj.filters
│ │ │ ├── Mail_vs90.vcproj
│ │ │ ├── Mail_WEC2013_vs110.vcxproj
│ │ │ ├── Mail_WEC2013_vs110.vcxproj.filters
│ │ │ ├── Mail_WEC2013_vs120.vcxproj
│ │ │ ├── Mail_WEC2013_vs120.vcxproj.filters
│ │ │ ├── Mail_x64_vs100.vcxproj
│ │ │ ├── Mail_x64_vs100.vcxproj.filters
│ │ │ ├── Mail_x64_vs110.vcxproj
│ │ │ ├── Mail_x64_vs110.vcxproj.filters
│ │ │ ├── Mail_x64_vs120.vcxproj
│ │ │ ├── Mail_x64_vs120.vcxproj.filters
│ │ │ ├── Mail_x64_vs140.vcxproj
│ │ │ ├── Mail_x64_vs140.vcxproj.filters
│ │ │ ├── Mail_x64_vs150.vcxproj
│ │ │ ├── Mail_x64_vs150.vcxproj.filters
│ │ │ ├── Mail_x64_vs90.vcproj
│ │ │ ├── Makefile
│ │ │ └── src
│ │ │ ├── Mail.cpp
│ │ │ └── PocoLogo.hpp
│ │ ├── Makefile
│ │ ├── Ping
│ │ │ ├── CMakeLists.txt
│ │ │ ├── Makefile
│ │ │ ├── Ping_CE_vs90.vcproj
│ │ │ ├── Ping.progen
│ │ │ ├── ping.properties
│ │ │ ├── Ping_vs100.vcxproj
│ │ │ ├── Ping_vs100.vcxproj.filters
│ │ │ ├── Ping_vs110.vcxproj
│ │ │ ├── Ping_vs110.vcxproj.filters
│ │ │ ├── Ping_vs120.vcxproj
│ │ │ ├── Ping_vs120.vcxproj.filters
│ │ │ ├── Ping_vs140.vcxproj
│ │ │ ├── Ping_vs140.vcxproj.filters
│ │ │ ├── Ping_vs150.vcxproj
│ │ │ ├── Ping_vs150.vcxproj.filters
│ │ │ ├── Ping_vs90.vcproj
│ │ │ ├── Ping_WEC2013_vs110.vcxproj
│ │ │ ├── Ping_WEC2013_vs110.vcxproj.filters
│ │ │ ├── Ping_WEC2013_vs120.vcxproj
│ │ │ ├── Ping_WEC2013_vs120.vcxproj.filters
│ │ │ ├── Ping_x64_vs100.vcxproj
│ │ │ ├── Ping_x64_vs100.vcxproj.filters
│ │ │ ├── Ping_x64_vs110.vcxproj
│ │ │ ├── Ping_x64_vs110.vcxproj.filters
│ │ │ ├── Ping_x64_vs120.vcxproj
│ │ │ ├── Ping_x64_vs120.vcxproj.filters
│ │ │ ├── Ping_x64_vs140.vcxproj
│ │ │ ├── Ping_x64_vs140.vcxproj.filters
│ │ │ ├── Ping_x64_vs150.vcxproj
│ │ │ ├── Ping_x64_vs150.vcxproj.filters
│ │ │ ├── Ping_x64_vs90.vcproj
│ │ │ └── src
│ │ │ └── Ping.cpp
│ │ ├── samples_CE_vs90.sln
│ │ ├── samples.progen
│ │ ├── samples_vs100.sln
│ │ ├── samples_vs110.sln
│ │ ├── samples_vs120.sln
│ │ ├── samples_vs140.sln
│ │ ├── samples_vs150.sln
│ │ ├── samples_vs90.sln
│ │ ├── samples_WEC2013_vs110.sln
│ │ ├── samples_WEC2013_vs120.sln
│ │ ├── samples_x64_vs100.sln
│ │ ├── samples_x64_vs110.sln
│ │ ├── samples_x64_vs120.sln
│ │ ├── samples_x64_vs140.sln
│ │ ├── samples_x64_vs150.sln
│ │ ├── samples_x64_vs90.sln
│ │ ├── SMTPLogger
│ │ │ ├── CMakeLists.txt
│ │ │ ├── Makefile
│ │ │ ├── res
│ │ │ │ └── logo.gif
│ │ │ ├── SMTPLogger_CE_vs90.vcproj
│ │ │ ├── SMTPLogger.progen
│ │ │ ├── SMTPLogger_vs100.vcxproj
│ │ │ ├── SMTPLogger_vs100.vcxproj.filters
│ │ │ ├── SMTPLogger_vs110.vcxproj
│ │ │ ├── SMTPLogger_vs110.vcxproj.filters
│ │ │ ├── SMTPLogger_vs120.vcxproj
│ │ │ ├── SMTPLogger_vs120.vcxproj.filters
│ │ │ ├── SMTPLogger_vs140.vcxproj
│ │ │ ├── SMTPLogger_vs140.vcxproj.filters
│ │ │ ├── SMTPLogger_vs150.vcxproj
│ │ │ ├── SMTPLogger_vs150.vcxproj.filters
│ │ │ ├── SMTPLogger_vs90.vcproj
│ │ │ ├── SMTPLogger_WEC2013_vs110.vcxproj
│ │ │ ├── SMTPLogger_WEC2013_vs110.vcxproj.filters
│ │ │ ├── SMTPLogger_WEC2013_vs120.vcxproj
│ │ │ ├── SMTPLogger_WEC2013_vs120.vcxproj.filters
│ │ │ ├── SMTPLogger_x64_vs100.vcxproj
│ │ │ ├── SMTPLogger_x64_vs100.vcxproj.filters
│ │ │ ├── SMTPLogger_x64_vs110.vcxproj
│ │ │ ├── SMTPLogger_x64_vs110.vcxproj.filters
│ │ │ ├── SMTPLogger_x64_vs120.vcxproj
│ │ │ ├── SMTPLogger_x64_vs120.vcxproj.filters
│ │ │ ├── SMTPLogger_x64_vs140.vcxproj
│ │ │ ├── SMTPLogger_x64_vs140.vcxproj.filters
│ │ │ ├── SMTPLogger_x64_vs150.vcxproj
│ │ │ ├── SMTPLogger_x64_vs150.vcxproj.filters
│ │ │ ├── SMTPLogger_x64_vs90.vcproj
│ │ │ └── src
│ │ │ └── SMTPLogger.cpp
│ │ ├── TimeServer
│ │ │ ├── CMakeLists.txt
│ │ │ ├── Makefile
│ │ │ ├── src
│ │ │ │ └── TimeServer.cpp
│ │ │ ├── TimeServer_CE_vs90.vcproj
│ │ │ ├── TimeServer.progen
│ │ │ ├── TimeServer.properties
│ │ │ ├── TimeServer_vs100.vcxproj
│ │ │ ├── TimeServer_vs100.vcxproj.filters
│ │ │ ├── TimeServer_vs110.vcxproj
│ │ │ ├── TimeServer_vs110.vcxproj.filters
│ │ │ ├── TimeServer_vs120.vcxproj
│ │ │ ├── TimeServer_vs120.vcxproj.filters
│ │ │ ├── TimeServer_vs140.vcxproj
│ │ │ ├── TimeServer_vs140.vcxproj.filters
│ │ │ ├── TimeServer_vs150.vcxproj
│ │ │ ├── TimeServer_vs150.vcxproj.filters
│ │ │ ├── TimeServer_vs90.vcproj
│ │ │ ├── TimeServer_WEC2013_vs110.vcxproj
│ │ │ ├── TimeServer_WEC2013_vs110.vcxproj.filters
│ │ │ ├── TimeServer_WEC2013_vs120.vcxproj
│ │ │ ├── TimeServer_WEC2013_vs120.vcxproj.filters
│ │ │ ├── TimeServer_x64_vs100.vcxproj
│ │ │ ├── TimeServer_x64_vs100.vcxproj.filters
│ │ │ ├── TimeServer_x64_vs110.vcxproj
│ │ │ ├── TimeServer_x64_vs110.vcxproj.filters
│ │ │ ├── TimeServer_x64_vs120.vcxproj
│ │ │ ├── TimeServer_x64_vs120.vcxproj.filters
│ │ │ ├── TimeServer_x64_vs140.vcxproj
│ │ │ ├── TimeServer_x64_vs140.vcxproj.filters
│ │ │ ├── TimeServer_x64_vs150.vcxproj
│ │ │ ├── TimeServer_x64_vs150.vcxproj.filters
│ │ │ └── TimeServer_x64_vs90.vcproj
│ │ └── WebSocketServer
│ │ ├── CMakeLists.txt
│ │ ├── Makefile
│ │ ├── src
│ │ │ └── WebSocketServer.cpp
│ │ ├── WebSocketServer_CE_vs90.vcproj
│ │ ├── WebSocketServer.progen
│ │ ├── WebSocketServer_vs100.vcxproj
│ │ ├── WebSocketServer_vs100.vcxproj.filters
│ │ ├── WebSocketServer_vs110.vcxproj
│ │ ├── WebSocketServer_vs110.vcxproj.filters
│ │ ├── WebSocketServer_vs120.vcxproj
│ │ ├── WebSocketServer_vs120.vcxproj.filters
│ │ ├── WebSocketServer_vs140.vcxproj
│ │ ├── WebSocketServer_vs140.vcxproj.filters
│ │ ├── WebSocketServer_vs150.vcxproj
│ │ ├── WebSocketServer_vs150.vcxproj.filters
│ │ ├── WebSocketServer_vs90.vcproj
│ │ ├── WebSocketServer_WEC2013_vs110.vcxproj
│ │ ├── WebSocketServer_WEC2013_vs110.vcxproj.filters
│ │ ├── WebSocketServer_WEC2013_vs120.vcxproj
│ │ ├── WebSocketServer_WEC2013_vs120.vcxproj.filters
│ │ ├── WebSocketServer_x64_vs100.vcxproj
│ │ ├── WebSocketServer_x64_vs100.vcxproj.filters
│ │ ├── WebSocketServer_x64_vs110.vcxproj
│ │ ├── WebSocketServer_x64_vs110.vcxproj.filters
│ │ ├── WebSocketServer_x64_vs120.vcxproj
│ │ ├── WebSocketServer_x64_vs120.vcxproj.filters
│ │ ├── WebSocketServer_x64_vs140.vcxproj
│ │ ├── WebSocketServer_x64_vs140.vcxproj.filters
│ │ ├── WebSocketServer_x64_vs150.vcxproj
│ │ ├── WebSocketServer_x64_vs150.vcxproj.filters
│ │ └── WebSocketServer_x64_vs90.vcproj
│ ├── src
│ │ ├── AbstractHTTPRequestHandler.cpp
│ │ ├── DatagramSocket.cpp
│ │ ├── DatagramSocketImpl.cpp
│ │ ├── DialogSocket.cpp
│ │ ├── DNS.cpp
│ │ ├── FilePartSource.cpp
│ │ ├── FTPClientSession.cpp
│ │ ├── FTPStreamFactory.cpp
│ │ ├── HostEntry.cpp
│ │ ├── HTMLForm.cpp
│ │ ├── HTTPAuthenticationParams.cpp
│ │ ├── HTTPBasicCredentials.cpp
│ │ ├── HTTPBufferAllocator.cpp
│ │ ├── HTTPChunkedStream.cpp
│ │ ├── HTTPClientSession.cpp
│ │ ├── HTTPCookie.cpp
│ │ ├── HTTPCredentials.cpp
│ │ ├── HTTPDigestCredentials.cpp
│ │ ├── HTTPFixedLengthStream.cpp
│ │ ├── HTTPHeaderStream.cpp
│ │ ├── HTTPIOStream.cpp
│ │ ├── HTTPMessage.cpp
│ │ ├── HTTPRequest.cpp
│ │ ├── HTTPRequestHandler.cpp
│ │ ├── HTTPRequestHandlerFactory.cpp
│ │ ├── HTTPResponse.cpp
│ │ ├── HTTPServerConnection.cpp
│ │ ├── HTTPServerConnectionFactory.cpp
│ │ ├── HTTPServer.cpp
│ │ ├── HTTPServerParams.cpp
│ │ ├── HTTPServerRequest.cpp
│ │ ├── HTTPServerRequestImpl.cpp
│ │ ├── HTTPServerResponse.cpp
│ │ ├── HTTPServerResponseImpl.cpp
│ │ ├── HTTPServerSession.cpp
│ │ ├── HTTPSession.cpp
│ │ ├── HTTPSessionFactory.cpp
│ │ ├── HTTPSessionInstantiator.cpp
│ │ ├── HTTPStream.cpp
│ │ ├── HTTPStreamFactory.cpp
│ │ ├── ICMPClient.cpp
│ │ ├── ICMPEventArgs.cpp
│ │ ├── ICMPPacket.cpp
│ │ ├── ICMPPacketImpl.cpp
│ │ ├── ICMPSocket.cpp
│ │ ├── ICMPSocketImpl.cpp
│ │ ├── ICMPv4PacketImpl.cpp
│ │ ├── IPAddress.cpp
│ │ ├── IPAddressImpl.cpp
│ │ ├── MailMessage.cpp
│ │ ├── MailRecipient.cpp
│ │ ├── MailStream.cpp
│ │ ├── MediaType.cpp
│ │ ├── MessageHeader.cpp
│ │ ├── MulticastSocket.cpp
│ │ ├── MultipartReader.cpp
│ │ ├── MultipartWriter.cpp
│ │ ├── NameValueCollection.cpp
│ │ ├── Net.cpp
│ │ ├── NetException.cpp
│ │ ├── NetworkInterface.cpp
│ │ ├── NTPClient.cpp
│ │ ├── NTPEventArgs.cpp
│ │ ├── NTPPacket.cpp
│ │ ├── NullPartHandler.cpp
│ │ ├── OAuth10Credentials.cpp
│ │ ├── OAuth20Credentials.cpp
│ │ ├── PartHandler.cpp
│ │ ├── PartSource.cpp
│ │ ├── PartStore.cpp
│ │ ├── PollSet.cpp
│ │ ├── POP3ClientSession.cpp
│ │ ├── QuotedPrintableDecoder.cpp
│ │ ├── QuotedPrintableEncoder.cpp
│ │ ├── RawSocket.cpp
│ │ ├── RawSocketImpl.cpp
│ │ ├── RemoteSyslogChannel.cpp
│ │ ├── RemoteSyslogListener.cpp
│ │ ├── ServerSocket.cpp
│ │ ├── ServerSocketImpl.cpp
│ │ ├── SMTPChannel.cpp
│ │ ├── SMTPClientSession.cpp
│ │ ├── SocketAddress.cpp
│ │ ├── SocketAddressImpl.cpp
│ │ ├── Socket.cpp
│ │ ├── SocketImpl.cpp
│ │ ├── SocketNotification.cpp
│ │ ├── SocketNotifier.cpp
│ │ ├── SocketReactor.cpp
│ │ ├── SocketStream.cpp
│ │ ├── StreamSocket.cpp
│ │ ├── StreamSocketImpl.cpp
│ │ ├── StringPartSource.cpp
│ │ ├── TCPServerConnection.cpp
│ │ ├── TCPServerConnectionFactory.cpp
│ │ ├── TCPServer.cpp
│ │ ├── TCPServerDispatcher.cpp
│ │ ├── TCPServerParams.cpp
│ │ ├── WebSocket.cpp
│ │ └── WebSocketImpl.cpp
│ └── testsuite
│ ├── CMakeLists.txt
│ ├── Makefile
│ ├── src
│ │ ├── DatagramSocketTest.cpp
│ │ ├── DatagramSocketTest.h
│ │ ├── DialogServer.cpp
│ │ ├── DialogServer.h
│ │ ├── DialogSocketTest.cpp
│ │ ├── DialogSocketTest.h
│ │ ├── DNSTest.cpp
│ │ ├── DNSTest.h
│ │ ├── Driver.cpp
│ │ ├── EchoServer.cpp
│ │ ├── EchoServer.h
│ │ ├── FTPClientSessionTest.cpp
│ │ ├── FTPClientSessionTest.h
│ │ ├── FTPClientTestSuite.cpp
│ │ ├── FTPClientTestSuite.h
│ │ ├── FTPStreamFactoryTest.cpp
│ │ ├── FTPStreamFactoryTest.h
│ │ ├── HTMLFormTest.cpp
│ │ ├── HTMLFormTest.h
│ │ ├── HTMLTestSuite.cpp
│ │ ├── HTMLTestSuite.h
│ │ ├── HTTPClientSessionTest.cpp
│ │ ├── HTTPClientSessionTest.h
│ │ ├── HTTPClientTestSuite.cpp
│ │ ├── HTTPClientTestSuite.h
│ │ ├── HTTPCookieTest.cpp
│ │ ├── HTTPCookieTest.h
│ │ ├── HTTPCredentialsTest.cpp
│ │ ├── HTTPCredentialsTest.h
│ │ ├── HTTPRequestTest.cpp
│ │ ├── HTTPRequestTest.h
│ │ ├── HTTPResponseTest.cpp
│ │ ├── HTTPResponseTest.h
│ │ ├── HTTPServerTest.cpp
│ │ ├── HTTPServerTest.h
│ │ ├── HTTPServerTestSuite.cpp
│ │ ├── HTTPServerTestSuite.h
│ │ ├── HTTPStreamFactoryTest.cpp
│ │ ├── HTTPStreamFactoryTest.h
│ │ ├── HTTPTestServer.cpp
│ │ ├── HTTPTestServer.h
│ │ ├── HTTPTestSuite.cpp
│ │ ├── HTTPTestSuite.h
│ │ ├── ICMPClientTest.cpp
│ │ ├── ICMPClientTest.h
│ │ ├── ICMPClientTestSuite.cpp
│ │ ├── ICMPClientTestSuite.h
│ │ ├── ICMPSocketTest.cpp
│ │ ├── ICMPSocketTest.h
│ │ ├── IPAddressTest.cpp
│ │ ├── IPAddressTest.h
│ │ ├── MailMessageTest.cpp
│ │ ├── MailMessageTest.h
│ │ ├── MailStreamTest.cpp
│ │ ├── MailStreamTest.h
│ │ ├── MailTestSuite.cpp
│ │ ├── MailTestSuite.h
│ │ ├── MediaTypeTest.cpp
│ │ ├── MediaTypeTest.h
│ │ ├── MessageHeaderTest.cpp
│ │ ├── MessageHeaderTest.h
│ │ ├── MessagesTestSuite.cpp
│ │ ├── MessagesTestSuite.h
│ │ ├── MulticastEchoServer.cpp
│ │ ├── MulticastEchoServer.h
│ │ ├── MulticastSocketTest.cpp
│ │ ├── MulticastSocketTest.h
│ │ ├── MultipartReaderTest.cpp
│ │ ├── MultipartReaderTest.h
│ │ ├── MultipartWriterTest.cpp
│ │ ├── MultipartWriterTest.h
│ │ ├── NameValueCollectionTest.cpp
│ │ ├── NameValueCollectionTest.h
│ │ ├── NetCoreTestSuite.cpp
│ │ ├── NetCoreTestSuite.h
│ │ ├── NetTestSuite.cpp
│ │ ├── NetTestSuite.h
│ │ ├── NetworkInterfaceTest.cpp
│ │ ├── NetworkInterfaceTest.h
│ │ ├── NTPClientTest.cpp
│ │ ├── NTPClientTest.h
│ │ ├── NTPClientTestSuite.cpp
│ │ ├── NTPClientTestSuite.h
│ │ ├── OAuth10CredentialsTest.cpp
│ │ ├── OAuth10CredentialsTest.h
│ │ ├── OAuth20CredentialsTest.cpp
│ │ ├── OAuth20CredentialsTest.h
│ │ ├── OAuthTestSuite.cpp
│ │ ├── OAuthTestSuite.h
│ │ ├── PollSetTest.cpp
│ │ ├── PollSetTest.h
│ │ ├── POP3ClientSessionTest.cpp
│ │ ├── POP3ClientSessionTest.h
│ │ ├── QuotedPrintableTest.cpp
│ │ ├── QuotedPrintableTest.h
│ │ ├── RawSocketTest.cpp
│ │ ├── RawSocketTest.h
│ │ ├── ReactorTestSuite.cpp
│ │ ├── ReactorTestSuite.h
│ │ ├── SMTPClientSessionTest.cpp
│ │ ├── SMTPClientSessionTest.h
│ │ ├── SocketAddressTest.cpp
│ │ ├── SocketAddressTest.h
│ │ ├── SocketReactorTest.cpp
│ │ ├── SocketReactorTest.h
│ │ ├── SocketsTestSuite.cpp
│ │ ├── SocketsTestSuite.h
│ │ ├── SocketStreamTest.cpp
│ │ ├── SocketStreamTest.h
│ │ ├── SocketTest.cpp
│ │ ├── SocketTest.h
│ │ ├── SyslogTest.cpp
│ │ ├── SyslogTest.h
│ │ ├── TCPServerTest.cpp
│ │ ├── TCPServerTest.h
│ │ ├── TCPServerTestSuite.cpp
│ │ ├── TCPServerTestSuite.h
│ │ ├── UDPEchoServer.cpp
│ │ ├── UDPEchoServer.h
│ │ ├── WebSocketTest.cpp
│ │ ├── WebSocketTest.h
│ │ ├── WebSocketTestSuite.cpp
│ │ ├── WebSocketTestSuite.h
│ │ ├── WinCEDriver.cpp
│ │ └── WinDriver.cpp
│ ├── TestSuite_CE_vs90.vcproj
│ ├── TestSuite.progen
│ ├── TestSuite_vs100.vcxproj
│ ├── TestSuite_vs100.vcxproj.filters
│ ├── TestSuite_vs110.vcxproj
│ ├── TestSuite_vs110.vcxproj.filters
│ ├── TestSuite_vs120.vcxproj
│ ├── TestSuite_vs120.vcxproj.filters
│ ├── TestSuite_vs140.vcxproj
│ ├── TestSuite_vs140.vcxproj.filters
│ ├── TestSuite_vs150.vcxproj
│ ├── TestSuite_vs150.vcxproj.filters
│ ├── TestSuite_vs90.vcproj
│ ├── TestSuite_WEC2013_vs110.vcxproj
│ ├── TestSuite_WEC2013_vs110.vcxproj.filters
│ ├── TestSuite_WEC2013_vs120.vcxproj
│ ├── TestSuite_WEC2013_vs120.vcxproj.filters
│ ├── TestSuite_x64_vs100.vcxproj
│ ├── TestSuite_x64_vs100.vcxproj.filters
│ ├── TestSuite_x64_vs110.vcxproj
│ ├── TestSuite_x64_vs110.vcxproj.filters
│ ├── TestSuite_x64_vs120.vcxproj
│ ├── TestSuite_x64_vs120.vcxproj.filters
│ ├── TestSuite_x64_vs140.vcxproj
│ ├── TestSuite_x64_vs140.vcxproj.filters
│ ├── TestSuite_x64_vs150.vcxproj
│ ├── TestSuite_x64_vs150.vcxproj.filters
│ └── TestSuite_x64_vs90.vcproj
├── NetSSL_OpenSSL
│ ├── cmake
│ │ └── PocoNetSSLConfig.cmake
│ ├── CMakeLists.txt
│ ├── doc
│ │ └── howtobuild.txt
│ ├── include
│ │ └── Poco
│ │ └── Net
│ │ ├── AcceptCertificateHandler.h
│ │ ├── CertificateHandlerFactory.h
│ │ ├── CertificateHandlerFactoryMgr.h
│ │ ├── ConsoleCertificateHandler.h
│ │ ├── Context.h
│ │ ├── HTTPSClientSession.h
│ │ ├── HTTPSSessionInstantiator.h
│ │ ├── HTTPSStreamFactory.h
│ │ ├── InvalidCertificateHandler.h
│ │ ├── KeyConsoleHandler.h
│ │ ├── KeyFileHandler.h
│ │ ├── NetSSL.h
│ │ ├── PrivateKeyFactory.h
│ │ ├── PrivateKeyFactoryMgr.h
│ │ ├── PrivateKeyPassphraseHandler.h
│ │ ├── RejectCertificateHandler.h
│ │ ├── SecureServerSocket.h
│ │ ├── SecureServerSocketImpl.h
│ │ ├── SecureSMTPClientSession.h
│ │ ├── SecureSocketImpl.h
│ │ ├── SecureStreamSocket.h
│ │ ├── SecureStreamSocketImpl.h
│ │ ├── Session.h
│ │ ├── SSLException.h
│ │ ├── SSLManager.h
│ │ ├── Utility.h
│ │ ├── VerificationErrorArgs.h
│ │ └── X509Certificate.h
│ ├── Makefile
│ ├── NetSSL_OpenSSL_CE_vs90.sln
│ ├── NetSSL_OpenSSL_CE_vs90.vcproj
│ ├── NetSSL_OpenSSL.progen
│ ├── NetSSL_OpenSSL_vs100.sln
│ ├── NetSSL_OpenSSL_vs100.vcxproj
│ ├── NetSSL_OpenSSL_vs100.vcxproj.filters
│ ├── NetSSL_OpenSSL_vs110.sln
│ ├── NetSSL_OpenSSL_vs110.vcxproj
│ ├── NetSSL_OpenSSL_vs110.vcxproj.filters
│ ├── NetSSL_OpenSSL_vs120.sln
│ ├── NetSSL_OpenSSL_vs120.vcxproj
│ ├── NetSSL_OpenSSL_vs120.vcxproj.filters
│ ├── NetSSL_OpenSSL_vs140.sln
│ ├── NetSSL_OpenSSL_vs140.vcxproj
│ ├── NetSSL_OpenSSL_vs140.vcxproj.filters
│ ├── NetSSL_OpenSSL_vs150.sln
│ ├── NetSSL_OpenSSL_vs150.vcxproj
│ ├── NetSSL_OpenSSL_vs150.vcxproj.filters
│ ├── NetSSL_OpenSSL_vs90.sln
│ ├── NetSSL_OpenSSL_vs90.vcproj
│ ├── NetSSL_OpenSSL_WEC2013_vs110.sln
│ ├── NetSSL_OpenSSL_WEC2013_vs110.vcxproj
│ ├── NetSSL_OpenSSL_WEC2013_vs110.vcxproj.filters
│ ├── NetSSL_OpenSSL_WEC2013_vs120.sln
│ ├── NetSSL_OpenSSL_WEC2013_vs120.vcxproj
│ ├── NetSSL_OpenSSL_WEC2013_vs120.vcxproj.filters
│ ├── NetSSL_OpenSSL_x64_vs100.sln
│ ├── NetSSL_OpenSSL_x64_vs100.vcxproj
│ ├── NetSSL_OpenSSL_x64_vs100.vcxproj.filters
│ ├── NetSSL_OpenSSL_x64_vs110.sln
│ ├── NetSSL_OpenSSL_x64_vs110.vcxproj
│ ├── NetSSL_OpenSSL_x64_vs110.vcxproj.filters
│ ├── NetSSL_OpenSSL_x64_vs120.sln
│ ├── NetSSL_OpenSSL_x64_vs120.vcxproj
│ ├── NetSSL_OpenSSL_x64_vs120.vcxproj.filters
│ ├── NetSSL_OpenSSL_x64_vs140.sln
│ ├── NetSSL_OpenSSL_x64_vs140.vcxproj
│ ├── NetSSL_OpenSSL_x64_vs140.vcxproj.filters
│ ├── NetSSL_OpenSSL_x64_vs150.sln
│ ├── NetSSL_OpenSSL_x64_vs150.vcxproj
│ ├── NetSSL_OpenSSL_x64_vs150.vcxproj.filters
│ ├── NetSSL_OpenSSL_x64_vs90.sln
│ ├── NetSSL_OpenSSL_x64_vs90.vcproj
│ ├── samples
│ │ ├── CMakeLists.txt
│ │ ├── download
│ │ │ ├── CMakeLists.txt
│ │ │ ├── download_CE_vs90.vcproj
│ │ │ ├── download.progen
│ │ │ ├── download_vs100.vcxproj
│ │ │ ├── download_vs100.vcxproj.filters
│ │ │ ├── download_vs110.vcxproj
│ │ │ ├── download_vs110.vcxproj.filters
│ │ │ ├── download_vs120.vcxproj
│ │ │ ├── download_vs120.vcxproj.filters
│ │ │ ├── download_vs140.vcxproj
│ │ │ ├── download_vs140.vcxproj.filters
│ │ │ ├── download_vs150.vcxproj
│ │ │ ├── download_vs150.vcxproj.filters
│ │ │ ├── download_vs90.vcproj
│ │ │ ├── download_WEC2013_vs110.vcxproj
│ │ │ ├── download_WEC2013_vs110.vcxproj.filters
│ │ │ ├── download_WEC2013_vs120.vcxproj
│ │ │ ├── download_WEC2013_vs120.vcxproj.filters
│ │ │ ├── download_x64_vs100.vcxproj
│ │ │ ├── download_x64_vs100.vcxproj.filters
│ │ │ ├── download_x64_vs110.vcxproj
│ │ │ ├── download_x64_vs110.vcxproj.filters
│ │ │ ├── download_x64_vs120.vcxproj
│ │ │ ├── download_x64_vs120.vcxproj.filters
│ │ │ ├── download_x64_vs140.vcxproj
│ │ │ ├── download_x64_vs140.vcxproj.filters
│ │ │ ├── download_x64_vs150.vcxproj
│ │ │ ├── download_x64_vs150.vcxproj.filters
│ │ │ ├── download_x64_vs90.vcproj
│ │ │ ├── Makefile
│ │ │ ├── rootcert.pem
│ │ │ └── src
│ │ │ └── download.cpp
│ │ ├── HTTPSTimeServer
│ │ │ ├── any.pem
│ │ │ ├── CMakeLists.txt
│ │ │ ├── HTTPSTimeServer_CE_vs90.vcproj
│ │ │ ├── HTTPSTimeServer.progen
│ │ │ ├── HTTPSTimeServer.properties
│ │ │ ├── HTTPSTimeServer_vs100.vcxproj
│ │ │ ├── HTTPSTimeServer_vs100.vcxproj.filters
│ │ │ ├── HTTPSTimeServer_vs110.vcxproj
│ │ │ ├── HTTPSTimeServer_vs110.vcxproj.filters
│ │ │ ├── HTTPSTimeServer_vs120.vcxproj
│ │ │ ├── HTTPSTimeServer_vs120.vcxproj.filters
│ │ │ ├── HTTPSTimeServer_vs140.vcxproj
│ │ │ ├── HTTPSTimeServer_vs140.vcxproj.filters
│ │ │ ├── HTTPSTimeServer_vs150.vcxproj
│ │ │ ├── HTTPSTimeServer_vs150.vcxproj.filters
│ │ │ ├── HTTPSTimeServer_vs90.vcproj
│ │ │ ├── HTTPSTimeServer_WEC2013_vs110.vcxproj
│ │ │ ├── HTTPSTimeServer_WEC2013_vs110.vcxproj.filters
│ │ │ ├── HTTPSTimeServer_WEC2013_vs120.vcxproj
│ │ │ ├── HTTPSTimeServer_WEC2013_vs120.vcxproj.filters
│ │ │ ├── HTTPSTimeServer_x64_vs100.vcxproj
│ │ │ ├── HTTPSTimeServer_x64_vs100.vcxproj.filters
│ │ │ ├── HTTPSTimeServer_x64_vs110.vcxproj
│ │ │ ├── HTTPSTimeServer_x64_vs110.vcxproj.filters
│ │ │ ├── HTTPSTimeServer_x64_vs120.vcxproj
│ │ │ ├── HTTPSTimeServer_x64_vs120.vcxproj.filters
│ │ │ ├── HTTPSTimeServer_x64_vs140.vcxproj
│ │ │ ├── HTTPSTimeServer_x64_vs140.vcxproj.filters
│ │ │ ├── HTTPSTimeServer_x64_vs150.vcxproj
│ │ │ ├── HTTPSTimeServer_x64_vs150.vcxproj.filters
│ │ │ ├── HTTPSTimeServer_x64_vs90.vcproj
│ │ │ ├── Makefile
│ │ │ ├── rootcert.pem
│ │ │ └── src
│ │ │ └── HTTPSTimeServer.cpp
│ │ │ ├── CMakeLists.txt
│ │ │ ├── Mail_CE_vs90.vcproj
│ │ │ ├── Mail.progen
│ │ │ ├── Mail_vs100.vcxproj
│ │ │ ├── Mail_vs100.vcxproj.filters
│ │ │ ├── Mail_vs110.vcxproj
│ │ │ ├── Mail_vs110.vcxproj.filters
│ │ │ ├── Mail_vs120.vcxproj
│ │ │ ├── Mail_vs120.vcxproj.filters
│ │ │ ├── Mail_vs140.vcxproj
│ │ │ ├── Mail_vs140.vcxproj.filters
│ │ │ ├── Mail_vs150.vcxproj
│ │ │ ├── Mail_vs150.vcxproj.filters
│ │ │ ├── Mail_vs90.vcproj
│ │ │ ├── Mail_WEC2013_vs110.vcxproj
│ │ │ ├── Mail_WEC2013_vs110.vcxproj.filters
│ │ │ ├── Mail_WEC2013_vs120.vcxproj
│ │ │ ├── Mail_WEC2013_vs120.vcxproj.filters
│ │ │ ├── Mail_x64_vs100.vcxproj
│ │ │ ├── Mail_x64_vs100.vcxproj.filters
│ │ │ ├── Mail_x64_vs110.vcxproj
│ │ │ ├── Mail_x64_vs110.vcxproj.filters
│ │ │ ├── Mail_x64_vs120.vcxproj
│ │ │ ├── Mail_x64_vs120.vcxproj.filters
│ │ │ ├── Mail_x64_vs140.vcxproj
│ │ │ ├── Mail_x64_vs140.vcxproj.filters
│ │ │ ├── Mail_x64_vs150.vcxproj
│ │ │ ├── Mail_x64_vs150.vcxproj.filters
│ │ │ ├── Mail_x64_vs90.vcproj
│ │ │ ├── Makefile
│ │ │ └── src
│ │ │ ├── Mail.cpp
│ │ │ └── PocoLogo.hpp
│ │ ├── Makefile
│ │ ├── samples_CE_vs90.sln
│ │ ├── samples.progen
│ │ ├── samples_vs100.sln
│ │ ├── samples_vs110.sln
│ │ ├── samples_vs120.sln
│ │ ├── samples_vs140.sln
│ │ ├── samples_vs150.sln
│ │ ├── samples_vs90.sln
│ │ ├── samples_WEC2013_vs110.sln
│ │ ├── samples_WEC2013_vs120.sln
│ │ ├── samples_x64_vs100.sln
│ │ ├── samples_x64_vs110.sln
│ │ ├── samples_x64_vs120.sln
│ │ ├── samples_x64_vs140.sln
│ │ ├── samples_x64_vs150.sln
│ │ ├── samples_x64_vs90.sln
│ │ └── TwitterClient
│ │ ├── CMakeLists.txt
│ │ ├── Makefile
│ │ ├── src
│ │ │ ├── TweetApp.cpp
│ │ │ ├── Twitter.cpp
│ │ │ └── Twitter.h
│ │ ├── TwitterClient_CE_vs90.vcproj
│ │ ├── TwitterClient.progen
│ │ ├── TwitterClient_vs100.vcxproj
│ │ ├── TwitterClient_vs100.vcxproj.filters
│ │ ├── TwitterClient_vs110.vcxproj
│ │ ├── TwitterClient_vs110.vcxproj.filters
│ │ ├── TwitterClient_vs120.vcxproj
│ │ ├── TwitterClient_vs120.vcxproj.filters
│ │ ├── TwitterClient_vs140.vcxproj
│ │ ├── TwitterClient_vs140.vcxproj.filters
│ │ ├── TwitterClient_vs150.vcxproj
│ │ ├── TwitterClient_vs150.vcxproj.filters
│ │ ├── TwitterClient_vs90.vcproj
│ │ ├── TwitterClient_WEC2013_vs110.vcxproj
│ │ ├── TwitterClient_WEC2013_vs110.vcxproj.filters
│ │ ├── TwitterClient_WEC2013_vs120.vcxproj
│ │ ├── TwitterClient_WEC2013_vs120.vcxproj.filters
│ │ ├── TwitterClient_x64_vs100.vcxproj
│ │ ├── TwitterClient_x64_vs100.vcxproj.filters
│ │ ├── TwitterClient_x64_vs110.vcxproj
│ │ ├── TwitterClient_x64_vs110.vcxproj.filters
│ │ ├── TwitterClient_x64_vs120.vcxproj
│ │ ├── TwitterClient_x64_vs120.vcxproj.filters
│ │ ├── TwitterClient_x64_vs140.vcxproj
│ │ ├── TwitterClient_x64_vs140.vcxproj.filters
│ │ ├── TwitterClient_x64_vs150.vcxproj
│ │ ├── TwitterClient_x64_vs150.vcxproj.filters
│ │ └── TwitterClient_x64_vs90.vcproj
│ ├── src
│ │ ├── AcceptCertificateHandler.cpp
│ │ ├── CertificateHandlerFactory.cpp
│ │ ├── CertificateHandlerFactoryMgr.cpp
│ │ ├── ConsoleCertificateHandler.cpp
│ │ ├── Context.cpp
│ │ ├── HTTPSClientSession.cpp
│ │ ├── HTTPSSessionInstantiator.cpp
│ │ ├── HTTPSStreamFactory.cpp
│ │ ├── InvalidCertificateHandler.cpp
│ │ ├── KeyConsoleHandler.cpp
│ │ ├── KeyFileHandler.cpp
│ │ ├── PrivateKeyFactory.cpp
│ │ ├── PrivateKeyFactoryMgr.cpp
│ │ ├── PrivateKeyPassphraseHandler.cpp
│ │ ├── RejectCertificateHandler.cpp
│ │ ├── SecureServerSocket.cpp
│ │ ├── SecureServerSocketImpl.cpp
│ │ ├── SecureSMTPClientSession.cpp
│ │ ├── SecureSocketImpl.cpp
│ │ ├── SecureStreamSocket.cpp
│ │ ├── SecureStreamSocketImpl.cpp
│ │ ├── Session.cpp
│ │ ├── SSLException.cpp
│ │ ├── SSLManager.cpp
│ │ ├── Utility.cpp
│ │ ├── VerificationErrorArgs.cpp
│ │ └── X509Certificate.cpp
│ └── testsuite
│ ├── any.pem
│ ├── CMakeLists.txt
│ ├── Makefile
│ ├── rootcert.pem
│ ├── src
│ │ ├── Driver.cpp
│ │ ├── HTTPSClientSessionTest.cpp
│ │ ├── HTTPSClientSessionTest.h
│ │ ├── HTTPSClientTestSuite.cpp
│ │ ├── HTTPSClientTestSuite.h
│ │ ├── HTTPSServerTest.cpp
│ │ ├── HTTPSServerTest.h
│ │ ├── HTTPSServerTestSuite.cpp
│ │ ├── HTTPSServerTestSuite.h
│ │ ├── HTTPSStreamFactoryTest.cpp
│ │ ├── HTTPSStreamFactoryTest.h
│ │ ├── HTTPSTestServer.cpp
│ │ ├── HTTPSTestServer.h
│ │ ├── NetSSLTestSuite.cpp
│ │ ├── NetSSLTestSuite.h
│ │ ├── TCPServerTest.cpp
│ │ ├── TCPServerTest.h
│ │ ├── TCPServerTestSuite.cpp
│ │ ├── TCPServerTestSuite.h
│ │ ├── WinCEDriver.cpp
│ │ └── WinDriver.cpp
│ ├── testrunner.xml
│ ├── TestSuite_CE_vs90.vcproj
│ ├── TestSuitemt.xml
│ ├── TestSuite.progen
│ ├── TestSuite_vs100.vcxproj
│ ├── TestSuite_vs100.vcxproj.filters
│ ├── TestSuite_vs110.vcxproj
│ ├── TestSuite_vs110.vcxproj.filters
│ ├── TestSuite_vs120.vcxproj
│ ├── TestSuite_vs120.vcxproj.filters
│ ├── TestSuite_vs140.vcxproj
│ ├── TestSuite_vs140.vcxproj.filters
│ ├── TestSuite_vs150.vcxproj
│ ├── TestSuite_vs150.vcxproj.filters
│ ├── TestSuite_vs90.vcproj
│ ├── TestSuite_WEC2013_vs110.vcxproj
│ ├── TestSuite_WEC2013_vs110.vcxproj.filters
│ ├── TestSuite_WEC2013_vs120.vcxproj
│ ├── TestSuite_WEC2013_vs120.vcxproj.filters
│ ├── TestSuite_x64_vs100.vcxproj
│ ├── TestSuite_x64_vs100.vcxproj.filters
│ ├── TestSuite_x64_vs110.vcxproj
│ ├── TestSuite_x64_vs110.vcxproj.filters
│ ├── TestSuite_x64_vs120.vcxproj
│ ├── TestSuite_x64_vs120.vcxproj.filters
│ ├── TestSuite_x64_vs140.vcxproj
│ ├── TestSuite_x64_vs140.vcxproj.filters
│ ├── TestSuite_x64_vs150.vcxproj
│ ├── TestSuite_x64_vs150.vcxproj.filters
│ ├── TestSuite_x64_vs90.vcproj
│ └── TestSuite.xml
├── NEWS
├── PageCompiler
│ ├── CMakeLists.txt
│ ├── doc
│ │ └── PageCompilerUserGuide.page
│ ├── File2Page
│ │ ├── CMakeLists.txt
│ │ ├── File2Page.progen
│ │ ├── File2Page_vs100.sln
│ │ ├── File2Page_vs100.vcxproj
│ │ ├── File2Page_vs100.vcxproj.filters
│ │ ├── File2Page_vs110.sln
│ │ ├── File2Page_vs110.vcxproj
│ │ ├── File2Page_vs110.vcxproj.filters
│ │ ├── File2Page_vs120.sln
│ │ ├── File2Page_vs120.vcxproj
│ │ ├── File2Page_vs120.vcxproj.filters
│ │ ├── File2Page_vs140.sln
│ │ ├── File2Page_vs140.vcxproj
│ │ ├── File2Page_vs140.vcxproj.filters
│ │ ├── File2Page_vs150.sln
│ │ ├── File2Page_vs150.vcxproj
│ │ ├── File2Page_vs150.vcxproj.filters
│ │ ├── File2Page_vs90.sln
│ │ ├── File2Page_vs90.vcproj
│ │ ├── File2Page_x64_vs100.sln
│ │ ├── File2Page_x64_vs100.vcxproj
│ │ ├── File2Page_x64_vs100.vcxproj.filters
│ │ ├── File2Page_x64_vs110.sln
│ │ ├── File2Page_x64_vs110.vcxproj
│ │ ├── File2Page_x64_vs110.vcxproj.filters
│ │ ├── File2Page_x64_vs120.sln
│ │ ├── File2Page_x64_vs120.vcxproj
│ │ ├── File2Page_x64_vs120.vcxproj.filters
│ │ ├── File2Page_x64_vs140.sln
│ │ ├── File2Page_x64_vs140.vcxproj
│ │ ├── File2Page_x64_vs140.vcxproj.filters
│ │ ├── File2Page_x64_vs150.sln
│ │ ├── File2Page_x64_vs150.vcxproj
│ │ ├── File2Page_x64_vs150.vcxproj.filters
│ │ ├── File2Page_x64_vs90.sln
│ │ ├── File2Page_x64_vs90.vcproj
│ │ ├── Makefile
│ │ └── src
│ │ └── File2Page.cpp
│ ├── Makefile
│ ├── PageCompiler.progen
│ ├── PageCompiler_vs100.sln
│ ├── PageCompiler_vs100.vcxproj
│ ├── PageCompiler_vs100.vcxproj.filters
│ ├── PageCompiler_vs110.sln
│ ├── PageCompiler_vs110.vcxproj
│ ├── PageCompiler_vs110.vcxproj.filters
│ ├── PageCompiler_vs120.sln
│ ├── PageCompiler_vs120.vcxproj
│ ├── PageCompiler_vs120.vcxproj.filters
│ ├── PageCompiler_vs140.sln
│ ├── PageCompiler_vs140.vcxproj
│ ├── PageCompiler_vs140.vcxproj.filters
│ ├── PageCompiler_vs150.sln
│ ├── PageCompiler_vs150.vcxproj
│ ├── PageCompiler_vs150.vcxproj.filters
│ ├── PageCompiler_vs90.sln
│ ├── PageCompiler_vs90.vcproj
│ ├── PageCompiler_x64_vs100.sln
│ ├── PageCompiler_x64_vs100.vcxproj
│ ├── PageCompiler_x64_vs100.vcxproj.filters
│ ├── PageCompiler_x64_vs110.sln
│ ├── PageCompiler_x64_vs110.vcxproj
│ ├── PageCompiler_x64_vs110.vcxproj.filters
│ ├── PageCompiler_x64_vs120.sln
│ ├── PageCompiler_x64_vs120.vcxproj
│ ├── PageCompiler_x64_vs120.vcxproj.filters
│ ├── PageCompiler_x64_vs140.sln
│ ├── PageCompiler_x64_vs140.vcxproj
│ ├── PageCompiler_x64_vs140.vcxproj.filters
│ ├── PageCompiler_x64_vs150.sln
│ ├── PageCompiler_x64_vs150.vcxproj
│ ├── PageCompiler_x64_vs150.vcxproj.filters
│ ├── PageCompiler_x64_vs90.sln
│ ├── PageCompiler_x64_vs90.vcproj
│ ├── samples
│ │ ├── HTTPTimeServer
│ │ │ ├── HTTPTimeServer_CE_vs90.vcproj
│ │ │ ├── HTTPTimeServer.progen
│ │ │ ├── HTTPTimeServer_vs100.vcxproj
│ │ │ ├── HTTPTimeServer_vs100.vcxproj.filters
│ │ │ ├── HTTPTimeServer_vs110.vcxproj
│ │ │ ├── HTTPTimeServer_vs110.vcxproj.filters
│ │ │ ├── HTTPTimeServer_vs120.vcxproj
│ │ │ ├── HTTPTimeServer_vs120.vcxproj.filters
│ │ │ ├── HTTPTimeServer_vs140.vcxproj
│ │ │ ├── HTTPTimeServer_vs140.vcxproj.filters
│ │ │ ├── HTTPTimeServer_vs150.vcxproj
│ │ │ ├── HTTPTimeServer_vs150.vcxproj.filters
│ │ │ ├── HTTPTimeServer_vs90.vcproj
│ │ │ ├── HTTPTimeServer_x64_vs100.vcxproj
│ │ │ ├── HTTPTimeServer_x64_vs100.vcxproj.filters
│ │ │ ├── HTTPTimeServer_x64_vs110.vcxproj
│ │ │ ├── HTTPTimeServer_x64_vs110.vcxproj.filters
│ │ │ ├── HTTPTimeServer_x64_vs120.vcxproj
│ │ │ ├── HTTPTimeServer_x64_vs120.vcxproj.filters
│ │ │ ├── HTTPTimeServer_x64_vs140.vcxproj
│ │ │ ├── HTTPTimeServer_x64_vs140.vcxproj.filters
│ │ │ ├── HTTPTimeServer_x64_vs150.vcxproj
│ │ │ ├── HTTPTimeServer_x64_vs150.vcxproj.filters
│ │ │ ├── HTTPTimeServer_x64_vs90.vcproj
│ │ │ ├── Makefile
│ │ │ └── src
│ │ │ ├── HTTPTimeServerApp.cpp
│ │ │ ├── TimeHandler.cpp
│ │ │ ├── TimeHandler.cpsp
│ │ │ └── TimeHandler.h
│ │ ├── Makefile
│ │ ├── samples_CE_vs90.sln
│ │ ├── samples.progen
│ │ ├── samples_vs100.sln
│ │ ├── samples_vs110.sln
│ │ ├── samples_vs120.sln
│ │ ├── samples_vs140.sln
│ │ ├── samples_vs150.sln
│ │ ├── samples_vs90.sln
│ │ ├── samples_x64_vs100.sln
│ │ ├── samples_x64_vs110.sln
│ │ ├── samples_x64_vs120.sln
│ │ ├── samples_x64_vs140.sln
│ │ ├── samples_x64_vs150.sln
│ │ └── samples_x64_vs90.sln
│ └── src
│ ├── ApacheCodeWriter.cpp
│ ├── ApacheCodeWriter.h
│ ├── CodeWriter.cpp
│ ├── CodeWriter.h
│ ├── OSPCodeWriter.cpp
│ ├── OSPCodeWriter.h
│ ├── PageCompiler.cpp
│ ├── Page.cpp
│ ├── Page.h
│ ├── PageReader.cpp
│ └── PageReader.h
├── patches
│ └── AIX
│ └── xlC8.diff
├── README
├── Redis
│ ├── cmake
│ │ └── PocoRedisConfig.cmake
│ ├── CMakeLists.txt
│ ├── include
│ │ └── Poco
│ │ └── Redis
│ │ ├── Array.h
│ │ ├── AsyncReader.h
│ │ ├── Client.h
│ │ ├── Command.h
│ │ ├── Error.h
│ │ ├── Exception.h
│ │ ├── PoolableConnectionFactory.h
│ │ ├── RedisEventArgs.h
│ │ ├── Redis.h
│ │ ├── RedisStream.h
│ │ └── Type.h
│ ├── Makefile
│ ├── Redis.progen
│ ├── Redis_vs100.sln
│ ├── Redis_vs100.vcxproj
│ ├── Redis_vs100.vcxproj.filters
│ ├── Redis_vs110.sln
│ ├── Redis_vs110.vcxproj
│ ├── Redis_vs110.vcxproj.filters
│ ├── Redis_vs120.sln
│ ├── Redis_vs120.vcxproj
│ ├── Redis_vs120.vcxproj.filters
│ ├── Redis_vs140.sln
│ ├── Redis_vs140.vcxproj
│ ├── Redis_vs140.vcxproj.filters
│ ├── Redis_vs150.sln
│ ├── Redis_vs150.vcxproj
│ ├── Redis_vs150.vcxproj.filters
│ ├── Redis_vs90.sln
│ ├── Redis_vs90.vcproj
│ ├── Redis_x64_vs100.sln
│ ├── Redis_x64_vs100.vcxproj
│ ├── Redis_x64_vs100.vcxproj.filters
│ ├── Redis_x64_vs110.sln
│ ├── Redis_x64_vs110.vcxproj
│ ├── Redis_x64_vs110.vcxproj.filters
│ ├── Redis_x64_vs120.sln
│ ├── Redis_x64_vs120.vcxproj
│ ├── Redis_x64_vs120.vcxproj.filters
│ ├── Redis_x64_vs140.sln
│ ├── Redis_x64_vs140.vcxproj
│ ├── Redis_x64_vs140.vcxproj.filters
│ ├── Redis_x64_vs150.sln
│ ├── Redis_x64_vs150.vcxproj
│ ├── Redis_x64_vs150.vcxproj.filters
│ ├── Redis_x64_vs90.sln
│ ├── Redis_x64_vs90.vcproj
│ ├── src
│ │ ├── Array.cpp
│ │ ├── AsyncReader.cpp
│ │ ├── Client.cpp
│ │ ├── Command.cpp
│ │ ├── Error.cpp
│ │ ├── Exception.cpp
│ │ ├── RedisEventArgs.cpp
│ │ ├── RedisStream.cpp
│ │ └── Type.cpp
│ └── testsuite
│ ├── CMakeLists.txt
│ ├── Makefile
│ ├── src
│ │ ├── Driver.cpp
│ │ ├── RedisTest.cpp
│ │ ├── RedisTest.h
│ │ ├── RedisTestSuite.cpp
│ │ ├── RedisTestSuite.h
│ │ ├── WinCEDriver.cpp
│ │ └── WinDriver.cpp
│ ├── TestSuite.progen
│ ├── TestSuite_vs100.vcxproj
│ ├── TestSuite_vs100.vcxproj.filters
│ ├── TestSuite_vs110.vcxproj
│ ├── TestSuite_vs110.vcxproj.filters
│ ├── TestSuite_vs120.vcxproj
│ ├── TestSuite_vs120.vcxproj.filters
│ ├── TestSuite_vs140.vcxproj
│ ├── TestSuite_vs140.vcxproj.filters
│ ├── TestSuite_vs150.vcxproj
│ ├── TestSuite_vs150.vcxproj.filters
│ ├── TestSuite_vs90.vcproj
│ ├── TestSuite_x64_vs100.vcxproj
│ ├── TestSuite_x64_vs100.vcxproj.filters
│ ├── TestSuite_x64_vs110.vcxproj
│ ├── TestSuite_x64_vs110.vcxproj.filters
│ ├── TestSuite_x64_vs120.vcxproj
│ ├── TestSuite_x64_vs120.vcxproj.filters
│ ├── TestSuite_x64_vs140.vcxproj
│ ├── TestSuite_x64_vs140.vcxproj.filters
│ ├── TestSuite_x64_vs150.vcxproj
│ ├── TestSuite_x64_vs150.vcxproj.filters
│ └── TestSuite_x64_vs90.vcproj
├── Util
│ ├── cmake
│ │ └── PocoUtilConfig.cmake
│ ├── CMakeLists.txt
│ ├── include
│ │ └── Poco
│ │ └── Util
│ │ ├── AbstractConfiguration.h
│ │ ├── Application.h
│ │ ├── ConfigurationMapper.h
│ │ ├── ConfigurationView.h
│ │ ├── FilesystemConfiguration.h
│ │ ├── HelpFormatter.h
│ │ ├── IniFileConfiguration.h
│ │ ├── IntValidator.h
│ │ ├── JSONConfiguration.h
│ │ ├── LayeredConfiguration.h
│ │ ├── LoggingConfigurator.h
│ │ ├── LoggingSubsystem.h
│ │ ├── MapConfiguration.h
│ │ ├── OptionCallback.h
│ │ ├── OptionException.h
│ │ ├── Option.h
│ │ ├── OptionProcessor.h
│ │ ├── OptionSet.h
│ │ ├── PropertyFileConfiguration.h
│ │ ├── RegExpValidator.h
│ │ ├── ServerApplication.h
│ │ ├── Subsystem.h
│ │ ├── SystemConfiguration.h
│ │ ├── Timer.h
│ │ ├── TimerTaskAdapter.h
│ │ ├── TimerTask.h
│ │ ├── Units.h
│ │ ├── Util.h
│ │ ├── Validator.h
│ │ ├── WinRegistryConfiguration.h
│ │ ├── WinRegistryKey.h
│ │ ├── WinService.h
│ │ └── XMLConfiguration.h
│ ├── Makefile
│ ├── samples
│ │ ├── CMakeLists.txt
│ │ ├── Makefile
│ │ ├── pkill
│ │ │ ├── CMakeLists.txt
│ │ │ ├── Makefile
│ │ │ ├── pkill_CE_vs90.vcproj
│ │ │ ├── pkill.progen
│ │ │ ├── pkill_vs100.vcxproj
│ │ │ ├── pkill_vs100.vcxproj.filters
│ │ │ ├── pkill_vs110.vcxproj
│ │ │ ├── pkill_vs110.vcxproj.filters
│ │ │ ├── pkill_vs120.vcxproj
│ │ │ ├── pkill_vs120.vcxproj.filters
│ │ │ ├── pkill_vs140.vcxproj
│ │ │ ├── pkill_vs140.vcxproj.filters
│ │ │ ├── pkill_vs150.vcxproj
│ │ │ ├── pkill_vs150.vcxproj.filters
│ │ │ ├── pkill_vs90.vcproj
│ │ │ ├── pkill_WEC2013_vs110.vcxproj
│ │ │ ├── pkill_WEC2013_vs110.vcxproj.filters
│ │ │ ├── pkill_WEC2013_vs120.vcxproj
│ │ │ ├── pkill_WEC2013_vs120.vcxproj.filters
│ │ │ ├── pkill_x64_vs100.vcxproj
│ │ │ ├── pkill_x64_vs100.vcxproj.filters
│ │ │ ├── pkill_x64_vs110.vcxproj
│ │ │ ├── pkill_x64_vs110.vcxproj.filters
│ │ │ ├── pkill_x64_vs120.vcxproj
│ │ │ ├── pkill_x64_vs120.vcxproj.filters
│ │ │ ├── pkill_x64_vs140.vcxproj
│ │ │ ├── pkill_x64_vs140.vcxproj.filters
│ │ │ ├── pkill_x64_vs150.vcxproj
│ │ │ ├── pkill_x64_vs150.vcxproj.filters
│ │ │ ├── pkill_x64_vs90.vcproj
│ │ │ └── src
│ │ │ └── pkill.cpp
│ │ ├── SampleApp
│ │ │ ├── CMakeLists.txt
│ │ │ ├── Makefile
│ │ │ ├── SampleApp_CE_vs90.vcproj
│ │ │ ├── SampleApp.progen
│ │ │ ├── SampleApp.properties
│ │ │ ├── SampleApp_vs100.vcxproj
│ │ │ ├── SampleApp_vs100.vcxproj.filters
│ │ │ ├── SampleApp_vs110.vcxproj
│ │ │ ├── SampleApp_vs110.vcxproj.filters
│ │ │ ├── SampleApp_vs120.vcxproj
│ │ │ ├── SampleApp_vs120.vcxproj.filters
│ │ │ ├── SampleApp_vs140.vcxproj
│ │ │ ├── SampleApp_vs140.vcxproj.filters
│ │ │ ├── SampleApp_vs150.vcxproj
│ │ │ ├── SampleApp_vs150.vcxproj.filters
│ │ │ ├── SampleApp_vs90.vcproj
│ │ │ ├── SampleApp_WEC2013_vs110.vcxproj
│ │ │ ├── SampleApp_WEC2013_vs110.vcxproj.filters
│ │ │ ├── SampleApp_WEC2013_vs120.vcxproj
│ │ │ ├── SampleApp_WEC2013_vs120.vcxproj.filters
│ │ │ ├── SampleApp_x64_vs100.vcxproj
│ │ │ ├── SampleApp_x64_vs100.vcxproj.filters
│ │ │ ├── SampleApp_x64_vs110.vcxproj
│ │ │ ├── SampleApp_x64_vs110.vcxproj.filters
│ │ │ ├── SampleApp_x64_vs120.vcxproj
│ │ │ ├── SampleApp_x64_vs120.vcxproj.filters
│ │ │ ├── SampleApp_x64_vs140.vcxproj
│ │ │ ├── SampleApp_x64_vs140.vcxproj.filters
│ │ │ ├── SampleApp_x64_vs150.vcxproj
│ │ │ ├── SampleApp_x64_vs150.vcxproj.filters
│ │ │ ├── SampleApp_x64_vs90.vcproj
│ │ │ └── src
│ │ │ └── SampleApp.cpp
│ │ ├── samples_CE_vs90.sln
│ │ ├── SampleServer
│ │ │ ├── CMakeLists.txt
│ │ │ ├── Makefile
│ │ │ ├── SampleServer_CE_vs90.vcproj
│ │ │ ├── SampleServer.progen
│ │ │ ├── SampleServer.properties
│ │ │ ├── SampleServer_vs100.vcxproj
│ │ │ ├── SampleServer_vs100.vcxproj.filters
│ │ │ ├── SampleServer_vs110.vcxproj
│ │ │ ├── SampleServer_vs110.vcxproj.filters
│ │ │ ├── SampleServer_vs120.vcxproj
│ │ │ ├── SampleServer_vs120.vcxproj.filters
│ │ │ ├── SampleServer_vs140.vcxproj
│ │ │ ├── SampleServer_vs140.vcxproj.filters
│ │ │ ├── SampleServer_vs150.vcxproj
│ │ │ ├── SampleServer_vs150.vcxproj.filters
│ │ │ ├── SampleServer_vs90.vcproj
│ │ │ ├── SampleServer_WEC2013_vs110.vcxproj
│ │ │ ├── SampleServer_WEC2013_vs110.vcxproj.filters
│ │ │ ├── SampleServer_WEC2013_vs120.vcxproj
│ │ │ ├── SampleServer_WEC2013_vs120.vcxproj.filters
│ │ │ ├── SampleServer_x64_vs100.vcxproj
│ │ │ ├── SampleServer_x64_vs100.vcxproj.filters
│ │ │ ├── SampleServer_x64_vs110.vcxproj
│ │ │ ├── SampleServer_x64_vs110.vcxproj.filters
│ │ │ ├── SampleServer_x64_vs120.vcxproj
│ │ │ ├── SampleServer_x64_vs120.vcxproj.filters
│ │ │ ├── SampleServer_x64_vs140.vcxproj
│ │ │ ├── SampleServer_x64_vs140.vcxproj.filters
│ │ │ ├── SampleServer_x64_vs150.vcxproj
│ │ │ ├── SampleServer_x64_vs150.vcxproj.filters
│ │ │ ├── SampleServer_x64_vs90.vcproj
│ │ │ └── src
│ │ │ └── SampleServer.cpp
│ │ ├── samples.progen
│ │ ├── samples_vs100.sln
│ │ ├── samples_vs110.sln
│ │ ├── samples_vs120.sln
│ │ ├── samples_vs140.sln
│ │ ├── samples_vs150.sln
│ │ ├── samples_vs90.sln
│ │ ├── samples_WEC2013_vs110.sln
│ │ ├── samples_WEC2013_vs120.sln
│ │ ├── samples_x64_vs100.sln
│ │ ├── samples_x64_vs110.sln
│ │ ├── samples_x64_vs120.sln
│ │ ├── samples_x64_vs140.sln
│ │ ├── samples_x64_vs150.sln
│ │ ├── samples_x64_vs90.sln
│ │ └── Units
│ │ ├── CMakeLists.txt
│ │ ├── Makefile
│ │ ├── src
│ │ │ └── Units.cpp
│ │ ├── Units_CE_vs90.vcproj
│ │ ├── Units.progen
│ │ ├── Units_vs100.vcxproj
│ │ ├── Units_vs100.vcxproj.filters
│ │ ├── Units_vs110.vcxproj
│ │ ├── Units_vs110.vcxproj.filters
│ │ ├── Units_vs120.vcxproj
│ │ ├── Units_vs120.vcxproj.filters
│ │ ├── Units_vs140.vcxproj
│ │ ├── Units_vs140.vcxproj.filters
│ │ ├── Units_vs150.vcxproj
│ │ ├── Units_vs150.vcxproj.filters
│ │ ├── Units_vs90.vcproj
│ │ ├── Units_WEC2013_vs110.vcxproj
│ │ ├── Units_WEC2013_vs110.vcxproj.filters
│ │ ├── Units_WEC2013_vs120.vcxproj
│ │ ├── Units_WEC2013_vs120.vcxproj.filters
│ │ ├── Units_x64_vs100.vcxproj
│ │ ├── Units_x64_vs100.vcxproj.filters
│ │ ├── Units_x64_vs110.vcxproj
│ │ ├── Units_x64_vs110.vcxproj.filters
│ │ ├── Units_x64_vs120.vcxproj
│ │ ├── Units_x64_vs120.vcxproj.filters
│ │ ├── Units_x64_vs140.vcxproj
│ │ ├── Units_x64_vs140.vcxproj.filters
│ │ ├── Units_x64_vs150.vcxproj
│ │ ├── Units_x64_vs150.vcxproj.filters
│ │ └── Units_x64_vs90.vcproj
│ ├── src
│ │ ├── AbstractConfiguration.cpp
│ │ ├── Application.cpp
│ │ ├── ConfigurationMapper.cpp
│ │ ├── ConfigurationView.cpp
│ │ ├── FilesystemConfiguration.cpp
│ │ ├── HelpFormatter.cpp
│ │ ├── IniFileConfiguration.cpp
│ │ ├── IntValidator.cpp
│ │ ├── JSONConfiguration.cpp
│ │ ├── LayeredConfiguration.cpp
│ │ ├── LoggingConfigurator.cpp
│ │ ├── LoggingSubsystem.cpp
│ │ ├── MapConfiguration.cpp
│ │ ├── OptionCallback.cpp
│ │ ├── Option.cpp
│ │ ├── OptionException.cpp
│ │ ├── OptionProcessor.cpp
│ │ ├── OptionSet.cpp
│ │ ├── PropertyFileConfiguration.cpp
│ │ ├── RegExpValidator.cpp
│ │ ├── ServerApplication.cpp
│ │ ├── Subsystem.cpp
│ │ ├── SystemConfiguration.cpp
│ │ ├── Timer.cpp
│ │ ├── TimerTask.cpp
│ │ ├── Validator.cpp
│ │ ├── WinRegistryConfiguration.cpp
│ │ ├── WinRegistryKey.cpp
│ │ ├── WinService.cpp
│ │ └── XMLConfiguration.cpp
│ ├── testsuite
│ │ ├── CMakeLists.txt
│ │ ├── Makefile
│ │ ├── src
│ │ │ ├── AbstractConfigurationTest.cpp
│ │ │ ├── AbstractConfigurationTest.h
│ │ │ ├── ConfigurationMapperTest.cpp
│ │ │ ├── ConfigurationMapperTest.h
│ │ │ ├── ConfigurationTestSuite.cpp
│ │ │ ├── ConfigurationTestSuite.h
│ │ │ ├── ConfigurationViewTest.cpp
│ │ │ ├── ConfigurationViewTest.h
│ │ │ ├── Driver.cpp
│ │ │ ├── FilesystemConfigurationTest.cpp
│ │ │ ├── FilesystemConfigurationTest.h
│ │ │ ├── HelpFormatterTest.cpp
│ │ │ ├── HelpFormatterTest.h
│ │ │ ├── IniFileConfigurationTest.cpp
│ │ │ ├── IniFileConfigurationTest.h
│ │ │ ├── JSONConfigurationTest.cpp
│ │ │ ├── JSONConfigurationTest.h
│ │ │ ├── LayeredConfigurationTest.cpp
│ │ │ ├── LayeredConfigurationTest.h
│ │ │ ├── LoggingConfiguratorTest.cpp
│ │ │ ├── LoggingConfiguratorTest.h
│ │ │ ├── MapConfigurationTest.cpp
│ │ │ ├── MapConfigurationTest.h
│ │ │ ├── OptionProcessorTest.cpp
│ │ │ ├── OptionProcessorTest.h
│ │ │ ├── OptionSetTest.cpp
│ │ │ ├── OptionSetTest.h
│ │ │ ├── OptionsTestSuite.cpp
│ │ │ ├── OptionsTestSuite.h
│ │ │ ├── OptionTest.cpp
│ │ │ ├── OptionTest.h
│ │ │ ├── PropertyFileConfigurationTest.cpp
│ │ │ ├── PropertyFileConfigurationTest.h
│ │ │ ├── SystemConfigurationTest.cpp
│ │ │ ├── SystemConfigurationTest.h
│ │ │ ├── TimerTest.cpp
│ │ │ ├── TimerTest.h
│ │ │ ├── TimerTestSuite.cpp
│ │ │ ├── TimerTestSuite.h
│ │ │ ├── UtilTestSuite.cpp
│ │ │ ├── UtilTestSuite.h
│ │ │ ├── ValidatorTest.cpp
│ │ │ ├── ValidatorTest.h
│ │ │ ├── WinCEDriver.cpp
│ │ │ ├── WinConfigurationTest.cpp
│ │ │ ├── WinConfigurationTest.h
│ │ │ ├── WindowsTestSuite.cpp
│ │ │ ├── WindowsTestSuite.h
│ │ │ ├── WinDriver.cpp
│ │ │ ├── WinRegistryTest.cpp
│ │ │ ├── WinRegistryTest.h
│ │ │ ├── XMLConfigurationTest.cpp
│ │ │ └── XMLConfigurationTest.h
│ │ ├── TestSuite_CE_vs90.vcproj
│ │ ├── TestSuite.progen
│ │ ├── TestSuite_vs100.vcxproj
│ │ ├── TestSuite_vs100.vcxproj.filters
│ │ ├── TestSuite_vs110.vcxproj
│ │ ├── TestSuite_vs110.vcxproj.filters
│ │ ├── TestSuite_vs120.vcxproj
│ │ ├── TestSuite_vs120.vcxproj.filters
│ │ ├── TestSuite_vs140.vcxproj
│ │ ├── TestSuite_vs140.vcxproj.filters
│ │ ├── TestSuite_vs150.vcxproj
│ │ ├── TestSuite_vs150.vcxproj.filters
│ │ ├── TestSuite_vs90.vcproj
│ │ ├── TestSuite_WEC2013_vs110.vcxproj
│ │ ├── TestSuite_WEC2013_vs110.vcxproj.filters
│ │ ├── TestSuite_WEC2013_vs120.vcxproj
│ │ ├── TestSuite_WEC2013_vs120.vcxproj.filters
│ │ ├── TestSuite_x64_vs100.vcxproj
│ │ ├── TestSuite_x64_vs100.vcxproj.filters
│ │ ├── TestSuite_x64_vs110.vcxproj
│ │ ├── TestSuite_x64_vs110.vcxproj.filters
│ │ ├── TestSuite_x64_vs120.vcxproj
│ │ ├── TestSuite_x64_vs120.vcxproj.filters
│ │ ├── TestSuite_x64_vs140.vcxproj
│ │ ├── TestSuite_x64_vs140.vcxproj.filters
│ │ ├── TestSuite_x64_vs150.vcxproj
│ │ ├── TestSuite_x64_vs150.vcxproj.filters
│ │ └── TestSuite_x64_vs90.vcproj
│ ├── Util_CE_vs90.sln
│ ├── Util_CE_vs90.vcproj
│ ├── Util.progen
│ ├── Util_vs100.sln
│ ├── Util_vs100.vcxproj
│ ├── Util_vs100.vcxproj.filters
│ ├── Util_vs110.sln
│ ├── Util_vs110.vcxproj
│ ├── Util_vs110.vcxproj.filters
│ ├── Util_vs120.sln
│ ├── Util_vs120.vcxproj
│ ├── Util_vs120.vcxproj.filters
│ ├── Util_vs140.sln
│ ├── Util_vs140.vcxproj
│ ├── Util_vs140.vcxproj.filters
│ ├── Util_vs150.sln
│ ├── Util_vs150.vcxproj
│ ├── Util_vs150.vcxproj.filters
│ ├── Util_vs90.sln
│ ├── Util_vs90.vcproj
│ ├── Util_WEC2013_vs110.sln
│ ├── Util_WEC2013_vs110.vcxproj
│ ├── Util_WEC2013_vs110.vcxproj.filters
│ ├── Util_WEC2013_vs120.sln
│ ├── Util_WEC2013_vs120.vcxproj
│ ├── Util_WEC2013_vs120.vcxproj.filters
│ ├── Util_x64_vs100.sln
│ ├── Util_x64_vs100.vcxproj
│ ├── Util_x64_vs100.vcxproj.filters
│ ├── Util_x64_vs110.sln
│ ├── Util_x64_vs110.vcxproj
│ ├── Util_x64_vs110.vcxproj.filters
│ ├── Util_x64_vs120.sln
│ ├── Util_x64_vs120.vcxproj
│ ├── Util_x64_vs120.vcxproj.filters
│ ├── Util_x64_vs140.sln
│ ├── Util_x64_vs140.vcxproj
│ ├── Util_x64_vs140.vcxproj.filters
│ ├── Util_x64_vs150.sln
│ ├── Util_x64_vs150.vcxproj
│ ├── Util_x64_vs150.vcxproj.filters
│ ├── Util_x64_vs90.sln
│ └── Util_x64_vs90.vcproj
├── VERSION
├── XML
│ ├── cmake
│ │ └── PocoXMLConfig.cmake
│ ├── CMakeLists.txt
│ ├── include
│ │ └── Poco
│ │ ├── DOM
│ │ │ ├── AbstractContainerNode.h
│ │ │ ├── AbstractNode.h
│ │ │ ├── Attr.h
│ │ │ ├── AttrMap.h
│ │ │ ├── AutoPtr.h
│ │ │ ├── CDATASection.h
│ │ │ ├── CharacterData.h
│ │ │ ├── ChildNodesList.h
│ │ │ ├── Comment.h
│ │ │ ├── DocumentEvent.h
│ │ │ ├── DocumentFragment.h
│ │ │ ├── Document.h
│ │ │ ├── DocumentType.h
│ │ │ ├── DOMBuilder.h
│ │ │ ├── DOMException.h
│ │ │ ├── DOMImplementation.h
│ │ │ ├── DOMObject.h
│ │ │ ├── DOMParser.h
│ │ │ ├── DOMSerializer.h
│ │ │ ├── DOMWriter.h
│ │ │ ├── DTDMap.h
│ │ │ ├── Element.h
│ │ │ ├── ElementsByTagNameList.h
│ │ │ ├── Entity.h
│ │ │ ├── EntityReference.h
│ │ │ ├── EventDispatcher.h
│ │ │ ├── EventException.h
│ │ │ ├── Event.h
│ │ │ ├── EventListener.h
│ │ │ ├── EventTarget.h
│ │ │ ├── MutationEvent.h
│ │ │ ├── NamedNodeMap.h
│ │ │ ├── NodeAppender.h
│ │ │ ├── NodeFilter.h
│ │ │ ├── Node.h
│ │ │ ├── NodeIterator.h
│ │ │ ├── NodeList.h
│ │ │ ├── Notation.h
│ │ │ ├── ProcessingInstruction.h
│ │ │ ├── Text.h
│ │ │ └── TreeWalker.h
│ │ ├── SAX
│ │ │ ├── Attributes.h
│ │ │ ├── AttributesImpl.h
│ │ │ ├── ContentHandler.h
│ │ │ ├── DeclHandler.h
│ │ │ ├── DefaultHandler.h
│ │ │ ├── DTDHandler.h
│ │ │ ├── EntityResolver.h
│ │ │ ├── EntityResolverImpl.h
│ │ │ ├── ErrorHandler.h
│ │ │ ├── InputSource.h
│ │ │ ├── LexicalHandler.h
│ │ │ ├── Locator.h
│ │ │ ├── LocatorImpl.h
│ │ │ ├── NamespaceSupport.h
│ │ │ ├── SAXException.h
│ │ │ ├── SAXParser.h
│ │ │ ├── WhitespaceFilter.h
│ │ │ ├── XMLFilter.h
│ │ │ ├── XMLFilterImpl.h
│ │ │ └── XMLReader.h
│ │ └── XML
│ │ ├── Content.h
│ │ ├── expat_external.h
│ │ ├── expat.h
│ │ ├── Name.h
│ │ ├── NamePool.h
│ │ ├── NamespaceStrategy.h
│ │ ├── ParserEngine.h
│ │ ├── QName.h
│ │ ├── ValueTraits.h
│ │ ├── XMLException.h
│ │ ├── XML.h
│ │ ├── XMLStream.h
│ │ ├── XMLStreamParserException.h
│ │ ├── XMLStreamParser.h
│ │ ├── XMLString.h
│ │ └── XMLWriter.h
│ ├── Makefile
│ ├── samples
│ │ ├── CMakeLists.txt
│ │ ├── data
│ │ │ └── sample.xml
│ │ ├── DOMParser
│ │ │ ├── CMakeLists.txt
│ │ │ ├── DOMParser_CE_vs90.vcproj
│ │ │ ├── DOMParser.progen
│ │ │ ├── DOMParser_vs100.vcxproj
│ │ │ ├── DOMParser_vs100.vcxproj.filters
│ │ │ ├── DOMParser_vs110.vcxproj
│ │ │ ├── DOMParser_vs110.vcxproj.filters
│ │ │ ├── DOMParser_vs120.vcxproj
│ │ │ ├── DOMParser_vs120.vcxproj.filters
│ │ │ ├── DOMParser_vs140.vcxproj
│ │ │ ├── DOMParser_vs140.vcxproj.filters
│ │ │ ├── DOMParser_vs150.vcxproj
│ │ │ ├── DOMParser_vs150.vcxproj.filters
│ │ │ ├── DOMParser_vs90.vcproj
│ │ │ ├── DOMParser_WEC2013_vs110.vcxproj
│ │ │ ├── DOMParser_WEC2013_vs110.vcxproj.filters
│ │ │ ├── DOMParser_WEC2013_vs120.vcxproj
│ │ │ ├── DOMParser_WEC2013_vs120.vcxproj.filters
│ │ │ ├── DOMParser_x64_vs100.vcxproj
│ │ │ ├── DOMParser_x64_vs100.vcxproj.filters
│ │ │ ├── DOMParser_x64_vs110.vcxproj
│ │ │ ├── DOMParser_x64_vs110.vcxproj.filters
│ │ │ ├── DOMParser_x64_vs120.vcxproj
│ │ │ ├── DOMParser_x64_vs120.vcxproj.filters
│ │ │ ├── DOMParser_x64_vs140.vcxproj
│ │ │ ├── DOMParser_x64_vs140.vcxproj.filters
│ │ │ ├── DOMParser_x64_vs150.vcxproj
│ │ │ ├── DOMParser_x64_vs150.vcxproj.filters
│ │ │ ├── DOMParser_x64_vs90.vcproj
│ │ │ ├── Makefile
│ │ │ └── src
│ │ │ └── DOMParser.cpp
│ │ ├── DOMWriter
│ │ │ ├── CMakeLists.txt
│ │ │ ├── DOMWriter_CE_vs90.vcproj
│ │ │ ├── DOMWriter.progen
│ │ │ ├── DOMWriter_vs100.vcxproj
│ │ │ ├── DOMWriter_vs100.vcxproj.filters
│ │ │ ├── DOMWriter_vs110.vcxproj
│ │ │ ├── DOMWriter_vs110.vcxproj.filters
│ │ │ ├── DOMWriter_vs120.vcxproj
│ │ │ ├── DOMWriter_vs120.vcxproj.filters
│ │ │ ├── DOMWriter_vs140.vcxproj
│ │ │ ├── DOMWriter_vs140.vcxproj.filters
│ │ │ ├── DOMWriter_vs150.vcxproj
│ │ │ ├── DOMWriter_vs150.vcxproj.filters
│ │ │ ├── DOMWriter_vs90.vcproj
│ │ │ ├── DOMWriter_WEC2013_vs110.vcxproj
│ │ │ ├── DOMWriter_WEC2013_vs110.vcxproj.filters
│ │ │ ├── DOMWriter_WEC2013_vs120.vcxproj
│ │ │ ├── DOMWriter_WEC2013_vs120.vcxproj.filters
│ │ │ ├── DOMWriter_x64_vs100.vcxproj
│ │ │ ├── DOMWriter_x64_vs100.vcxproj.filters
│ │ │ ├── DOMWriter_x64_vs110.vcxproj
│ │ │ ├── DOMWriter_x64_vs110.vcxproj.filters
│ │ │ ├── DOMWriter_x64_vs120.vcxproj
│ │ │ ├── DOMWriter_x64_vs120.vcxproj.filters
│ │ │ ├── DOMWriter_x64_vs140.vcxproj
│ │ │ ├── DOMWriter_x64_vs140.vcxproj.filters
│ │ │ ├── DOMWriter_x64_vs150.vcxproj
│ │ │ ├── DOMWriter_x64_vs150.vcxproj.filters
│ │ │ ├── DOMWriter_x64_vs90.vcproj
│ │ │ ├── Makefile
│ │ │ └── src
│ │ │ └── DOMWriter.cpp
│ │ ├── Makefile
│ │ ├── PrettyPrint
│ │ │ ├── CMakeLists.txt
│ │ │ ├── Makefile
│ │ │ ├── PrettyPrint_CE_vs90.vcproj
│ │ │ ├── PrettyPrint.progen
│ │ │ ├── PrettyPrint_vs100.vcxproj
│ │ │ ├── PrettyPrint_vs100.vcxproj.filters
│ │ │ ├── PrettyPrint_vs110.vcxproj
│ │ │ ├── PrettyPrint_vs110.vcxproj.filters
│ │ │ ├── PrettyPrint_vs120.vcxproj
│ │ │ ├── PrettyPrint_vs120.vcxproj.filters
│ │ │ ├── PrettyPrint_vs140.vcxproj
│ │ │ ├── PrettyPrint_vs140.vcxproj.filters
│ │ │ ├── PrettyPrint_vs150.vcxproj
│ │ │ ├── PrettyPrint_vs150.vcxproj.filters
│ │ │ ├── PrettyPrint_vs90.vcproj
│ │ │ ├── PrettyPrint_WEC2013_vs110.vcxproj
│ │ │ ├── PrettyPrint_WEC2013_vs110.vcxproj.filters
│ │ │ ├── PrettyPrint_WEC2013_vs120.vcxproj
│ │ │ ├── PrettyPrint_WEC2013_vs120.vcxproj.filters
│ │ │ ├── PrettyPrint_x64_vs100.vcxproj
│ │ │ ├── PrettyPrint_x64_vs100.vcxproj.filters
│ │ │ ├── PrettyPrint_x64_vs110.vcxproj
│ │ │ ├── PrettyPrint_x64_vs110.vcxproj.filters
│ │ │ ├── PrettyPrint_x64_vs120.vcxproj
│ │ │ ├── PrettyPrint_x64_vs120.vcxproj.filters
│ │ │ ├── PrettyPrint_x64_vs140.vcxproj
│ │ │ ├── PrettyPrint_x64_vs140.vcxproj.filters
│ │ │ ├── PrettyPrint_x64_vs150.vcxproj
│ │ │ ├── PrettyPrint_x64_vs150.vcxproj.filters
│ │ │ ├── PrettyPrint_x64_vs90.vcproj
│ │ │ └── src
│ │ │ └── PrettyPrint.cpp
│ │ ├── samples_CE_vs90.sln
│ │ ├── samples.progen
│ │ ├── samples_vs100.sln
│ │ ├── samples_vs110.sln
│ │ ├── samples_vs120.sln
│ │ ├── samples_vs140.sln
│ │ ├── samples_vs150.sln
│ │ ├── samples_vs90.sln
│ │ ├── samples_WEC2013_vs110.sln
│ │ ├── samples_WEC2013_vs120.sln
│ │ ├── samples_x64_vs100.sln
│ │ ├── samples_x64_vs110.sln
│ │ ├── samples_x64_vs120.sln
│ │ ├── samples_x64_vs140.sln
│ │ ├── samples_x64_vs150.sln
│ │ ├── samples_x64_vs90.sln
│ │ └── SAXParser
│ │ ├── CMakeLists.txt
│ │ ├── Makefile
│ │ ├── SAXParser_CE_vs90.vcproj
│ │ ├── SAXParser.progen
│ │ ├── SAXParser_vs100.vcxproj
│ │ ├── SAXParser_vs100.vcxproj.filters
│ │ ├── SAXParser_vs110.vcxproj
│ │ ├── SAXParser_vs110.vcxproj.filters
│ │ ├── SAXParser_vs120.vcxproj
│ │ ├── SAXParser_vs120.vcxproj.filters
│ │ ├── SAXParser_vs140.vcxproj
│ │ ├── SAXParser_vs140.vcxproj.filters
│ │ ├── SAXParser_vs150.vcxproj
│ │ ├── SAXParser_vs150.vcxproj.filters
│ │ ├── SAXParser_vs90.vcproj
│ │ ├── SAXParser_WEC2013_vs110.vcxproj
│ │ ├── SAXParser_WEC2013_vs110.vcxproj.filters
│ │ ├── SAXParser_WEC2013_vs120.vcxproj
│ │ ├── SAXParser_WEC2013_vs120.vcxproj.filters
│ │ ├── SAXParser_x64_vs100.vcxproj
│ │ ├── SAXParser_x64_vs100.vcxproj.filters
│ │ ├── SAXParser_x64_vs110.vcxproj
│ │ ├── SAXParser_x64_vs110.vcxproj.filters
│ │ ├── SAXParser_x64_vs120.vcxproj
│ │ ├── SAXParser_x64_vs120.vcxproj.filters
│ │ ├── SAXParser_x64_vs140.vcxproj
│ │ ├── SAXParser_x64_vs140.vcxproj.filters
│ │ ├── SAXParser_x64_vs150.vcxproj
│ │ ├── SAXParser_x64_vs150.vcxproj.filters
│ │ ├── SAXParser_x64_vs90.vcproj
│ │ └── src
│ │ └── SAXParser.cpp
│ ├── src
│ │ ├── AbstractContainerNode.cpp
│ │ ├── AbstractNode.cpp
│ │ ├── ascii.h
│ │ ├── asciitab.h
│ │ ├── Attr.cpp
│ │ ├── Attributes.cpp
│ │ ├── AttributesImpl.cpp
│ │ ├── AttrMap.cpp
│ │ ├── CDATASection.cpp
│ │ ├── CharacterData.cpp
│ │ ├── ChildNodesList.cpp
│ │ ├── Comment.cpp
│ │ ├── ContentHandler.cpp
│ │ ├── DeclHandler.cpp
│ │ ├── DefaultHandler.cpp
│ │ ├── Document.cpp
│ │ ├── DocumentEvent.cpp
│ │ ├── DocumentFragment.cpp
│ │ ├── DocumentType.cpp
│ │ ├── DOMBuilder.cpp
│ │ ├── DOMException.cpp
│ │ ├── DOMImplementation.cpp
│ │ ├── DOMObject.cpp
│ │ ├── DOMParser.cpp
│ │ ├── DOMSerializer.cpp
│ │ ├── DOMWriter.cpp
│ │ ├── DTDHandler.cpp
│ │ ├── DTDMap.cpp
│ │ ├── Element.cpp
│ │ ├── ElementsByTagNameList.cpp
│ │ ├── Entity.cpp
│ │ ├── EntityReference.cpp
│ │ ├── EntityResolver.cpp
│ │ ├── EntityResolverImpl.cpp
│ │ ├── ErrorHandler.cpp
│ │ ├── Event.cpp
│ │ ├── EventDispatcher.cpp
│ │ ├── EventException.cpp
│ │ ├── EventListener.cpp
│ │ ├── EventTarget.cpp
│ │ ├── expat_config.h
│ │ ├── iasciitab.h
│ │ ├── InputSource.cpp
│ │ ├── internal.h
│ │ ├── latin1tab.h
│ │ ├── LexicalHandler.cpp
│ │ ├── Locator.cpp
│ │ ├── LocatorImpl.cpp
│ │ ├── MutationEvent.cpp
│ │ ├── Name.cpp
│ │ ├── NamedNodeMap.cpp
│ │ ├── NamePool.cpp
│ │ ├── NamespaceStrategy.cpp
│ │ ├── NamespaceSupport.cpp
│ │ ├── nametab.h
│ │ ├── NodeAppender.cpp
│ │ ├── Node.cpp
│ │ ├── NodeFilter.cpp
│ │ ├── NodeIterator.cpp
│ │ ├── NodeList.cpp
│ │ ├── Notation.cpp
│ │ ├── ParserEngine.cpp
│ │ ├── ProcessingInstruction.cpp
│ │ ├── QName.cpp
│ │ ├── SAXException.cpp
│ │ ├── SAXParser.cpp
│ │ ├── siphash.h
│ │ ├── Text.cpp
│ │ ├── TreeWalker.cpp
│ │ ├── utf8tab.h
│ │ ├── ValueTraits.cpp
│ │ ├── WhitespaceFilter.cpp
│ │ ├── XMLException.cpp
│ │ ├── XMLFilter.cpp
│ │ ├── XMLFilterImpl.cpp
│ │ ├── xmlparse.cpp
│ │ ├── XMLReader.cpp
│ │ ├── xmlrole.c
│ │ ├── xmlrole.h
│ │ ├── XMLStreamParser.cpp
│ │ ├── XMLStreamParserException.cpp
│ │ ├── XMLString.cpp
│ │ ├── xmltok.c
│ │ ├── xmltok.h
│ │ ├── xmltok_impl.c
│ │ ├── xmltok_impl.h
│ │ ├── xmltok_ns.c
│ │ └── XMLWriter.cpp
│ ├── testsuite
│ │ ├── CMakeLists.txt
│ │ ├── Makefile
│ │ ├── src
│ │ │ ├── AttributesImplTest.cpp
│ │ │ ├── AttributesImplTest.h
│ │ │ ├── ChildNodesTest.cpp
│ │ │ ├── ChildNodesTest.h
│ │ │ ├── DocumentTest.cpp
│ │ │ ├── DocumentTest.h
│ │ │ ├── DocumentTypeTest.cpp
│ │ │ ├── DocumentTypeTest.h
│ │ │ ├── DOMTestSuite.cpp
│ │ │ ├── DOMTestSuite.h
│ │ │ ├── Driver.cpp
│ │ │ ├── ElementTest.cpp
│ │ │ ├── ElementTest.h
│ │ │ ├── EventTest.cpp
│ │ │ ├── EventTest.h
│ │ │ ├── NamePoolTest.cpp
│ │ │ ├── NamePoolTest.h
│ │ │ ├── NamespaceSupportTest.cpp
│ │ │ ├── NamespaceSupportTest.h
│ │ │ ├── NameTest.cpp
│ │ │ ├── NameTest.h
│ │ │ ├── NodeAppenderTest.cpp
│ │ │ ├── NodeAppenderTest.h
│ │ │ ├── NodeIteratorTest.cpp
│ │ │ ├── NodeIteratorTest.h
│ │ │ ├── NodeTest.cpp
│ │ │ ├── NodeTest.h
│ │ │ ├── ParserWriterTest.cpp
│ │ │ ├── ParserWriterTest.h
│ │ │ ├── SAXParserTest.cpp
│ │ │ ├── SAXParserTest.h
│ │ │ ├── SAXTestSuite.cpp
│ │ │ ├── SAXTestSuite.h
│ │ │ ├── TextTest.cpp
│ │ │ ├── TextTest.h
│ │ │ ├── TreeWalkerTest.cpp
│ │ │ ├── TreeWalkerTest.h
│ │ │ ├── WinCEDriver.cpp
│ │ │ ├── WinDriver.cpp
│ │ │ ├── XMLStreamParserTest.cpp
│ │ │ ├── XMLStreamParserTest.h
│ │ │ ├── XMLTestSuite.cpp
│ │ │ ├── XMLTestSuite.h
│ │ │ ├── XMLWriterTest.cpp
│ │ │ └── XMLWriterTest.h
│ │ ├── TestSuite_CE_vs90.vcproj
│ │ ├── TestSuite.progen
│ │ ├── TestSuite_vs100.vcxproj
│ │ ├── TestSuite_vs100.vcxproj.filters
│ │ ├── TestSuite_vs110.vcxproj
│ │ ├── TestSuite_vs110.vcxproj.filters
│ │ ├── TestSuite_vs120.vcxproj
│ │ ├── TestSuite_vs120.vcxproj.filters
│ │ ├── TestSuite_vs140.vcxproj
│ │ ├── TestSuite_vs140.vcxproj.filters
│ │ ├── TestSuite_vs150.vcxproj
│ │ ├── TestSuite_vs150.vcxproj.filters
│ │ ├── TestSuite_vs90.vcproj
│ │ ├── TestSuite_WEC2013_vs110.vcxproj
│ │ ├── TestSuite_WEC2013_vs110.vcxproj.filters
│ │ ├── TestSuite_WEC2013_vs120.vcxproj
│ │ ├── TestSuite_WEC2013_vs120.vcxproj.filters
│ │ ├── TestSuite_x64_vs100.vcxproj
│ │ ├── TestSuite_x64_vs100.vcxproj.filters
│ │ ├── TestSuite_x64_vs110.vcxproj
│ │ ├── TestSuite_x64_vs110.vcxproj.filters
│ │ ├── TestSuite_x64_vs120.vcxproj
│ │ ├── TestSuite_x64_vs120.vcxproj.filters
│ │ ├── TestSuite_x64_vs140.vcxproj
│ │ ├── TestSuite_x64_vs140.vcxproj.filters
│ │ ├── TestSuite_x64_vs150.vcxproj
│ │ ├── TestSuite_x64_vs150.vcxproj.filters
│ │ └── TestSuite_x64_vs90.vcproj
│ ├── XML_CE_vs90.sln
│ ├── XML_CE_vs90.vcproj
│ ├── XML.progen
│ ├── XML_vs100.sln
│ ├── XML_vs100.vcxproj
│ ├── XML_vs100.vcxproj.filters
│ ├── XML_vs110.sln
│ ├── XML_vs110.vcxproj
│ ├── XML_vs110.vcxproj.filters
│ ├── XML_vs120.sln
│ ├── XML_vs120.vcxproj
│ ├── XML_vs120.vcxproj.filters
│ ├── XML_vs140.sln
│ ├── XML_vs140.vcxproj
│ ├── XML_vs140.vcxproj.filters
│ ├── XML_vs150.sln
│ ├── XML_vs150.vcxproj
│ ├── XML_vs150.vcxproj.filters
│ ├── XML_vs90.sln
│ ├── XML_vs90.vcproj
│ ├── XML_WEC2013_vs110.sln
│ ├── XML_WEC2013_vs110.vcxproj
│ ├── XML_WEC2013_vs110.vcxproj.filters
│ ├── XML_WEC2013_vs120.sln
│ ├── XML_WEC2013_vs120.vcxproj
│ ├── XML_WEC2013_vs120.vcxproj.filters
│ ├── XML_x64_vs100.sln
│ ├── XML_x64_vs100.vcxproj
│ ├── XML_x64_vs100.vcxproj.filters
│ ├── XML_x64_vs110.sln
│ ├── XML_x64_vs110.vcxproj
│ ├── XML_x64_vs110.vcxproj.filters
│ ├── XML_x64_vs120.sln
│ ├── XML_x64_vs120.vcxproj
│ ├── XML_x64_vs120.vcxproj.filters
│ ├── XML_x64_vs140.sln
│ ├── XML_x64_vs140.vcxproj
│ ├── XML_x64_vs140.vcxproj.filters
│ ├── XML_x64_vs150.sln
│ ├── XML_x64_vs150.vcxproj
│ ├── XML_x64_vs150.vcxproj.filters
│ ├── XML_x64_vs90.sln
│ └── XML_x64_vs90.vcproj
└── Zip
├── cmake
│ └── PocoZipConfig.cmake
├── CMakeLists.txt
├── doc
│ ├── ZIP Spec.txt
│ └── ZipUserGuide.page
├── include
│ └── Poco
│ └── Zip
│ ├── Add.h
│ ├── AutoDetectStream.h
│ ├── Compress.h
│ ├── Decompress.h
│ ├── Delete.h
│ ├── Keep.h
│ ├── ParseCallback.h
│ ├── PartialStream.h
│ ├── Rename.h
│ ├── Replace.h
│ ├── SkipCallback.h
│ ├── ZipArchive.h
│ ├── ZipArchiveInfo.h
│ ├── ZipCommon.h
│ ├── ZipDataInfo.h
│ ├── ZipException.h
│ ├── ZipFileInfo.h
│ ├── Zip.h
│ ├── ZipLocalFileHeader.h
│ ├── ZipManipulator.h
│ ├── ZipOperation.h
│ ├── ZipStream.h
│ └── ZipUtil.h
├── Makefile
├── samples
│ ├── CMakeLists.txt
│ ├── Makefile
│ ├── samples_CE_vs90.sln
│ ├── samples.progen
│ ├── samples_vs100.sln
│ ├── samples_vs110.sln
│ ├── samples_vs120.sln
│ ├── samples_vs140.sln
│ ├── samples_vs150.sln
│ ├── samples_vs90.sln
│ ├── samples_WEC2013_vs110.sln
│ ├── samples_WEC2013_vs120.sln
│ ├── samples_x64_vs100.sln
│ ├── samples_x64_vs110.sln
│ ├── samples_x64_vs120.sln
│ ├── samples_x64_vs140.sln
│ ├── samples_x64_vs150.sln
│ ├── samples_x64_vs90.sln
│ ├── unzip
│ │ ├── CMakeLists.txt
│ │ ├── Makefile
│ │ ├── src
│ │ │ └── unzip.cpp
│ │ ├── unzip_CE_vs90.vcproj
│ │ ├── unzip.progen
│ │ ├── unzip_vs100.vcxproj
│ │ ├── unzip_vs100.vcxproj.filters
│ │ ├── unzip_vs110.vcxproj
│ │ ├── unzip_vs110.vcxproj.filters
│ │ ├── unzip_vs120.vcxproj
│ │ ├── unzip_vs120.vcxproj.filters
│ │ ├── unzip_vs140.vcxproj
│ │ ├── unzip_vs140.vcxproj.filters
│ │ ├── unzip_vs150.vcxproj
│ │ ├── unzip_vs150.vcxproj.filters
│ │ ├── unzip_vs90.vcproj
│ │ ├── unzip_WEC2013_vs110.vcxproj
│ │ ├── unzip_WEC2013_vs110.vcxproj.filters
│ │ ├── unzip_WEC2013_vs120.vcxproj
│ │ ├── unzip_WEC2013_vs120.vcxproj.filters
│ │ ├── unzip_x64_vs100.vcxproj
│ │ ├── unzip_x64_vs100.vcxproj.filters
│ │ ├── unzip_x64_vs110.vcxproj
│ │ ├── unzip_x64_vs110.vcxproj.filters
│ │ ├── unzip_x64_vs120.vcxproj
│ │ ├── unzip_x64_vs120.vcxproj.filters
│ │ ├── unzip_x64_vs140.vcxproj
│ │ ├── unzip_x64_vs140.vcxproj.filters
│ │ ├── unzip_x64_vs150.vcxproj
│ │ ├── unzip_x64_vs150.vcxproj.filters
│ │ └── unzip_x64_vs90.vcproj
│ └── zip
│ ├── CMakeLists.txt
│ ├── Makefile
│ ├── src
│ │ └── zip.cpp
│ ├── zip_CE_vs90.vcproj
│ ├── zip.progen
│ ├── zip_vs100.vcxproj
│ ├── zip_vs100.vcxproj.filters
│ ├── zip_vs110.vcxproj
│ ├── zip_vs110.vcxproj.filters
│ ├── zip_vs120.vcxproj
│ ├── zip_vs120.vcxproj.filters
│ ├── zip_vs140.vcxproj
│ ├── zip_vs140.vcxproj.filters
│ ├── zip_vs150.vcxproj
│ ├── zip_vs150.vcxproj.filters
│ ├── zip_vs90.vcproj
│ ├── zip_WEC2013_vs110.vcxproj
│ ├── zip_WEC2013_vs110.vcxproj.filters
│ ├── zip_WEC2013_vs120.vcxproj
│ ├── zip_WEC2013_vs120.vcxproj.filters
│ ├── zip_x64_vs100.vcxproj
│ ├── zip_x64_vs100.vcxproj.filters
│ ├── zip_x64_vs110.vcxproj
│ ├── zip_x64_vs110.vcxproj.filters
│ ├── zip_x64_vs120.vcxproj
│ ├── zip_x64_vs120.vcxproj.filters
│ ├── zip_x64_vs140.vcxproj
│ ├── zip_x64_vs140.vcxproj.filters
│ ├── zip_x64_vs150.vcxproj
│ ├── zip_x64_vs150.vcxproj.filters
│ └── zip_x64_vs90.vcproj
├── src
│ ├── Add.cpp
│ ├── AutoDetectStream.cpp
│ ├── Compress.cpp
│ ├── Decompress.cpp
│ ├── Delete.cpp
│ ├── Keep.cpp
│ ├── ParseCallback.cpp
│ ├── PartialStream.cpp
│ ├── Rename.cpp
│ ├── Replace.cpp
│ ├── SkipCallback.cpp
│ ├── ZipArchive.cpp
│ ├── ZipArchiveInfo.cpp
│ ├── ZipCommon.cpp
│ ├── ZipDataInfo.cpp
│ ├── ZipException.cpp
│ ├── ZipFileInfo.cpp
│ ├── ZipLocalFileHeader.cpp
│ ├── ZipManipulator.cpp
│ ├── ZipOperation.cpp
│ ├── ZipStream.cpp
│ └── ZipUtil.cpp
├── testsuite
│ ├── CMakeLists.txt
│ ├── data
│ │ ├── data.zip
│ │ ├── doc.zip
│ │ ├── test.zip
│ │ └── vuln.zip
│ ├── Makefile
│ ├── src
│ │ ├── CompressTest.cpp
│ │ ├── CompressTest.h
│ │ ├── Driver.cpp
│ │ ├── PartialStreamTest.cpp
│ │ ├── PartialStreamTest.h
│ │ ├── WinCEDriver.cpp
│ │ ├── WinDriver.cpp
│ │ ├── ZipTest.cpp
│ │ ├── ZipTest.h
│ │ ├── ZipTestSuite.cpp
│ │ └── ZipTestSuite.h
│ ├── TestSuite_CE_vs90.vcproj
│ ├── TestSuite.progen
│ ├── TestSuite_vs100.vcxproj
│ ├── TestSuite_vs100.vcxproj.filters
│ ├── TestSuite_vs110.vcxproj
│ ├── TestSuite_vs110.vcxproj.filters
│ ├── TestSuite_vs120.vcxproj
│ ├── TestSuite_vs120.vcxproj.filters
│ ├── TestSuite_vs140.vcxproj
│ ├── TestSuite_vs140.vcxproj.filters
│ ├── TestSuite_vs150.vcxproj
│ ├── TestSuite_vs150.vcxproj.filters
│ ├── TestSuite_vs90.vcproj
│ ├── TestSuite_WEC2013_vs110.vcxproj
│ ├── TestSuite_WEC2013_vs110.vcxproj.filters
│ ├── TestSuite_WEC2013_vs120.vcxproj
│ ├── TestSuite_WEC2013_vs120.vcxproj.filters
│ ├── TestSuite_x64_vs100.vcxproj
│ ├── TestSuite_x64_vs100.vcxproj.filters
│ ├── TestSuite_x64_vs110.vcxproj
│ ├── TestSuite_x64_vs110.vcxproj.filters
│ ├── TestSuite_x64_vs120.vcxproj
│ ├── TestSuite_x64_vs120.vcxproj.filters
│ ├── TestSuite_x64_vs140.vcxproj
│ ├── TestSuite_x64_vs140.vcxproj.filters
│ ├── TestSuite_x64_vs150.vcxproj
│ ├── TestSuite_x64_vs150.vcxproj.filters
│ └── TestSuite_x64_vs90.vcproj
├── Zip_CE_vs90.sln
├── Zip_CE_vs90.vcproj
├── Zip.progen
├── Zip_vs100.sln
├── Zip_vs100.vcxproj
├── Zip_vs100.vcxproj.filters
├── Zip_vs110.sln
├── Zip_vs110.vcxproj
├── Zip_vs110.vcxproj.filters
├── Zip_vs120.sln
├── Zip_vs120.vcxproj
├── Zip_vs120.vcxproj.filters
├── Zip_vs140.sln
├── Zip_vs140.vcxproj
├── Zip_vs140.vcxproj.filters
├── Zip_vs150.sln
├── Zip_vs150.vcxproj
├── Zip_vs150.vcxproj.filters
├── Zip_vs90.sln
├── Zip_vs90.vcproj
├── Zip_WEC2013_vs110.sln
├── Zip_WEC2013_vs110.vcxproj
├── Zip_WEC2013_vs110.vcxproj.filters
├── Zip_WEC2013_vs120.sln
├── Zip_WEC2013_vs120.vcxproj
├── Zip_WEC2013_vs120.vcxproj.filters
├── Zip_x64_vs100.sln
├── Zip_x64_vs100.vcxproj
├── Zip_x64_vs100.vcxproj.filters
├── Zip_x64_vs110.sln
├── Zip_x64_vs110.vcxproj
├── Zip_x64_vs110.vcxproj.filters
├── Zip_x64_vs120.sln
├── Zip_x64_vs120.vcxproj
├── Zip_x64_vs120.vcxproj.filters
├── Zip_x64_vs140.sln
├── Zip_x64_vs140.vcxproj
├── Zip_x64_vs140.vcxproj.filters
├── Zip_x64_vs150.sln
├── Zip_x64_vs150.vcxproj
├── Zip_x64_vs150.vcxproj.filters
├── Zip_x64_vs90.sln
└── Zip_x64_vs90.vcproj
383 directories, 5608 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论