├── .gitattributes ├── LibAsioTest-2010.sln ├── LibAsioTest.sln ├── LibAsioTest.suo ├── LibAsioTest ├── Common.props ├── Common.vsprops ├── Common_x64.vsprops ├── LibAsioTest.2.cpp ├── LibAsioTest.cpp ├── LibAsioTest.h ├── LibAsioTest.rc ├── LibAsioTest.vcproj ├── LibAsioTest.vcxproj ├── Resource.h ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── example ├── Common.props ├── Common.vsprops ├── Common_x64.props ├── Common_x64.vsprops ├── IAsioFacade.cpp ├── IAsioFacade.h ├── LibAsio.aps ├── LibAsio.cpp ├── LibAsio.def ├── LibAsio.h ├── LibAsio.rc ├── LibAsio.vcproj ├── LibAsio.vcxproj ├── LibAsioTest.cpp ├── LibAsioTest.h ├── LibAsioTest.rc ├── LibAsioTest.vcproj ├── Resource.h ├── cpp03 │ └── http │ │ └── server │ │ ├── ConnectionHandler.h │ │ ├── Jamfile │ │ ├── Jamfile.v2 │ │ ├── Subscribe.h │ │ ├── client.hpp │ │ ├── connection.cpp │ │ ├── connection.hpp │ │ ├── connection_manager.hpp │ │ ├── facade.cpp │ │ ├── facade.hpp │ │ ├── io_service_pool.cpp │ │ ├── io_service_pool.hpp │ │ ├── main.cpp │ │ ├── resource_manager.h │ │ ├── server.hpp │ │ ├── subscribe_subject.cpp │ │ ├── subscribe_subject.h │ │ ├── timer.cpp │ │ ├── timer.hpp │ │ └── timer_manager.hpp ├── res │ └── LibAsio.rc2 ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── include ├── pantheios │ ├── assert.h │ ├── backend.h │ ├── backends │ │ ├── be.N.h │ │ ├── be.lrsplit.h │ │ ├── bec.ACE.h │ │ ├── bec.COMErrorObject.h │ │ ├── bec.WindowsConsole.h │ │ ├── bec.WindowsDebugger.h │ │ ├── bec.WindowsEventLog.h │ │ ├── bec.WindowsMessageBox.h │ │ ├── bec.WindowsSyslog.h │ │ ├── bec.console.h │ │ ├── bec.fail.h │ │ ├── bec.file.h │ │ ├── bec.fprintf.h │ │ ├── bec.null.h │ │ ├── bec.speech.h │ │ ├── bec.syslog.h │ │ └── bec.test.h │ ├── fileline.h │ ├── frontend.h │ ├── frontends │ │ ├── fe.N.h │ │ ├── fe.WindowsRegistry.h │ │ ├── fe.all.h │ │ ├── fe.fail.h │ │ ├── fe.null.h │ │ ├── fe.simple.h │ │ └── stock.h │ ├── implicit_link │ │ ├── appl.h │ │ ├── be.ACE.h │ │ ├── be.COMErrorObject.WithCallback.h │ │ ├── be.COMErrorObject.h │ │ ├── be.N.h │ │ ├── be.WindowsConsole.WithCallback.h │ │ ├── be.WindowsConsole.h │ │ ├── be.WindowsDebugger.WithCallback.h │ │ ├── be.WindowsDebugger.h │ │ ├── be.WindowsEventLog.h │ │ ├── be.WindowsMessageBox.h │ │ ├── be.WindowsSyslog.WithCallback.h │ │ ├── be.WindowsSyslog.h │ │ ├── be.console.h │ │ ├── be.fail.h │ │ ├── be.file.WithCallback.h │ │ ├── be.file.h │ │ ├── be.fprintf.WithCallback.h │ │ ├── be.fprintf.h │ │ ├── be.lrsplit.h │ │ ├── be.null.h │ │ ├── be.speech.WithCallback.h │ │ ├── be.speech.h │ │ ├── be.syslog.WithCallback.h │ │ ├── be.syslog.h │ │ ├── be.test.h │ │ ├── bec.ACE.h │ │ ├── bec.COMErrorObject.WithCallback.h │ │ ├── bec.COMErrorObject.h │ │ ├── bec.WindowsConsole.WithCallback.h │ │ ├── bec.WindowsConsole.h │ │ ├── bec.WindowsDebugger.WithCallback.h │ │ ├── bec.WindowsDebugger.h │ │ ├── bec.WindowsEventLog.h │ │ ├── bec.WindowsMessageBox.h │ │ ├── bec.WindowsSyslog.WithCallback.h │ │ ├── bec.WindowsSyslog.h │ │ ├── bec.console.WithCallback.h │ │ ├── bec.console.h │ │ ├── bec.fail.h │ │ ├── bec.file.WithCallback.h │ │ ├── bec.file.h │ │ ├── bec.fprintf.WithCallback.h │ │ ├── bec.fprintf.h │ │ ├── bec.null.h │ │ ├── bec.speech.WithCallback.h │ │ ├── bec.speech.h │ │ ├── bec.syslog.WithCallback.h │ │ ├── bec.syslog.h │ │ ├── bec.test.h │ │ ├── bel.ACE.h │ │ ├── bel.COMErrorObject.WithCallback.h │ │ ├── bel.COMErrorObject.h │ │ ├── bel.WindowsConsole.WithCallback.h │ │ ├── bel.WindowsConsole.h │ │ ├── bel.WindowsDebugger.WithCallback.h │ │ ├── bel.WindowsDebugger.h │ │ ├── bel.WindowsEventLog.h │ │ ├── bel.WindowsMessageBox.h │ │ ├── bel.WindowsSyslog.WithCallback.h │ │ ├── bel.WindowsSyslog.h │ │ ├── bel.console.h │ │ ├── bel.fail.h │ │ ├── bel.file.WithCallback.h │ │ ├── bel.file.h │ │ ├── bel.fprintf.WithCallback.h │ │ ├── bel.fprintf.h │ │ ├── bel.null.h │ │ ├── bel.speech.WithCallback.h │ │ ├── bel.speech.h │ │ ├── bel.syslog.h │ │ ├── ber.ACE.h │ │ ├── ber.COMErrorObject.WithCallback.h │ │ ├── ber.COMErrorObject.h │ │ ├── ber.WindowsConsole.WithCallback.h │ │ ├── ber.WindowsConsole.h │ │ ├── ber.WindowsDebugger.WithCallback.h │ │ ├── ber.WindowsDebugger.h │ │ ├── ber.WindowsEventLog.h │ │ ├── ber.WindowsMessageBox.h │ │ ├── ber.WindowsSyslog.WithCallback.h │ │ ├── ber.WindowsSyslog.h │ │ ├── ber.console.h │ │ ├── ber.fail.h │ │ ├── ber.file.WithCallback.h │ │ ├── ber.file.h │ │ ├── ber.fprintf.WithCallback.h │ │ ├── ber.fprintf.h │ │ ├── ber.null.h │ │ ├── ber.speech.WithCallback.h │ │ ├── ber.speech.h │ │ ├── ber.syslog.h │ │ ├── core.h │ │ ├── fe.N.WithCallback.h │ │ ├── fe.N.h │ │ ├── fe.WindowsRegistry.WithCallback.h │ │ ├── fe.WindowsRegistry.h │ │ ├── fe.all.WithCallback.h │ │ ├── fe.all.h │ │ ├── fe.fail.h │ │ ├── fe.null.WithCallback.h │ │ ├── fe.null.h │ │ ├── fe.simple.WithCallback.h │ │ ├── fe.simple.h │ │ ├── implicit_link_base_.h │ │ └── util.h │ ├── init_codes.h │ ├── inserters.hpp │ ├── inserters │ │ ├── adaptor.hpp │ │ ├── args.hpp │ │ ├── b.hpp │ │ ├── b64.hpp │ │ ├── blob.hpp │ │ ├── boolean.hpp │ │ ├── ch.hpp │ │ ├── character.hpp │ │ ├── exception.hpp │ │ ├── fmt.hpp │ │ ├── hex_ptr.hpp │ │ ├── hostid.hpp │ │ ├── i.hpp │ │ ├── ids.hpp │ │ ├── integer.hpp │ │ ├── m2w.hpp │ │ ├── p.hpp │ │ ├── pad.hpp │ │ ├── pointer.hpp │ │ ├── processid.hpp │ │ ├── real.hpp │ │ ├── slice.hpp │ │ ├── threadid.hpp │ │ ├── variant_bool.hpp │ │ ├── vb.hpp │ │ ├── w2m.hpp │ │ ├── xi.hpp │ │ └── xp.hpp │ ├── internal │ │ ├── generated │ │ │ ├── log_dispatch_functions.h │ │ │ ├── log_dispatch_functions.hpp │ │ │ ├── log_functions.c │ │ │ ├── log_functions.h │ │ │ ├── log_functions.hpp │ │ │ └── log_sev_functions.hpp │ │ ├── initialiser.hpp │ │ ├── lean.h │ │ ├── nox.h │ │ ├── safestr.h │ │ ├── stock_levels.hpp │ │ ├── string_encoding.h │ │ ├── threading.h │ │ └── winlean.h │ ├── pan.hpp │ ├── pantheios.h │ ├── pantheios.hpp │ ├── quality │ │ └── contract.h │ ├── severity │ │ └── levels.hpp │ ├── trace.h │ └── util │ │ ├── backends │ │ ├── arguments.h │ │ └── context.hpp │ │ ├── com │ │ └── exception_helpers.hpp │ │ ├── core │ │ └── apidefs.hpp │ │ ├── memory │ │ ├── auto_buffer_selector.hpp │ │ └── inserters.hpp │ │ ├── severity │ │ ├── ACE.h │ │ ├── WindowsEventLog.h │ │ └── syslog.h │ │ ├── string │ │ ├── snprintf.h │ │ └── strdup.h │ │ ├── system │ │ ├── hostname.h │ │ ├── processid.h │ │ └── threadid.h │ │ ├── test │ │ ├── compiler_warnings_suppression.first_include.h │ │ └── compiler_warnings_suppression.last_include.h │ │ └── time │ │ └── currenttime.h └── xml │ ├── include.cpp │ ├── include.hpp │ ├── pugiconfig.hpp │ ├── pugixml.cpp │ └── pugixml.hpp └── utils ├── Common.cpp ├── Common.h ├── Http.cpp ├── Http.h ├── ObjectHandle.h ├── Singleton2.cpp ├── Singleton2.h ├── UnicodeConverter.cpp ├── UnicodeConverter.h ├── UriCodec.cpp ├── Utils.cpp ├── Utils.h ├── log.cpp ├── log.h ├── md5.cpp ├── md5.h ├── zmq_helper.cpp └── zmq_helper.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/.gitattributes -------------------------------------------------------------------------------- /LibAsioTest-2010.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/LibAsioTest-2010.sln -------------------------------------------------------------------------------- /LibAsioTest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/LibAsioTest.sln -------------------------------------------------------------------------------- /LibAsioTest.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/LibAsioTest.suo -------------------------------------------------------------------------------- /LibAsioTest/Common.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/LibAsioTest/Common.props -------------------------------------------------------------------------------- /LibAsioTest/Common.vsprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/LibAsioTest/Common.vsprops -------------------------------------------------------------------------------- /LibAsioTest/Common_x64.vsprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/LibAsioTest/Common_x64.vsprops -------------------------------------------------------------------------------- /LibAsioTest/LibAsioTest.2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/LibAsioTest/LibAsioTest.2.cpp -------------------------------------------------------------------------------- /LibAsioTest/LibAsioTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/LibAsioTest/LibAsioTest.cpp -------------------------------------------------------------------------------- /LibAsioTest/LibAsioTest.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "resource.h" 4 | -------------------------------------------------------------------------------- /LibAsioTest/LibAsioTest.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/LibAsioTest/LibAsioTest.rc -------------------------------------------------------------------------------- /LibAsioTest/LibAsioTest.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/LibAsioTest/LibAsioTest.vcproj -------------------------------------------------------------------------------- /LibAsioTest/LibAsioTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/LibAsioTest/LibAsioTest.vcxproj -------------------------------------------------------------------------------- /LibAsioTest/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/LibAsioTest/Resource.h -------------------------------------------------------------------------------- /LibAsioTest/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/LibAsioTest/stdafx.cpp -------------------------------------------------------------------------------- /LibAsioTest/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/LibAsioTest/stdafx.h -------------------------------------------------------------------------------- /LibAsioTest/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/LibAsioTest/targetver.h -------------------------------------------------------------------------------- /example/Common.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/example/Common.props -------------------------------------------------------------------------------- /example/Common.vsprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/example/Common.vsprops -------------------------------------------------------------------------------- /example/Common_x64.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/example/Common_x64.props -------------------------------------------------------------------------------- /example/Common_x64.vsprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/example/Common_x64.vsprops -------------------------------------------------------------------------------- /example/IAsioFacade.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/example/IAsioFacade.cpp -------------------------------------------------------------------------------- /example/IAsioFacade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/example/IAsioFacade.h -------------------------------------------------------------------------------- /example/LibAsio.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/example/LibAsio.aps -------------------------------------------------------------------------------- /example/LibAsio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/example/LibAsio.cpp -------------------------------------------------------------------------------- /example/LibAsio.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/example/LibAsio.def -------------------------------------------------------------------------------- /example/LibAsio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/example/LibAsio.h -------------------------------------------------------------------------------- /example/LibAsio.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/example/LibAsio.rc -------------------------------------------------------------------------------- /example/LibAsio.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/example/LibAsio.vcproj -------------------------------------------------------------------------------- /example/LibAsio.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/example/LibAsio.vcxproj -------------------------------------------------------------------------------- /example/LibAsioTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/example/LibAsioTest.cpp -------------------------------------------------------------------------------- /example/LibAsioTest.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "resource.h" 4 | -------------------------------------------------------------------------------- /example/LibAsioTest.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/example/LibAsioTest.rc -------------------------------------------------------------------------------- /example/LibAsioTest.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/example/LibAsioTest.vcproj -------------------------------------------------------------------------------- /example/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/example/Resource.h -------------------------------------------------------------------------------- /example/cpp03/http/server/ConnectionHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/example/cpp03/http/server/ConnectionHandler.h -------------------------------------------------------------------------------- /example/cpp03/http/server/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/example/cpp03/http/server/Jamfile -------------------------------------------------------------------------------- /example/cpp03/http/server/Jamfile.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/example/cpp03/http/server/Jamfile.v2 -------------------------------------------------------------------------------- /example/cpp03/http/server/Subscribe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/example/cpp03/http/server/Subscribe.h -------------------------------------------------------------------------------- /example/cpp03/http/server/client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/example/cpp03/http/server/client.hpp -------------------------------------------------------------------------------- /example/cpp03/http/server/connection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/example/cpp03/http/server/connection.cpp -------------------------------------------------------------------------------- /example/cpp03/http/server/connection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/example/cpp03/http/server/connection.hpp -------------------------------------------------------------------------------- /example/cpp03/http/server/connection_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/example/cpp03/http/server/connection_manager.hpp -------------------------------------------------------------------------------- /example/cpp03/http/server/facade.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/example/cpp03/http/server/facade.cpp -------------------------------------------------------------------------------- /example/cpp03/http/server/facade.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/example/cpp03/http/server/facade.hpp -------------------------------------------------------------------------------- /example/cpp03/http/server/io_service_pool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/example/cpp03/http/server/io_service_pool.cpp -------------------------------------------------------------------------------- /example/cpp03/http/server/io_service_pool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/example/cpp03/http/server/io_service_pool.hpp -------------------------------------------------------------------------------- /example/cpp03/http/server/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/example/cpp03/http/server/main.cpp -------------------------------------------------------------------------------- /example/cpp03/http/server/resource_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/example/cpp03/http/server/resource_manager.h -------------------------------------------------------------------------------- /example/cpp03/http/server/server.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/example/cpp03/http/server/server.hpp -------------------------------------------------------------------------------- /example/cpp03/http/server/subscribe_subject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/example/cpp03/http/server/subscribe_subject.cpp -------------------------------------------------------------------------------- /example/cpp03/http/server/subscribe_subject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/example/cpp03/http/server/subscribe_subject.h -------------------------------------------------------------------------------- /example/cpp03/http/server/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/example/cpp03/http/server/timer.cpp -------------------------------------------------------------------------------- /example/cpp03/http/server/timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/example/cpp03/http/server/timer.hpp -------------------------------------------------------------------------------- /example/cpp03/http/server/timer_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/example/cpp03/http/server/timer_manager.hpp -------------------------------------------------------------------------------- /example/res/LibAsio.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/example/res/LibAsio.rc2 -------------------------------------------------------------------------------- /example/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/example/stdafx.cpp -------------------------------------------------------------------------------- /example/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/example/stdafx.h -------------------------------------------------------------------------------- /example/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/example/targetver.h -------------------------------------------------------------------------------- /include/pantheios/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/assert.h -------------------------------------------------------------------------------- /include/pantheios/backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/backend.h -------------------------------------------------------------------------------- /include/pantheios/backends/be.N.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/backends/be.N.h -------------------------------------------------------------------------------- /include/pantheios/backends/be.lrsplit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/backends/be.lrsplit.h -------------------------------------------------------------------------------- /include/pantheios/backends/bec.ACE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/backends/bec.ACE.h -------------------------------------------------------------------------------- /include/pantheios/backends/bec.COMErrorObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/backends/bec.COMErrorObject.h -------------------------------------------------------------------------------- /include/pantheios/backends/bec.WindowsConsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/backends/bec.WindowsConsole.h -------------------------------------------------------------------------------- /include/pantheios/backends/bec.WindowsDebugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/backends/bec.WindowsDebugger.h -------------------------------------------------------------------------------- /include/pantheios/backends/bec.WindowsEventLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/backends/bec.WindowsEventLog.h -------------------------------------------------------------------------------- /include/pantheios/backends/bec.WindowsMessageBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/backends/bec.WindowsMessageBox.h -------------------------------------------------------------------------------- /include/pantheios/backends/bec.WindowsSyslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/backends/bec.WindowsSyslog.h -------------------------------------------------------------------------------- /include/pantheios/backends/bec.console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/backends/bec.console.h -------------------------------------------------------------------------------- /include/pantheios/backends/bec.fail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/backends/bec.fail.h -------------------------------------------------------------------------------- /include/pantheios/backends/bec.file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/backends/bec.file.h -------------------------------------------------------------------------------- /include/pantheios/backends/bec.fprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/backends/bec.fprintf.h -------------------------------------------------------------------------------- /include/pantheios/backends/bec.null.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/backends/bec.null.h -------------------------------------------------------------------------------- /include/pantheios/backends/bec.speech.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/backends/bec.speech.h -------------------------------------------------------------------------------- /include/pantheios/backends/bec.syslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/backends/bec.syslog.h -------------------------------------------------------------------------------- /include/pantheios/backends/bec.test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/backends/bec.test.h -------------------------------------------------------------------------------- /include/pantheios/fileline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/fileline.h -------------------------------------------------------------------------------- /include/pantheios/frontend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/frontend.h -------------------------------------------------------------------------------- /include/pantheios/frontends/fe.N.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/frontends/fe.N.h -------------------------------------------------------------------------------- /include/pantheios/frontends/fe.WindowsRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/frontends/fe.WindowsRegistry.h -------------------------------------------------------------------------------- /include/pantheios/frontends/fe.all.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/frontends/fe.all.h -------------------------------------------------------------------------------- /include/pantheios/frontends/fe.fail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/frontends/fe.fail.h -------------------------------------------------------------------------------- /include/pantheios/frontends/fe.null.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/frontends/fe.null.h -------------------------------------------------------------------------------- /include/pantheios/frontends/fe.simple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/frontends/fe.simple.h -------------------------------------------------------------------------------- /include/pantheios/frontends/stock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/frontends/stock.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/appl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/appl.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/be.ACE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/be.ACE.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/be.COMErrorObject.WithCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/be.COMErrorObject.WithCallback.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/be.COMErrorObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/be.COMErrorObject.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/be.N.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/be.N.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/be.WindowsConsole.WithCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/be.WindowsConsole.WithCallback.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/be.WindowsConsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/be.WindowsConsole.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/be.WindowsDebugger.WithCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/be.WindowsDebugger.WithCallback.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/be.WindowsDebugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/be.WindowsDebugger.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/be.WindowsEventLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/be.WindowsEventLog.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/be.WindowsMessageBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/be.WindowsMessageBox.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/be.WindowsSyslog.WithCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/be.WindowsSyslog.WithCallback.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/be.WindowsSyslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/be.WindowsSyslog.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/be.console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/be.console.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/be.fail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/be.fail.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/be.file.WithCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/be.file.WithCallback.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/be.file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/be.file.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/be.fprintf.WithCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/be.fprintf.WithCallback.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/be.fprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/be.fprintf.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/be.lrsplit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/be.lrsplit.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/be.null.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/be.null.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/be.speech.WithCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/be.speech.WithCallback.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/be.speech.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/be.speech.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/be.syslog.WithCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/be.syslog.WithCallback.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/be.syslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/be.syslog.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/be.test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/be.test.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bec.ACE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/bec.ACE.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bec.COMErrorObject.WithCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/bec.COMErrorObject.WithCallback.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bec.COMErrorObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/bec.COMErrorObject.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bec.WindowsConsole.WithCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/bec.WindowsConsole.WithCallback.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bec.WindowsConsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/bec.WindowsConsole.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bec.WindowsDebugger.WithCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/bec.WindowsDebugger.WithCallback.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bec.WindowsDebugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/bec.WindowsDebugger.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bec.WindowsEventLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/bec.WindowsEventLog.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bec.WindowsMessageBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/bec.WindowsMessageBox.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bec.WindowsSyslog.WithCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/bec.WindowsSyslog.WithCallback.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bec.WindowsSyslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/bec.WindowsSyslog.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bec.console.WithCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/bec.console.WithCallback.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bec.console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/bec.console.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bec.fail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/bec.fail.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bec.file.WithCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/bec.file.WithCallback.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bec.file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/bec.file.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bec.fprintf.WithCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/bec.fprintf.WithCallback.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bec.fprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/bec.fprintf.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bec.null.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/bec.null.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bec.speech.WithCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/bec.speech.WithCallback.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bec.speech.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/bec.speech.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bec.syslog.WithCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/bec.syslog.WithCallback.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bec.syslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/bec.syslog.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bec.test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/bec.test.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bel.ACE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/bel.ACE.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bel.COMErrorObject.WithCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/bel.COMErrorObject.WithCallback.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bel.COMErrorObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/bel.COMErrorObject.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bel.WindowsConsole.WithCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/bel.WindowsConsole.WithCallback.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bel.WindowsConsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/bel.WindowsConsole.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bel.WindowsDebugger.WithCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/bel.WindowsDebugger.WithCallback.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bel.WindowsDebugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/bel.WindowsDebugger.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bel.WindowsEventLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/bel.WindowsEventLog.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bel.WindowsMessageBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/bel.WindowsMessageBox.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bel.WindowsSyslog.WithCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/bel.WindowsSyslog.WithCallback.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bel.WindowsSyslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/bel.WindowsSyslog.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bel.console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/bel.console.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bel.fail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/bel.fail.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bel.file.WithCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/bel.file.WithCallback.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bel.file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/bel.file.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bel.fprintf.WithCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/bel.fprintf.WithCallback.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bel.fprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/bel.fprintf.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bel.null.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/bel.null.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bel.speech.WithCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/bel.speech.WithCallback.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bel.speech.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/bel.speech.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/bel.syslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/bel.syslog.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/ber.ACE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/ber.ACE.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/ber.COMErrorObject.WithCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/ber.COMErrorObject.WithCallback.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/ber.COMErrorObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/ber.COMErrorObject.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/ber.WindowsConsole.WithCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/ber.WindowsConsole.WithCallback.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/ber.WindowsConsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/ber.WindowsConsole.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/ber.WindowsDebugger.WithCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/ber.WindowsDebugger.WithCallback.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/ber.WindowsDebugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/ber.WindowsDebugger.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/ber.WindowsEventLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/ber.WindowsEventLog.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/ber.WindowsMessageBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/ber.WindowsMessageBox.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/ber.WindowsSyslog.WithCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/ber.WindowsSyslog.WithCallback.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/ber.WindowsSyslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/ber.WindowsSyslog.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/ber.console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/ber.console.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/ber.fail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/ber.fail.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/ber.file.WithCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/ber.file.WithCallback.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/ber.file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/ber.file.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/ber.fprintf.WithCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/ber.fprintf.WithCallback.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/ber.fprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/ber.fprintf.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/ber.null.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/ber.null.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/ber.speech.WithCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/ber.speech.WithCallback.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/ber.speech.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/ber.speech.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/ber.syslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/ber.syslog.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/core.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/fe.N.WithCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/fe.N.WithCallback.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/fe.N.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/fe.N.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/fe.WindowsRegistry.WithCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/fe.WindowsRegistry.WithCallback.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/fe.WindowsRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/fe.WindowsRegistry.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/fe.all.WithCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/fe.all.WithCallback.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/fe.all.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/fe.all.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/fe.fail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/fe.fail.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/fe.null.WithCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/fe.null.WithCallback.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/fe.null.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/fe.null.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/fe.simple.WithCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/fe.simple.WithCallback.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/fe.simple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/fe.simple.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/implicit_link_base_.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/implicit_link_base_.h -------------------------------------------------------------------------------- /include/pantheios/implicit_link/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/implicit_link/util.h -------------------------------------------------------------------------------- /include/pantheios/init_codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/init_codes.h -------------------------------------------------------------------------------- /include/pantheios/inserters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/inserters.hpp -------------------------------------------------------------------------------- /include/pantheios/inserters/adaptor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/inserters/adaptor.hpp -------------------------------------------------------------------------------- /include/pantheios/inserters/args.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/inserters/args.hpp -------------------------------------------------------------------------------- /include/pantheios/inserters/b.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/inserters/b.hpp -------------------------------------------------------------------------------- /include/pantheios/inserters/b64.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/inserters/b64.hpp -------------------------------------------------------------------------------- /include/pantheios/inserters/blob.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/inserters/blob.hpp -------------------------------------------------------------------------------- /include/pantheios/inserters/boolean.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/inserters/boolean.hpp -------------------------------------------------------------------------------- /include/pantheios/inserters/ch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/inserters/ch.hpp -------------------------------------------------------------------------------- /include/pantheios/inserters/character.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/inserters/character.hpp -------------------------------------------------------------------------------- /include/pantheios/inserters/exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/inserters/exception.hpp -------------------------------------------------------------------------------- /include/pantheios/inserters/fmt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/inserters/fmt.hpp -------------------------------------------------------------------------------- /include/pantheios/inserters/hex_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/inserters/hex_ptr.hpp -------------------------------------------------------------------------------- /include/pantheios/inserters/hostid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/inserters/hostid.hpp -------------------------------------------------------------------------------- /include/pantheios/inserters/i.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/inserters/i.hpp -------------------------------------------------------------------------------- /include/pantheios/inserters/ids.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/inserters/ids.hpp -------------------------------------------------------------------------------- /include/pantheios/inserters/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/inserters/integer.hpp -------------------------------------------------------------------------------- /include/pantheios/inserters/m2w.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/inserters/m2w.hpp -------------------------------------------------------------------------------- /include/pantheios/inserters/p.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/inserters/p.hpp -------------------------------------------------------------------------------- /include/pantheios/inserters/pad.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/inserters/pad.hpp -------------------------------------------------------------------------------- /include/pantheios/inserters/pointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/inserters/pointer.hpp -------------------------------------------------------------------------------- /include/pantheios/inserters/processid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/inserters/processid.hpp -------------------------------------------------------------------------------- /include/pantheios/inserters/real.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/inserters/real.hpp -------------------------------------------------------------------------------- /include/pantheios/inserters/slice.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/inserters/slice.hpp -------------------------------------------------------------------------------- /include/pantheios/inserters/threadid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/inserters/threadid.hpp -------------------------------------------------------------------------------- /include/pantheios/inserters/variant_bool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/inserters/variant_bool.hpp -------------------------------------------------------------------------------- /include/pantheios/inserters/vb.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/inserters/vb.hpp -------------------------------------------------------------------------------- /include/pantheios/inserters/w2m.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/inserters/w2m.hpp -------------------------------------------------------------------------------- /include/pantheios/inserters/xi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/inserters/xi.hpp -------------------------------------------------------------------------------- /include/pantheios/inserters/xp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/inserters/xp.hpp -------------------------------------------------------------------------------- /include/pantheios/internal/generated/log_dispatch_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/internal/generated/log_dispatch_functions.h -------------------------------------------------------------------------------- /include/pantheios/internal/generated/log_dispatch_functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/internal/generated/log_dispatch_functions.hpp -------------------------------------------------------------------------------- /include/pantheios/internal/generated/log_functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/internal/generated/log_functions.c -------------------------------------------------------------------------------- /include/pantheios/internal/generated/log_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/internal/generated/log_functions.h -------------------------------------------------------------------------------- /include/pantheios/internal/generated/log_functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/internal/generated/log_functions.hpp -------------------------------------------------------------------------------- /include/pantheios/internal/generated/log_sev_functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/internal/generated/log_sev_functions.hpp -------------------------------------------------------------------------------- /include/pantheios/internal/initialiser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/internal/initialiser.hpp -------------------------------------------------------------------------------- /include/pantheios/internal/lean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/internal/lean.h -------------------------------------------------------------------------------- /include/pantheios/internal/nox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/internal/nox.h -------------------------------------------------------------------------------- /include/pantheios/internal/safestr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/internal/safestr.h -------------------------------------------------------------------------------- /include/pantheios/internal/stock_levels.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/internal/stock_levels.hpp -------------------------------------------------------------------------------- /include/pantheios/internal/string_encoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/internal/string_encoding.h -------------------------------------------------------------------------------- /include/pantheios/internal/threading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/internal/threading.h -------------------------------------------------------------------------------- /include/pantheios/internal/winlean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/internal/winlean.h -------------------------------------------------------------------------------- /include/pantheios/pan.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/pan.hpp -------------------------------------------------------------------------------- /include/pantheios/pantheios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/pantheios.h -------------------------------------------------------------------------------- /include/pantheios/pantheios.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/pantheios.hpp -------------------------------------------------------------------------------- /include/pantheios/quality/contract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/quality/contract.h -------------------------------------------------------------------------------- /include/pantheios/severity/levels.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/severity/levels.hpp -------------------------------------------------------------------------------- /include/pantheios/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/trace.h -------------------------------------------------------------------------------- /include/pantheios/util/backends/arguments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/util/backends/arguments.h -------------------------------------------------------------------------------- /include/pantheios/util/backends/context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/util/backends/context.hpp -------------------------------------------------------------------------------- /include/pantheios/util/com/exception_helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/util/com/exception_helpers.hpp -------------------------------------------------------------------------------- /include/pantheios/util/core/apidefs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/util/core/apidefs.hpp -------------------------------------------------------------------------------- /include/pantheios/util/memory/auto_buffer_selector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/util/memory/auto_buffer_selector.hpp -------------------------------------------------------------------------------- /include/pantheios/util/memory/inserters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/util/memory/inserters.hpp -------------------------------------------------------------------------------- /include/pantheios/util/severity/ACE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/util/severity/ACE.h -------------------------------------------------------------------------------- /include/pantheios/util/severity/WindowsEventLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/util/severity/WindowsEventLog.h -------------------------------------------------------------------------------- /include/pantheios/util/severity/syslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/util/severity/syslog.h -------------------------------------------------------------------------------- /include/pantheios/util/string/snprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/util/string/snprintf.h -------------------------------------------------------------------------------- /include/pantheios/util/string/strdup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/util/string/strdup.h -------------------------------------------------------------------------------- /include/pantheios/util/system/hostname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/util/system/hostname.h -------------------------------------------------------------------------------- /include/pantheios/util/system/processid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/util/system/processid.h -------------------------------------------------------------------------------- /include/pantheios/util/system/threadid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/util/system/threadid.h -------------------------------------------------------------------------------- /include/pantheios/util/test/compiler_warnings_suppression.first_include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/util/test/compiler_warnings_suppression.first_include.h -------------------------------------------------------------------------------- /include/pantheios/util/test/compiler_warnings_suppression.last_include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/util/test/compiler_warnings_suppression.last_include.h -------------------------------------------------------------------------------- /include/pantheios/util/time/currenttime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/pantheios/util/time/currenttime.h -------------------------------------------------------------------------------- /include/xml/include.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/xml/include.cpp -------------------------------------------------------------------------------- /include/xml/include.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/xml/include.hpp -------------------------------------------------------------------------------- /include/xml/pugiconfig.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/xml/pugiconfig.hpp -------------------------------------------------------------------------------- /include/xml/pugixml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/xml/pugixml.cpp -------------------------------------------------------------------------------- /include/xml/pugixml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/include/xml/pugixml.hpp -------------------------------------------------------------------------------- /utils/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/utils/Common.cpp -------------------------------------------------------------------------------- /utils/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/utils/Common.h -------------------------------------------------------------------------------- /utils/Http.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/utils/Http.cpp -------------------------------------------------------------------------------- /utils/Http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/utils/Http.h -------------------------------------------------------------------------------- /utils/ObjectHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/utils/ObjectHandle.h -------------------------------------------------------------------------------- /utils/Singleton2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/utils/Singleton2.cpp -------------------------------------------------------------------------------- /utils/Singleton2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/utils/Singleton2.h -------------------------------------------------------------------------------- /utils/UnicodeConverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/utils/UnicodeConverter.cpp -------------------------------------------------------------------------------- /utils/UnicodeConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/utils/UnicodeConverter.h -------------------------------------------------------------------------------- /utils/UriCodec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/utils/UriCodec.cpp -------------------------------------------------------------------------------- /utils/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/utils/Utils.cpp -------------------------------------------------------------------------------- /utils/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/utils/Utils.h -------------------------------------------------------------------------------- /utils/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/utils/log.cpp -------------------------------------------------------------------------------- /utils/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/utils/log.h -------------------------------------------------------------------------------- /utils/md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/utils/md5.cpp -------------------------------------------------------------------------------- /utils/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/utils/md5.h -------------------------------------------------------------------------------- /utils/zmq_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/utils/zmq_helper.cpp -------------------------------------------------------------------------------- /utils/zmq_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fgmailbox/LibAsio/HEAD/utils/zmq_helper.h --------------------------------------------------------------------------------