├── .gitignore ├── Include ├── Asio │ ├── AsioDefines.h │ ├── IoContextThreadGroup.h │ ├── MemoryUtils.h │ ├── MessageUtils.h │ ├── MulticastReceiver.h │ ├── MulticastSender.h │ ├── MulticastTypedSender.h │ ├── NetworkUtils.h │ ├── SimpleMulticastReceiver.h │ ├── SimpleMulticastSender.h │ ├── SimpleTcpClient.h │ ├── SimpleTcpClientList.h │ ├── SimpleTcpServer.h │ ├── SimpleUdpReceiver.h │ ├── SimpleUdpSender.h │ ├── TcpClient.h │ ├── TcpClientList.h │ ├── TcpConnection.h │ ├── TcpConnections.h │ ├── TcpServer.h │ ├── TcpTypedClient.h │ ├── TcpTypedServer.h │ ├── UdpReceiver.h │ ├── UdpSender.h │ └── UdpTypedSender.h ├── CoreLibraryDllGlobal.h ├── CsvGrid │ ├── CsvGrid.h │ ├── CsvGridCell.h │ ├── CsvGridCellDouble.h │ ├── CsvGridMain.h │ └── CsvGridRow.h ├── DebugLog │ ├── DebugLog.h │ ├── DebugLogSingleton.h │ └── DebugLogging.h ├── Exceptions │ └── DetailedException.h ├── FileUtils │ └── FileUtils.h ├── IniFile │ ├── IniFile.h │ ├── IniFileLines.h │ └── IniFileSectionDetails.h ├── Platform │ └── PlatformDefines.h ├── Serialization │ ├── SerializationIncludes.h │ └── SerializeToVector.h ├── Sorting │ └── GenericSorting.h ├── StringUtils │ └── StringUtils.h └── Threads │ ├── BoundedBuffer.h │ ├── ConcurrentQueue.h │ ├── DeadlineTimer.h │ ├── EventThread.h │ ├── JoinThreads.h │ ├── MessageQueueThread.h │ ├── SyncEvent.h │ ├── ThreadBase.h │ ├── ThreadGroup.h │ ├── ThreadPriority.h │ └── ThreadRunner.h ├── LICENSE ├── QtProject ├── CoreLibrary.pro ├── CoreLibraryDll.pro └── CoreLibraryDll_resource.rc ├── README.md ├── Source ├── Asio │ ├── AsioDefines.cpp │ ├── IoContextThreadGroup.cpp │ ├── MessageUtils.cpp │ ├── MulticastReceiver.cpp │ ├── MulticastSender.cpp │ ├── NetworkUtils.cpp │ ├── SimpleMulticastReceiver.cpp │ ├── SimpleMulticastSender.cpp │ ├── SimpleTcpClient.cpp │ ├── SimpleTcpClientList.cpp │ ├── SimpleTcpServer.cpp │ ├── SimpleUdpReceiver.cpp │ ├── SimpleUdpSender.cpp │ ├── TcpClient.cpp │ ├── TcpClientList.cpp │ ├── TcpConnection.cpp │ ├── TcpConnections.cpp │ ├── TcpServer.cpp │ ├── UdpReceiver.cpp │ └── UdpSender.cpp ├── CsvGrid │ ├── CsvGridCell.cpp │ └── CsvGridCellDouble.cpp ├── DebugLog │ └── DebugLog.cpp ├── FileUtils │ └── FileUtils.cpp ├── IniFile │ ├── IniFile.cpp │ ├── IniFileLines.cpp │ └── IniFileSectionDetails.cpp ├── StringUtils │ └── StringUtils.cpp └── Threads │ ├── DeadlineTimer.cpp │ ├── EventThread.cpp │ ├── SyncEvent.cpp │ ├── ThreadBase.cpp │ ├── ThreadGroup.cpp │ ├── ThreadPriority.cpp │ └── ThreadRunner.cpp ├── UnitTests └── GoogleTests │ ├── QtProject │ ├── CoreLibraryTests.pro │ ├── CoreLibraryTestsProtobuf.pro │ └── deployment.pri │ ├── data │ ├── test_file_1.ini │ ├── test_file_2.ini │ ├── test_file_3.ini │ ├── test_file_4.ini │ ├── test_file_5.ini │ ├── test_file_6.ini │ ├── test_file_check.ini │ ├── testfile1.csv │ └── testfile2.csv │ ├── test.pb.cc │ ├── test.pb.h │ ├── test.proto │ ├── test.proto.bat │ ├── test.proto.sh │ ├── tst_AsioTest.cpp │ ├── tst_CsvGridTest.cpp │ ├── tst_DebugLogTest.cpp │ ├── tst_FileUtilsTest.cpp │ ├── tst_GenericSortingTest.cpp │ ├── tst_GoogleProtoBufTest.cpp │ ├── tst_IniFileTest.cpp │ ├── tst_SerializationUtilsTest.cpp │ ├── tst_StringUtilsTest.cpp │ └── tst_ThreadsTest.cpp ├── docs ├── Doxyfile └── html │ ├── _asio_defines_8cpp.html │ ├── _asio_defines_8cpp.js │ ├── _asio_defines_8h.html │ ├── _asio_defines_8h.js │ ├── _asio_defines_8h_source.html │ ├── _bounded_buffer_8h.html │ ├── _bounded_buffer_8h_source.html │ ├── _concurrent_queue_8h.html │ ├── _concurrent_queue_8h_source.html │ ├── _core_library_dll_global_8h.html │ ├── _core_library_dll_global_8h_source.html │ ├── _csv_grid_8h.html │ ├── _csv_grid_8h.js │ ├── _csv_grid_8h_source.html │ ├── _csv_grid_cell_8cpp.html │ ├── _csv_grid_cell_8h.html │ ├── _csv_grid_cell_8h_source.html │ ├── _csv_grid_cell_double_8cpp.html │ ├── _csv_grid_cell_double_8h.html │ ├── _csv_grid_cell_double_8h_source.html │ ├── _csv_grid_main_8h.html │ ├── _csv_grid_main_8h.js │ ├── _csv_grid_main_8h_source.html │ ├── _csv_grid_row_8h.html │ ├── _csv_grid_row_8h.js │ ├── _csv_grid_row_8h_source.html │ ├── _debug_log_8cpp.html │ ├── _debug_log_8h.html │ ├── _debug_log_8h.js │ ├── _debug_log_8h_source.html │ ├── _debug_log_singleton_8h.html │ ├── _debug_log_singleton_8h.js │ ├── _debug_log_singleton_8h_source.html │ ├── _debug_logging_8h.html │ ├── _debug_logging_8h.js │ ├── _debug_logging_8h_source.html │ ├── _detailed_exception_8h.html │ ├── _detailed_exception_8h_source.html │ ├── _event_thread_8cpp.html │ ├── _event_thread_8h.html │ ├── _event_thread_8h_source.html │ ├── _file_utils_8cpp.html │ ├── _file_utils_8cpp.js │ ├── _file_utils_8h.html │ ├── _file_utils_8h.js │ ├── _file_utils_8h_source.html │ ├── _generic_sorting_8h.html │ ├── _generic_sorting_8h_source.html │ ├── _ini_file_8cpp.html │ ├── _ini_file_8h.html │ ├── _ini_file_8h_source.html │ ├── _ini_file_lines_8cpp.html │ ├── _ini_file_lines_8h.html │ ├── _ini_file_lines_8h.js │ ├── _ini_file_lines_8h_source.html │ ├── _ini_file_section_details_8cpp.html │ ├── _ini_file_section_details_8h.html │ ├── _ini_file_section_details_8h_source.html │ ├── _io_context_thread_group_8cpp.html │ ├── _io_context_thread_group_8h.html │ ├── _io_context_thread_group_8h_source.html │ ├── _io_service_thread_group_8cpp.html │ ├── _io_service_thread_group_8h.html │ ├── _io_service_thread_group_8h_source.html │ ├── _join_threads_8h.html │ ├── _join_threads_8h_source.html │ ├── _message_queue_thread_8h.html │ ├── _message_queue_thread_8h.js │ ├── _message_queue_thread_8h_source.html │ ├── _message_utils_8cpp.html │ ├── _message_utils_8cpp.js │ ├── _message_utils_8h.html │ ├── _message_utils_8h.js │ ├── _message_utils_8h_source.html │ ├── _multicast_receiver_8cpp.html │ ├── _multicast_receiver_8h.html │ ├── _multicast_receiver_8h_source.html │ ├── _multicast_sender_8cpp.html │ ├── _multicast_sender_8h.html │ ├── _multicast_sender_8h_source.html │ ├── _multicast_typed_sender_8h.html │ ├── _multicast_typed_sender_8h_source.html │ ├── _platform_defines_8h.html │ ├── _platform_defines_8h.js │ ├── _platform_defines_8h_source.html │ ├── _serialization_includes_8h.html │ ├── _serialization_includes_8h_source.html │ ├── _serialize_to_vector_8h.html │ ├── _serialize_to_vector_8h.js │ ├── _serialize_to_vector_8h_source.html │ ├── _simple_multicast_receiver_8cpp.html │ ├── _simple_multicast_receiver_8h.html │ ├── _simple_multicast_receiver_8h_source.html │ ├── _simple_multicast_sender_8cpp.html │ ├── _simple_multicast_sender_8h.html │ ├── _simple_multicast_sender_8h_source.html │ ├── _simple_tcp_client_8cpp.html │ ├── _simple_tcp_client_8h.html │ ├── _simple_tcp_client_8h_source.html │ ├── _simple_tcp_client_list_8cpp.html │ ├── _simple_tcp_client_list_8h.html │ ├── _simple_tcp_client_list_8h_source.html │ ├── _simple_tcp_server_8cpp.html │ ├── _simple_tcp_server_8h.html │ ├── _simple_tcp_server_8h_source.html │ ├── _simple_udp_receiver_8cpp.html │ ├── _simple_udp_receiver_8h.html │ ├── _simple_udp_receiver_8h_source.html │ ├── _simple_udp_sender_8cpp.html │ ├── _simple_udp_sender_8h.html │ ├── _simple_udp_sender_8h_source.html │ ├── _string_utils_8cpp.html │ ├── _string_utils_8cpp.js │ ├── _string_utils_8h.html │ ├── _string_utils_8h.js │ ├── _string_utils_8h_source.html │ ├── _sync_event_8cpp.html │ ├── _sync_event_8h.html │ ├── _sync_event_8h.js │ ├── _sync_event_8h_source.html │ ├── _tcp_client_8cpp.html │ ├── _tcp_client_8h.html │ ├── _tcp_client_8h_source.html │ ├── _tcp_client_list_8cpp.html │ ├── _tcp_client_list_8h.html │ ├── _tcp_client_list_8h_source.html │ ├── _tcp_connection_8cpp.html │ ├── _tcp_connection_8h.html │ ├── _tcp_connection_8h_source.html │ ├── _tcp_connections_8cpp.html │ ├── _tcp_connections_8h.html │ ├── _tcp_connections_8h_source.html │ ├── _tcp_server_8cpp.html │ ├── _tcp_server_8h.html │ ├── _tcp_server_8h_source.html │ ├── _tcp_typed_client_8h.html │ ├── _tcp_typed_client_8h_source.html │ ├── _tcp_typed_server_8h.html │ ├── _tcp_typed_server_8h_source.html │ ├── _thread_base_8cpp.html │ ├── _thread_base_8h.html │ ├── _thread_base_8h_source.html │ ├── _thread_group_8cpp.html │ ├── _thread_group_8h.html │ ├── _thread_group_8h_source.html │ ├── _thread_runner_8cpp.html │ ├── _thread_runner_8h.html │ ├── _thread_runner_8h_source.html │ ├── _udp_receiver_8cpp.html │ ├── _udp_receiver_8h.html │ ├── _udp_receiver_8h_source.html │ ├── _udp_sender_8cpp.html │ ├── _udp_sender_8h.html │ ├── _udp_sender_8h_source.html │ ├── _udp_typed_sender_8h.html │ ├── _udp_typed_sender_8h_source.html │ ├── annotated.html │ ├── annotated_dup.js │ ├── bc_s.png │ ├── bdwn.png │ ├── classcore__lib_1_1asio_1_1_io_context_thread_group-members.html │ ├── classcore__lib_1_1asio_1_1_io_context_thread_group.html │ ├── classcore__lib_1_1asio_1_1_io_context_thread_group.js │ ├── classcore__lib_1_1asio_1_1_io_service_thread_group-members.html │ ├── classcore__lib_1_1asio_1_1_io_service_thread_group.html │ ├── classcore__lib_1_1asio_1_1_io_service_thread_group.js │ ├── classcore__lib_1_1asio_1_1messages_1_1_message_builder-members.html │ ├── classcore__lib_1_1asio_1_1messages_1_1_message_builder.html │ ├── classcore__lib_1_1asio_1_1messages_1_1_message_builder.js │ ├── classcore__lib_1_1asio_1_1messages_1_1_message_handler-members.html │ ├── classcore__lib_1_1asio_1_1messages_1_1_message_handler.html │ ├── classcore__lib_1_1asio_1_1messages_1_1_message_handler.js │ ├── classcore__lib_1_1asio_1_1tcp_1_1_async_send_callable_obj-members.html │ ├── classcore__lib_1_1asio_1_1tcp_1_1_async_send_callable_obj.html │ ├── classcore__lib_1_1asio_1_1tcp_1_1_async_send_callable_obj.js │ ├── classcore__lib_1_1asio_1_1tcp_1_1_simple_tcp_client-members.html │ ├── classcore__lib_1_1asio_1_1tcp_1_1_simple_tcp_client.html │ ├── classcore__lib_1_1asio_1_1tcp_1_1_simple_tcp_client.js │ ├── classcore__lib_1_1asio_1_1tcp_1_1_simple_tcp_client_list-members.html │ ├── classcore__lib_1_1asio_1_1tcp_1_1_simple_tcp_client_list.html │ ├── classcore__lib_1_1asio_1_1tcp_1_1_simple_tcp_client_list.js │ ├── classcore__lib_1_1asio_1_1tcp_1_1_simple_tcp_server-members.html │ ├── classcore__lib_1_1asio_1_1tcp_1_1_simple_tcp_server.html │ ├── classcore__lib_1_1asio_1_1tcp_1_1_simple_tcp_server.js │ ├── classcore__lib_1_1asio_1_1tcp_1_1_tcp_client-members.html │ ├── classcore__lib_1_1asio_1_1tcp_1_1_tcp_client.html │ ├── classcore__lib_1_1asio_1_1tcp_1_1_tcp_client.js │ ├── classcore__lib_1_1asio_1_1tcp_1_1_tcp_client_list-members.html │ ├── classcore__lib_1_1asio_1_1tcp_1_1_tcp_client_list.html │ ├── classcore__lib_1_1asio_1_1tcp_1_1_tcp_client_list.js │ ├── classcore__lib_1_1asio_1_1tcp_1_1_tcp_connection-members.html │ ├── classcore__lib_1_1asio_1_1tcp_1_1_tcp_connection.html │ ├── classcore__lib_1_1asio_1_1tcp_1_1_tcp_connection.js │ ├── classcore__lib_1_1asio_1_1tcp_1_1_tcp_connection.png │ ├── classcore__lib_1_1asio_1_1tcp_1_1_tcp_connections-members.html │ ├── classcore__lib_1_1asio_1_1tcp_1_1_tcp_connections.html │ ├── classcore__lib_1_1asio_1_1tcp_1_1_tcp_connections.js │ ├── classcore__lib_1_1asio_1_1tcp_1_1_tcp_server-members.html │ ├── classcore__lib_1_1asio_1_1tcp_1_1_tcp_server.html │ ├── classcore__lib_1_1asio_1_1tcp_1_1_tcp_server.js │ ├── classcore__lib_1_1asio_1_1tcp_1_1_tcp_typed_client-members.html │ ├── classcore__lib_1_1asio_1_1tcp_1_1_tcp_typed_client.html │ ├── classcore__lib_1_1asio_1_1tcp_1_1_tcp_typed_client.js │ ├── classcore__lib_1_1asio_1_1tcp_1_1_tcp_typed_server-members.html │ ├── classcore__lib_1_1asio_1_1tcp_1_1_tcp_typed_server.html │ ├── classcore__lib_1_1asio_1_1tcp_1_1_tcp_typed_server.js │ ├── classcore__lib_1_1asio_1_1udp_1_1_multicast_receiver-members.html │ ├── classcore__lib_1_1asio_1_1udp_1_1_multicast_receiver.html │ ├── classcore__lib_1_1asio_1_1udp_1_1_multicast_receiver.js │ ├── classcore__lib_1_1asio_1_1udp_1_1_multicast_sender-members.html │ ├── classcore__lib_1_1asio_1_1udp_1_1_multicast_sender.html │ ├── classcore__lib_1_1asio_1_1udp_1_1_multicast_sender.js │ ├── classcore__lib_1_1asio_1_1udp_1_1_multicast_typed_sender-members.html │ ├── classcore__lib_1_1asio_1_1udp_1_1_multicast_typed_sender.html │ ├── classcore__lib_1_1asio_1_1udp_1_1_multicast_typed_sender.js │ ├── classcore__lib_1_1asio_1_1udp_1_1_simple_multicast_receiver-members.html │ ├── classcore__lib_1_1asio_1_1udp_1_1_simple_multicast_receiver.html │ ├── classcore__lib_1_1asio_1_1udp_1_1_simple_multicast_receiver.js │ ├── classcore__lib_1_1asio_1_1udp_1_1_simple_multicast_sender-members.html │ ├── classcore__lib_1_1asio_1_1udp_1_1_simple_multicast_sender.html │ ├── classcore__lib_1_1asio_1_1udp_1_1_simple_multicast_sender.js │ ├── classcore__lib_1_1asio_1_1udp_1_1_simple_udp_receiver-members.html │ ├── classcore__lib_1_1asio_1_1udp_1_1_simple_udp_receiver.html │ ├── classcore__lib_1_1asio_1_1udp_1_1_simple_udp_receiver.js │ ├── classcore__lib_1_1asio_1_1udp_1_1_simple_udp_sender-members.html │ ├── classcore__lib_1_1asio_1_1udp_1_1_simple_udp_sender.html │ ├── classcore__lib_1_1asio_1_1udp_1_1_simple_udp_sender.js │ ├── classcore__lib_1_1asio_1_1udp_1_1_udp_receiver-members.html │ ├── classcore__lib_1_1asio_1_1udp_1_1_udp_receiver.html │ ├── classcore__lib_1_1asio_1_1udp_1_1_udp_receiver.js │ ├── classcore__lib_1_1asio_1_1udp_1_1_udp_sender-members.html │ ├── classcore__lib_1_1asio_1_1udp_1_1_udp_sender.html │ ├── classcore__lib_1_1asio_1_1udp_1_1_udp_sender.js │ ├── classcore__lib_1_1asio_1_1udp_1_1_udp_typed_sender-members.html │ ├── classcore__lib_1_1asio_1_1udp_1_1_udp_typed_sender.html │ ├── classcore__lib_1_1asio_1_1udp_1_1_udp_typed_sender.js │ ├── classcore__lib_1_1csv__grid_1_1_cell-members.html │ ├── classcore__lib_1_1csv__grid_1_1_cell.html │ ├── classcore__lib_1_1csv__grid_1_1_cell.js │ ├── classcore__lib_1_1csv__grid_1_1_cell_double-members.html │ ├── classcore__lib_1_1csv__grid_1_1_cell_double.html │ ├── classcore__lib_1_1csv__grid_1_1_cell_double.js │ ├── classcore__lib_1_1csv__grid_1_1_t_csv_grid-members.html │ ├── classcore__lib_1_1csv__grid_1_1_t_csv_grid.html │ ├── classcore__lib_1_1csv__grid_1_1_t_csv_grid.js │ ├── classcore__lib_1_1csv__grid_1_1_t_row-members.html │ ├── classcore__lib_1_1csv__grid_1_1_t_row.html │ ├── classcore__lib_1_1csv__grid_1_1_t_row.js │ ├── classcore__lib_1_1csv__grid_1_1reserver_1_1_container_reserver-members.html │ ├── classcore__lib_1_1csv__grid_1_1reserver_1_1_container_reserver.html │ ├── classcore__lib_1_1csv__grid_1_1reserver_1_1_container_reserver.js │ ├── classcore__lib_1_1csv__grid_1_1reserver_1_1_container_reserver_3_01std_1_1vector_00_01_t_01_4-members.html │ ├── classcore__lib_1_1csv__grid_1_1reserver_1_1_container_reserver_3_01std_1_1vector_00_01_t_01_4.html │ ├── classcore__lib_1_1csv__grid_1_1reserver_1_1_container_reserver_3_01std_1_1vector_00_01_t_01_4.js │ ├── classcore__lib_1_1exceptions_1_1_detailed_exception-members.html │ ├── classcore__lib_1_1exceptions_1_1_detailed_exception.html │ ├── classcore__lib_1_1exceptions_1_1_detailed_exception.js │ ├── classcore__lib_1_1exceptions_1_1_detailed_exception.png │ ├── classcore__lib_1_1ini__file_1_1_ini_file-members.html │ ├── classcore__lib_1_1ini__file_1_1_ini_file.html │ ├── classcore__lib_1_1ini__file_1_1_ini_file.js │ ├── classcore__lib_1_1ini__file_1_1if__private_1_1_blank_line-members.html │ ├── classcore__lib_1_1ini__file_1_1if__private_1_1_blank_line.html │ ├── classcore__lib_1_1ini__file_1_1if__private_1_1_blank_line.js │ ├── classcore__lib_1_1ini__file_1_1if__private_1_1_blank_line.png │ ├── classcore__lib_1_1ini__file_1_1if__private_1_1_comment_line-members.html │ ├── classcore__lib_1_1ini__file_1_1if__private_1_1_comment_line.html │ ├── classcore__lib_1_1ini__file_1_1if__private_1_1_comment_line.js │ ├── classcore__lib_1_1ini__file_1_1if__private_1_1_comment_line.png │ ├── classcore__lib_1_1ini__file_1_1if__private_1_1_key_line-members.html │ ├── classcore__lib_1_1ini__file_1_1if__private_1_1_key_line.html │ ├── classcore__lib_1_1ini__file_1_1if__private_1_1_key_line.js │ ├── classcore__lib_1_1ini__file_1_1if__private_1_1_key_line.png │ ├── classcore__lib_1_1ini__file_1_1if__private_1_1_line-members.html │ ├── classcore__lib_1_1ini__file_1_1if__private_1_1_line.html │ ├── classcore__lib_1_1ini__file_1_1if__private_1_1_line.js │ ├── classcore__lib_1_1ini__file_1_1if__private_1_1_line.png │ ├── classcore__lib_1_1ini__file_1_1if__private_1_1_section_details-members.html │ ├── classcore__lib_1_1ini__file_1_1if__private_1_1_section_details.html │ ├── classcore__lib_1_1ini__file_1_1if__private_1_1_section_details.js │ ├── classcore__lib_1_1ini__file_1_1if__private_1_1_section_line-members.html │ ├── classcore__lib_1_1ini__file_1_1if__private_1_1_section_line.html │ ├── classcore__lib_1_1ini__file_1_1if__private_1_1_section_line.js │ ├── classcore__lib_1_1ini__file_1_1if__private_1_1_section_line.png │ ├── classcore__lib_1_1log_1_1_debug_log-members.html │ ├── classcore__lib_1_1log_1_1_debug_log.html │ ├── classcore__lib_1_1log_1_1_debug_log.js │ ├── classcore__lib_1_1log_1_1dl__private_1_1_log_queue_message-members.html │ ├── classcore__lib_1_1log_1_1dl__private_1_1_log_queue_message.html │ ├── classcore__lib_1_1log_1_1dl__private_1_1_log_queue_message.js │ ├── classcore__lib_1_1sorting_1_1_bubble-members.html │ ├── classcore__lib_1_1sorting_1_1_bubble.html │ ├── classcore__lib_1_1sorting_1_1_bubble.js │ ├── classcore__lib_1_1sorting_1_1_bucket-members.html │ ├── classcore__lib_1_1sorting_1_1_bucket.html │ ├── classcore__lib_1_1sorting_1_1_bucket.js │ ├── classcore__lib_1_1sorting_1_1_insertion-members.html │ ├── classcore__lib_1_1sorting_1_1_insertion.html │ ├── classcore__lib_1_1sorting_1_1_insertion.js │ ├── classcore__lib_1_1sorting_1_1_quick-members.html │ ├── classcore__lib_1_1sorting_1_1_quick.html │ ├── classcore__lib_1_1sorting_1_1_quick.js │ ├── classcore__lib_1_1sorting_1_1_selection-members.html │ ├── classcore__lib_1_1sorting_1_1_selection.html │ ├── classcore__lib_1_1sorting_1_1_selection.js │ ├── classcore__lib_1_1threads_1_1_bounded_buffer-members.html │ ├── classcore__lib_1_1threads_1_1_bounded_buffer.html │ ├── classcore__lib_1_1threads_1_1_bounded_buffer.js │ ├── classcore__lib_1_1threads_1_1_concurrent_queue-members.html │ ├── classcore__lib_1_1threads_1_1_concurrent_queue.html │ ├── classcore__lib_1_1threads_1_1_concurrent_queue.js │ ├── classcore__lib_1_1threads_1_1_event_thread-members.html │ ├── classcore__lib_1_1threads_1_1_event_thread.html │ ├── classcore__lib_1_1threads_1_1_event_thread.js │ ├── classcore__lib_1_1threads_1_1_event_thread.png │ ├── classcore__lib_1_1threads_1_1_join_threads-members.html │ ├── classcore__lib_1_1threads_1_1_join_threads.html │ ├── classcore__lib_1_1threads_1_1_join_threads.js │ ├── classcore__lib_1_1threads_1_1_join_threads_p-members.html │ ├── classcore__lib_1_1threads_1_1_join_threads_p.html │ ├── classcore__lib_1_1threads_1_1_join_threads_p.js │ ├── classcore__lib_1_1threads_1_1_message_queue_thread-members.html │ ├── classcore__lib_1_1threads_1_1_message_queue_thread.html │ ├── classcore__lib_1_1threads_1_1_message_queue_thread.js │ ├── classcore__lib_1_1threads_1_1_message_queue_thread.png │ ├── classcore__lib_1_1threads_1_1_sync_event-members.html │ ├── classcore__lib_1_1threads_1_1_sync_event.html │ ├── classcore__lib_1_1threads_1_1_sync_event.js │ ├── classcore__lib_1_1threads_1_1_thread_base-members.html │ ├── classcore__lib_1_1threads_1_1_thread_base.html │ ├── classcore__lib_1_1threads_1_1_thread_base.js │ ├── classcore__lib_1_1threads_1_1_thread_base.png │ ├── classcore__lib_1_1threads_1_1_thread_group-members.html │ ├── classcore__lib_1_1threads_1_1_thread_group.html │ ├── classcore__lib_1_1threads_1_1_thread_group.js │ ├── classcore__lib_1_1threads_1_1_thread_runner-members.html │ ├── classcore__lib_1_1threads_1_1_thread_runner.html │ ├── classcore__lib_1_1threads_1_1_thread_runner.js │ ├── classcore__lib_1_1threads_1_1_thread_runner.png │ ├── classes.html │ ├── closed.png │ ├── dir_0dc7331be2fb93cd6bb4017c504c019a.html │ ├── dir_0dc7331be2fb93cd6bb4017c504c019a.js │ ├── dir_175fde1093034a3276b493a112c34406.html │ ├── dir_175fde1093034a3276b493a112c34406.js │ ├── dir_1a8b840c8cfd8f11d8b390f9f90a8485.html │ ├── dir_1a8b840c8cfd8f11d8b390f9f90a8485.js │ ├── dir_39f070db9466871944b534c763006460.html │ ├── dir_39f070db9466871944b534c763006460.js │ ├── dir_3cf23a6ae074779ba5e64a25ab19a196.html │ ├── dir_3cf23a6ae074779ba5e64a25ab19a196.js │ ├── dir_3ec16627243fa1ff372be279a1017f0d.html │ ├── dir_3ec16627243fa1ff372be279a1017f0d.js │ ├── dir_5b9acf90d48ec4b1765d1bc4d04cd6ee.html │ ├── dir_5b9acf90d48ec4b1765d1bc4d04cd6ee.js │ ├── dir_5c3bb04f5a2a30452a8e349ffde726fa.html │ ├── dir_5c3bb04f5a2a30452a8e349ffde726fa.js │ ├── dir_66fb55a5566bd2c243f99b6fb708ad7b.html │ ├── dir_66fb55a5566bd2c243f99b6fb708ad7b.js │ ├── dir_6be7c79321edd18fa835780bd31d4092.html │ ├── dir_6be7c79321edd18fa835780bd31d4092.js │ ├── dir_7198da9437b6881c7be7f0b1db0fab6f.html │ ├── dir_7198da9437b6881c7be7f0b1db0fab6f.js │ ├── dir_74389ed8173ad57b461b9d623a1f3867.html │ ├── dir_74389ed8173ad57b461b9d623a1f3867.js │ ├── dir_8155197bf2e91b1a79d6f902c118c4fd.html │ ├── dir_8155197bf2e91b1a79d6f902c118c4fd.js │ ├── dir_856524284ebe840938865dc061f982fb.html │ ├── dir_856524284ebe840938865dc061f982fb.js │ ├── dir_85f9b9f13a6285c2f81df511998160f5.html │ ├── dir_85f9b9f13a6285c2f81df511998160f5.js │ ├── dir_8e745e4d4d0fe8ec4900251067386921.html │ ├── dir_8e745e4d4d0fe8ec4900251067386921.js │ ├── dir_a5789a75eb43e5152704aea29b318b64.html │ ├── dir_a5789a75eb43e5152704aea29b318b64.js │ ├── dir_b61cbc7fed6afc1384d5b46e15359d7d.html │ ├── dir_b61cbc7fed6afc1384d5b46e15359d7d.js │ ├── dir_cd8f788b2c3d76b815cf5350446e93a9.html │ ├── dir_cd8f788b2c3d76b815cf5350446e93a9.js │ ├── dir_f2ba29fa553ec4c13ad34d028846c42d.html │ ├── dir_f2ba29fa553ec4c13ad34d028846c42d.js │ ├── doc.png │ ├── doxygen.css │ ├── doxygen.png │ ├── dynsections.js │ ├── files.html │ ├── files.js │ ├── files_dup.js │ ├── folderclosed.png │ ├── folderopen.png │ ├── functions.html │ ├── functions_0x7e.html │ ├── functions_b.html │ ├── functions_c.html │ ├── functions_d.html │ ├── functions_dup.js │ ├── functions_e.html │ ├── functions_enum.html │ ├── functions_eval.html │ ├── functions_f.html │ ├── functions_func.html │ ├── functions_func.js │ ├── functions_func_0x7e.html │ ├── functions_func_b.html │ ├── functions_func_c.html │ ├── functions_func_d.html │ ├── functions_func_e.html │ ├── functions_func_f.html │ ├── functions_func_g.html │ ├── functions_func_i.html │ ├── functions_func_j.html │ ├── functions_func_k.html │ ├── functions_func_l.html │ ├── functions_func_m.html │ ├── functions_func_n.html │ ├── functions_func_o.html │ ├── functions_func_p.html │ ├── functions_func_r.html │ ├── functions_func_s.html │ ├── functions_func_t.html │ ├── functions_func_u.html │ ├── functions_func_v.html │ ├── functions_func_w.html │ ├── functions_func_~.html │ ├── functions_g.html │ ├── functions_h.html │ ├── functions_i.html │ ├── functions_j.html │ ├── functions_k.html │ ├── functions_l.html │ ├── functions_m.html │ ├── functions_n.html │ ├── functions_o.html │ ├── functions_p.html │ ├── functions_r.html │ ├── functions_rela.html │ ├── functions_s.html │ ├── functions_t.html │ ├── functions_type.html │ ├── functions_u.html │ ├── functions_v.html │ ├── functions_vars.html │ ├── functions_w.html │ ├── functions_~.html │ ├── globals.html │ ├── globals_defs.html │ ├── globals_type.html │ ├── globals_vars.html │ ├── hierarchy.html │ ├── hierarchy.js │ ├── index.html │ ├── jquery.js │ ├── menu.js │ ├── menudata.js │ ├── namespacecore__lib.html │ ├── namespacecore__lib.js │ ├── namespacecore__lib_1_1asio.html │ ├── namespacecore__lib_1_1asio.js │ ├── namespacecore__lib_1_1asio_1_1defs.html │ ├── namespacecore__lib_1_1asio_1_1defs.js │ ├── namespacecore__lib_1_1asio_1_1messages.html │ ├── namespacecore__lib_1_1asio_1_1messages.js │ ├── namespacecore__lib_1_1asio_1_1tcp.html │ ├── namespacecore__lib_1_1asio_1_1tcp.js │ ├── namespacecore__lib_1_1asio_1_1udp.html │ ├── namespacecore__lib_1_1asio_1_1udp.js │ ├── namespacecore__lib_1_1csv__grid.html │ ├── namespacecore__lib_1_1csv__grid.js │ ├── namespacecore__lib_1_1csv__grid_1_1reserver.html │ ├── namespacecore__lib_1_1csv__grid_1_1reserver.js │ ├── namespacecore__lib_1_1exceptions.html │ ├── namespacecore__lib_1_1exceptions.js │ ├── namespacecore__lib_1_1file__utils.html │ ├── namespacecore__lib_1_1ini__file.html │ ├── namespacecore__lib_1_1ini__file.js │ ├── namespacecore__lib_1_1ini__file_1_1if__private.html │ ├── namespacecore__lib_1_1ini__file_1_1if__private.js │ ├── namespacecore__lib_1_1log.html │ ├── namespacecore__lib_1_1log.js │ ├── namespacecore__lib_1_1serialize.html │ ├── namespacecore__lib_1_1serialize.js │ ├── namespacecore__lib_1_1serialize_1_1archives.html │ ├── namespacecore__lib_1_1serialize_1_1impl.html │ ├── namespacecore__lib_1_1serialize_1_1impl.js │ ├── namespacecore__lib_1_1sorting.html │ ├── namespacecore__lib_1_1sorting.js │ ├── namespacecore__lib_1_1string__utils.html │ ├── namespacecore__lib_1_1string__utils.js │ ├── namespacecore__lib_1_1threads.html │ ├── namespacecore__lib_1_1threads.js │ ├── namespacemembers.html │ ├── namespacemembers_enum.html │ ├── namespacemembers_func.html │ ├── namespacemembers_type.html │ ├── namespacemembers_vars.html │ ├── namespaces.html │ ├── namespaces.js │ ├── namespaces_dup.js │ ├── namespacestd.html │ ├── namespacestd.js │ ├── nav_f.png │ ├── nav_g.png │ ├── nav_h.png │ ├── navtree.css │ ├── navtree.js │ ├── navtreedata.js │ ├── navtreeindex0.js │ ├── navtreeindex1.js │ ├── navtreeindex2.js │ ├── navtreeindex3.js │ ├── navtreeindex4.js │ ├── navtreeindex5.js │ ├── navtreeindex6.js │ ├── open.png │ ├── resize.js │ ├── search │ ├── all_0.html │ ├── all_0.js │ ├── all_1.html │ ├── all_1.js │ ├── all_10.html │ ├── all_10.js │ ├── all_11.html │ ├── all_11.js │ ├── all_12.html │ ├── all_12.js │ ├── all_13.html │ ├── all_13.js │ ├── all_14.html │ ├── all_14.js │ ├── all_15.html │ ├── all_15.js │ ├── all_16.html │ ├── all_16.js │ ├── all_17.html │ ├── all_17.js │ ├── all_18.html │ ├── all_18.js │ ├── all_2.html │ ├── all_2.js │ ├── all_3.html │ ├── all_3.js │ ├── all_4.html │ ├── all_4.js │ ├── all_5.html │ ├── all_5.js │ ├── all_6.html │ ├── all_6.js │ ├── all_7.html │ ├── all_7.js │ ├── all_8.html │ ├── all_8.js │ ├── all_9.html │ ├── all_9.js │ ├── all_a.html │ ├── all_a.js │ ├── all_b.html │ ├── all_b.js │ ├── all_c.html │ ├── all_c.js │ ├── all_d.html │ ├── all_d.js │ ├── all_e.html │ ├── all_e.js │ ├── all_f.html │ ├── all_f.js │ ├── classes_0.html │ ├── classes_0.js │ ├── classes_1.html │ ├── classes_1.js │ ├── classes_10.html │ ├── classes_10.js │ ├── classes_2.html │ ├── classes_2.js │ ├── classes_3.html │ ├── classes_3.js │ ├── classes_4.html │ ├── classes_4.js │ ├── classes_5.html │ ├── classes_5.js │ ├── classes_6.html │ ├── classes_6.js │ ├── classes_7.html │ ├── classes_7.js │ ├── classes_8.html │ ├── classes_8.js │ ├── classes_9.html │ ├── classes_9.js │ ├── classes_a.html │ ├── classes_a.js │ ├── classes_b.html │ ├── classes_b.js │ ├── classes_c.html │ ├── classes_c.js │ ├── classes_d.html │ ├── classes_d.js │ ├── classes_e.html │ ├── classes_e.js │ ├── classes_f.html │ ├── classes_f.js │ ├── close.png │ ├── defines_0.html │ ├── defines_0.js │ ├── defines_1.html │ ├── defines_1.js │ ├── defines_2.html │ ├── defines_2.js │ ├── defines_3.html │ ├── defines_3.js │ ├── defines_4.html │ ├── defines_4.js │ ├── enums_0.html │ ├── enums_0.js │ ├── enumvalues_0.html │ ├── enumvalues_0.js │ ├── enumvalues_1.html │ ├── enumvalues_1.js │ ├── enumvalues_2.html │ ├── enumvalues_2.js │ ├── enumvalues_3.html │ ├── enumvalues_3.js │ ├── enumvalues_4.html │ ├── enumvalues_4.js │ ├── enumvalues_5.html │ ├── enumvalues_5.js │ ├── enumvalues_6.html │ ├── enumvalues_6.js │ ├── enumvalues_7.html │ ├── enumvalues_7.js │ ├── enumvalues_8.html │ ├── enumvalues_8.js │ ├── enumvalues_9.html │ ├── enumvalues_9.js │ ├── enumvalues_a.html │ ├── enumvalues_a.js │ ├── enumvalues_b.html │ ├── enumvalues_b.js │ ├── enumvalues_c.html │ ├── enumvalues_c.js │ ├── enumvalues_d.html │ ├── enumvalues_d.js │ ├── enumvalues_e.html │ ├── enumvalues_e.js │ ├── enumvalues_f.html │ ├── enumvalues_f.js │ ├── files_0.html │ ├── files_0.js │ ├── files_1.html │ ├── files_1.js │ ├── files_2.html │ ├── files_2.js │ ├── files_3.html │ ├── files_3.js │ ├── files_4.html │ ├── files_4.js │ ├── files_5.html │ ├── files_5.js │ ├── files_6.html │ ├── files_6.js │ ├── files_7.html │ ├── files_7.js │ ├── files_8.html │ ├── files_8.js │ ├── files_9.html │ ├── files_9.js │ ├── files_a.html │ ├── files_a.js │ ├── files_b.html │ ├── files_b.js │ ├── files_c.html │ ├── files_c.js │ ├── files_d.html │ ├── files_d.js │ ├── functions_0.html │ ├── functions_0.js │ ├── functions_1.html │ ├── functions_1.js │ ├── functions_10.html │ ├── functions_10.js │ ├── functions_11.html │ ├── functions_11.js │ ├── functions_12.html │ ├── functions_12.js │ ├── functions_13.html │ ├── functions_13.js │ ├── functions_14.html │ ├── functions_14.js │ ├── functions_15.html │ ├── functions_15.js │ ├── functions_2.html │ ├── functions_2.js │ ├── functions_3.html │ ├── functions_3.js │ ├── functions_4.html │ ├── functions_4.js │ ├── functions_5.html │ ├── functions_5.js │ ├── functions_6.html │ ├── functions_6.js │ ├── functions_7.html │ ├── functions_7.js │ ├── functions_8.html │ ├── functions_8.js │ ├── functions_9.html │ ├── functions_9.js │ ├── functions_a.html │ ├── functions_a.js │ ├── functions_b.html │ ├── functions_b.js │ ├── functions_c.html │ ├── functions_c.js │ ├── functions_d.html │ ├── functions_d.js │ ├── functions_e.html │ ├── functions_e.js │ ├── functions_f.html │ ├── functions_f.js │ ├── mag_sel.png │ ├── namespaces_0.html │ ├── namespaces_0.js │ ├── namespaces_1.html │ ├── namespaces_1.js │ ├── nomatches.html │ ├── pages_0.html │ ├── pages_0.js │ ├── related_0.html │ ├── related_0.js │ ├── search.css │ ├── search.js │ ├── search_l.png │ ├── search_m.png │ ├── search_r.png │ ├── searchdata.js │ ├── typedefs_0.html │ ├── typedefs_0.js │ ├── typedefs_1.html │ ├── typedefs_1.js │ ├── typedefs_2.html │ ├── typedefs_2.js │ ├── typedefs_3.html │ ├── typedefs_3.js │ ├── typedefs_4.html │ ├── typedefs_4.js │ ├── typedefs_5.html │ ├── typedefs_5.js │ ├── typedefs_6.html │ ├── typedefs_6.js │ ├── typedefs_7.html │ ├── typedefs_7.js │ ├── typedefs_8.html │ ├── typedefs_8.js │ ├── typedefs_9.html │ ├── typedefs_9.js │ ├── typedefs_a.html │ ├── typedefs_a.js │ ├── typedefs_b.html │ ├── typedefs_b.js │ ├── typedefs_c.html │ ├── typedefs_c.js │ ├── typedefs_d.html │ ├── typedefs_d.js │ ├── typedefs_e.html │ ├── typedefs_e.js │ ├── typedefs_f.html │ ├── typedefs_f.js │ ├── variables_0.html │ ├── variables_0.js │ ├── variables_1.html │ ├── variables_1.js │ ├── variables_2.html │ ├── variables_2.js │ ├── variables_3.html │ ├── variables_3.js │ ├── variables_4.html │ ├── variables_4.js │ ├── variables_5.html │ ├── variables_5.js │ ├── variables_6.html │ ├── variables_6.js │ ├── variables_7.html │ ├── variables_7.js │ ├── variables_8.html │ ├── variables_8.js │ ├── variables_9.html │ └── variables_9.js │ ├── splitbar.png │ ├── structcore__lib_1_1asio_1_1defs_1_1_message_header-members.html │ ├── structcore__lib_1_1asio_1_1defs_1_1_message_header.html │ ├── structcore__lib_1_1asio_1_1defs_1_1_message_header.js │ ├── structcore__lib_1_1asio_1_1defs_1_1_received_message-members.html │ ├── structcore__lib_1_1asio_1_1defs_1_1_received_message.html │ ├── structcore__lib_1_1asio_1_1defs_1_1_received_message.js │ ├── structcore__lib_1_1asio_1_1messages_1_1_archive_type_to_enum-members.html │ ├── structcore__lib_1_1asio_1_1messages_1_1_archive_type_to_enum.html │ ├── structcore__lib_1_1asio_1_1messages_1_1_archive_type_to_enum.js │ ├── structcore__lib_1_1asio_1_1messages_1_1_archive_type_to_enum_3_01serialize_1_1archives_1_1out__bin__t_01_4-members.html │ ├── structcore__lib_1_1asio_1_1messages_1_1_archive_type_to_enum_3_01serialize_1_1archives_1_1out__bin__t_01_4.html │ ├── structcore__lib_1_1asio_1_1messages_1_1_archive_type_to_enum_3_01serialize_1_1archives_1_1out__bin__t_01_4.js │ ├── structcore__lib_1_1asio_1_1messages_1_1_archive_type_to_enum_3_01serialize_1_1archives_1_1out__json__t_01_4-members.html │ ├── structcore__lib_1_1asio_1_1messages_1_1_archive_type_to_enum_3_01serialize_1_1archives_1_1out__json__t_01_4.html │ ├── structcore__lib_1_1asio_1_1messages_1_1_archive_type_to_enum_3_01serialize_1_1archives_1_1out__json__t_01_4.js │ ├── structcore__lib_1_1asio_1_1messages_1_1_archive_type_to_enum_3_01serialize_1_1archives_1_1out__port__bin__t_01_4-members.html │ ├── structcore__lib_1_1asio_1_1messages_1_1_archive_type_to_enum_3_01serialize_1_1archives_1_1out__port__bin__t_01_4.html │ ├── structcore__lib_1_1asio_1_1messages_1_1_archive_type_to_enum_3_01serialize_1_1archives_1_1out__port__bin__t_01_4.js │ ├── structcore__lib_1_1asio_1_1messages_1_1_archive_type_to_enum_3_01serialize_1_1archives_1_1out__protobuf__t_01_4-members.html │ ├── structcore__lib_1_1asio_1_1messages_1_1_archive_type_to_enum_3_01serialize_1_1archives_1_1out__protobuf__t_01_4.html │ ├── structcore__lib_1_1asio_1_1messages_1_1_archive_type_to_enum_3_01serialize_1_1archives_1_1out__protobuf__t_01_4.js │ ├── structcore__lib_1_1asio_1_1messages_1_1_archive_type_to_enum_3_01serialize_1_1archives_1_1out__raw__t_01_4-members.html │ ├── structcore__lib_1_1asio_1_1messages_1_1_archive_type_to_enum_3_01serialize_1_1archives_1_1out__raw__t_01_4.html │ ├── structcore__lib_1_1asio_1_1messages_1_1_archive_type_to_enum_3_01serialize_1_1archives_1_1out__raw__t_01_4.js │ ├── structcore__lib_1_1asio_1_1messages_1_1_archive_type_to_enum_3_01serialize_1_1archives_1_1out__xml__t_01_4-members.html │ ├── structcore__lib_1_1asio_1_1messages_1_1_archive_type_to_enum_3_01serialize_1_1archives_1_1out__xml__t_01_4.html │ ├── structcore__lib_1_1asio_1_1messages_1_1_archive_type_to_enum_3_01serialize_1_1archives_1_1out__xml__t_01_4.js │ ├── structcore__lib_1_1log_1_1_default_log_format-members.html │ ├── structcore__lib_1_1log_1_1_default_log_format.html │ ├── structcore__lib_1_1log_1_1_default_log_format.js │ ├── structcore__lib_1_1serialize_1_1impl_1_1_to_char_vector_impl-members.html │ ├── structcore__lib_1_1serialize_1_1impl_1_1_to_char_vector_impl.html │ ├── structcore__lib_1_1serialize_1_1impl_1_1_to_char_vector_impl.js │ ├── structcore__lib_1_1serialize_1_1impl_1_1_to_char_vector_impl_3_01_t_00_01archives_1_1out__protobuf__t_01_4-members.html │ ├── structcore__lib_1_1serialize_1_1impl_1_1_to_char_vector_impl_3_01_t_00_01archives_1_1out__protobuf__t_01_4.html │ ├── structcore__lib_1_1serialize_1_1impl_1_1_to_char_vector_impl_3_01_t_00_01archives_1_1out__protobuf__t_01_4.js │ ├── structcore__lib_1_1serialize_1_1impl_1_1_to_char_vector_impl_3_01_t_00_01archives_1_1out__raw__t_01_4-members.html │ ├── structcore__lib_1_1serialize_1_1impl_1_1_to_char_vector_impl_3_01_t_00_01archives_1_1out__raw__t_01_4.html │ ├── structcore__lib_1_1serialize_1_1impl_1_1_to_char_vector_impl_3_01_t_00_01archives_1_1out__raw__t_01_4.js │ ├── structcore__lib_1_1serialize_1_1impl_1_1_to_object_impl-members.html │ ├── structcore__lib_1_1serialize_1_1impl_1_1_to_object_impl.html │ ├── structcore__lib_1_1serialize_1_1impl_1_1_to_object_impl.js │ ├── structcore__lib_1_1serialize_1_1impl_1_1_to_object_impl_3_01_t_00_01archives_1_1in__protobuf__t_01_4-members.html │ ├── structcore__lib_1_1serialize_1_1impl_1_1_to_object_impl_3_01_t_00_01archives_1_1in__protobuf__t_01_4.html │ ├── structcore__lib_1_1serialize_1_1impl_1_1_to_object_impl_3_01_t_00_01archives_1_1in__protobuf__t_01_4.js │ ├── structcore__lib_1_1serialize_1_1impl_1_1_to_object_impl_3_01_t_00_01archives_1_1in__raw__t_01_4-members.html │ ├── structcore__lib_1_1serialize_1_1impl_1_1_to_object_impl_3_01_t_00_01archives_1_1in__raw__t_01_4.html │ ├── structcore__lib_1_1serialize_1_1impl_1_1_to_object_impl_3_01_t_00_01archives_1_1in__raw__t_01_4.js │ ├── structcore__lib_1_1serialize_1_1protobuf__iarchive.html │ ├── structcore__lib_1_1serialize_1_1protobuf__oarchive.html │ ├── structcore__lib_1_1serialize_1_1raw__iarchive.html │ ├── structcore__lib_1_1serialize_1_1raw__oarchive.html │ ├── structcore__lib_1_1string__utils_1_1deletable__facet.html │ ├── structcore__lib_1_1string__utils_1_1deletable__facet.png │ ├── structcore__lib_1_1threads_1_1_array_deleter-members.html │ ├── structcore__lib_1_1threads_1_1_array_deleter.html │ ├── structcore__lib_1_1threads_1_1_array_deleter.js │ ├── structcore__lib_1_1threads_1_1_single_item_deleter-members.html │ ├── structcore__lib_1_1threads_1_1_single_item_deleter.html │ ├── structcore__lib_1_1threads_1_1_single_item_deleter.js │ ├── structstd_1_1hash_3_01core__lib_1_1log_1_1e_log_message_level_01_4-members.html │ ├── structstd_1_1hash_3_01core__lib_1_1log_1_1e_log_message_level_01_4.html │ ├── structstd_1_1hash_3_01core__lib_1_1log_1_1e_log_message_level_01_4.js │ ├── sync_off.png │ ├── sync_on.png │ ├── tab_a.png │ ├── tab_b.png │ ├── tab_h.png │ ├── tab_s.png │ └── tabs.css └── qt_custom_mkspecs ├── ReadMe.txt ├── linux ├── boost.prf ├── boost_libs.prf ├── cereal.prf ├── core_lib.prf ├── core_lib_dll.prf ├── google_protobuf.prf ├── google_test.prf └── loki.prf └── msvc_64 ├── boost.prf ├── boost_libs.prf ├── cereal.prf ├── core_lib.prf ├── core_lib_dll.prf ├── google_protobuf.prf ├── google_test.prf └── loki.prf /.gitignore: -------------------------------------------------------------------------------- 1 | # Prerequisites 2 | *.d 3 | 4 | # Compiled Object files 5 | *.slo 6 | *.lo 7 | *.o 8 | *.obj 9 | 10 | # Precompiled Headers 11 | *.gch 12 | *.pch 13 | 14 | # Compiled Dynamic libraries 15 | *.so 16 | *.so.* 17 | *.dylib 18 | *.dll 19 | 20 | # Fortran module files 21 | *.mod 22 | *.smod 23 | 24 | # Compiled Static libraries 25 | *.lai 26 | *.la 27 | *.a 28 | *.lib 29 | 30 | # Executables 31 | *.exe 32 | *.out 33 | *.app 34 | 35 | # Debug and info 36 | *.exp 37 | *.pdb 38 | *.res 39 | 40 | # Project user files 41 | *.pro.user 42 | MakeFile 43 | MakeFile.* 44 | /QtProject/*.pro.user 45 | /QtProject/MakeFile 46 | /QtProject/MakeFile.* 47 | /UnitTests/GoogleTests/QtProject/*.pro.user 48 | /UnitTests/GoogleTests/QtProject/MakeFile 49 | /UnitTests/GoogleTests/QtProject/MakeFile.* 50 | 51 | # Qmake stash 52 | *.stash 53 | /QtProject/*.stash 54 | /UnitTests/GoogleTests/QtProject/*.stash 55 | -------------------------------------------------------------------------------- /QtProject/CoreLibraryDll_resource.rc: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | VS_VERSION_INFO VERSIONINFO 4 | FILEVERSION 1,7,1,1 5 | PRODUCTVERSION 1,7,1,1 6 | FILEFLAGSMASK 0x3fL 7 | #ifdef _DEBUG 8 | FILEFLAGS VS_FF_DEBUG 9 | #else 10 | FILEFLAGS 0x0L 11 | #endif 12 | FILEOS VOS_NT_WINDOWS32 13 | FILETYPE VFT_DLL 14 | FILESUBTYPE VFT2_UNKNOWN 15 | BEGIN 16 | BLOCK "StringFileInfo" 17 | BEGIN 18 | BLOCK "040904b0" 19 | BEGIN 20 | VALUE "CompanyName", "\0" 21 | VALUE "FileDescription", "\0" 22 | VALUE "FileVersion", "1.7.1.1\0" 23 | VALUE "LegalCopyright", "\0" 24 | VALUE "OriginalFilename", "CoreLibraryDll.dll\0" 25 | VALUE "ProductName", "CoreLibraryDll\0" 26 | VALUE "ProductVersion", "1.7.1.1\0" 27 | VALUE "InternalName", "\0" 28 | VALUE "Comments", "\0" 29 | VALUE "LegalTrademarks", "\0" 30 | END 31 | END 32 | BLOCK "VarFileInfo" 33 | BEGIN 34 | VALUE "Translation", 0x0409, 1200 35 | END 36 | END 37 | /* End of Version info */ 38 | 39 | -------------------------------------------------------------------------------- /UnitTests/GoogleTests/data/test_file_1.ini: -------------------------------------------------------------------------------- 1 | 2 | ; some kind of comment 3 | ; another comment on a different line 4 | random rubbish 5 | 6 | [Section 1] 7 | ; comment in a section 8 | key1=value as a string 9 | key2=123456 10 | key3=123.456789 11 | =erroneous key 12 | 13 | key4=string with number 1234 14 | ; another comment in a section 15 | 16 | key5=1 17 | 18 | [] 19 | key=value 20 | ; another comment in a section 21 | 22 | [ Section 2 ] 23 | key1 = value as a string 24 | key2 = 123456 25 | key3 = 123.456789 26 | = erroneous key 27 | 28 | key4 = string with number 1234 29 | key5= 0 30 | ; another comment in a section -------------------------------------------------------------------------------- /UnitTests/GoogleTests/data/test_file_2.ini: -------------------------------------------------------------------------------- 1 | ; some kind of comment 2 | ; another comment on a different line 3 | 4 | [Section 1] 5 | ; comment in a section 6 | key1=value as a string 7 | key2=123456 8 | key3=123.456789 9 | =erroneous key 10 | 11 | key4=string with number 1234 12 | ; another comment in a section 13 | 14 | key5=1 15 | 16 | [] 17 | key=value 18 | ; another comment in a section 19 | 20 | [ Section 2 ] 21 | key1 = value as a string 22 | key2 = 123456 23 | key3 = 123.456789 24 | = erroneous key 25 | 26 | key4 = string with number 1234 27 | key5= 0 28 | ; another comment in a section -------------------------------------------------------------------------------- /UnitTests/GoogleTests/data/test_file_3.ini: -------------------------------------------------------------------------------- 1 | ; some kind of comment 2 | ; another comment on a different line 3 | 4 | [Section 1] 5 | ; comment in a section 6 | key1=value as a string 7 | key2=123456 8 | key3=123.456789 9 | 10 | key4=string with number 1234 11 | ; another comment in a section 12 | 13 | key5=1 14 | 15 | [] 16 | key=value 17 | ; another comment in a section 18 | 19 | [ Section 2 ] 20 | key1 = value as a string 21 | key2 = 123456 22 | key3 = 123.456789 23 | = erroneous key 24 | 25 | key4 = string with number 1234 26 | key5= 0 27 | ; another comment in a section -------------------------------------------------------------------------------- /UnitTests/GoogleTests/data/test_file_4.ini: -------------------------------------------------------------------------------- 1 | 2 | ; some kind of comment 3 | ; another comment on a different line 4 | 5 | [Section 1] 6 | ; comment in a section 7 | key1=value as a string 8 | key2=123456 9 | key3=123.456789 10 | 11 | key4=string with number 1234 12 | ; another comment in a section 13 | 14 | key5=1 15 | key5=1 16 | 17 | [ Section 2 ] 18 | key1 = value as a string 19 | key2 = 123456 20 | key3 = 123.456789 21 | 22 | key4 = string with number 1234 23 | key5= 0 24 | ; another comment in a section 25 | -------------------------------------------------------------------------------- /UnitTests/GoogleTests/data/test_file_5.ini: -------------------------------------------------------------------------------- 1 | 2 | ; some kind of comment 3 | ; another comment on a different line 4 | 5 | [Section 1] 6 | ; comment in a section 7 | key1=value as a string 8 | key2=123456 9 | key3=123.456789 10 | 11 | key4=string with number 1234 12 | ; another comment in a section 13 | 14 | key5=1 15 | 16 | [ Section 2 ] 17 | key1 = value as a string 18 | key2 = 123456 19 | key3 = 123.456789 20 | 21 | key4 = string with number 1234 22 | key5= 0 23 | ; another comment in a section 24 | 25 | [ Section 2 ] 26 | key1 = value as a string 27 | key2 = 123456 28 | key3 = 123.456789 29 | 30 | key4 = string with number 1234 31 | key5= 0 32 | ; another comment in a section 33 | -------------------------------------------------------------------------------- /UnitTests/GoogleTests/data/test_file_6.ini: -------------------------------------------------------------------------------- 1 | 2 | ;some kind of comment 3 | ;another comment on a different line 4 | 5 | [Section 1] 6 | ;comment in a section 7 | key1=value as a string 8 | key2=123456 9 | key3=123.456789 10 | 11 | key4=string with number 1234 12 | ; another comment in a section 13 | 14 | key5=1 15 | 16 | [ Section 2 ] 17 | key1 = value as a string 18 | key2 = 123456 19 | key3 = 123.456789 20 | 21 | key4 = string with number 1234 22 | key5= 0 23 | ; another comment in a section 24 | -------------------------------------------------------------------------------- /UnitTests/GoogleTests/data/test_file_check.ini: -------------------------------------------------------------------------------- 1 | ;some kind of comment 2 | ;another comment on a different line 3 | [Section 1] 4 | ;comment in a section 5 | key1=value as a string 6 | key2=123456 7 | key3=123.456789 8 | key4=string with number 1234 9 | ; another comment in a section 10 | key5=1 11 | 12 | [Section 2] 13 | key1=value as a string 14 | key2=123456 15 | key3=123.456789 16 | key4=string with number 1234 17 | key5=1 18 | ; another comment in a section -------------------------------------------------------------------------------- /UnitTests/GoogleTests/test.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto3"; 2 | package core_lib_test; 3 | 4 | message TestMessage { 5 | string name = 1; 6 | uint64 counter = 2; 7 | repeated double values = 3; 8 | } -------------------------------------------------------------------------------- /UnitTests/GoogleTests/test.proto.bat: -------------------------------------------------------------------------------- 1 | protoc --proto_path=D:/Projects/ThirdParty/google_protobuf/include --proto_path=D:/Projects/CoreLibrary/UnitTests/GoogleTests/ --cpp_out=D:/Projects/CoreLibrary/UnitTests/GoogleTests/ D:/Projects/CoreLibrary/UnitTests/GoogleTests/test.proto 2 | -------------------------------------------------------------------------------- /UnitTests/GoogleTests/test.proto.sh: -------------------------------------------------------------------------------- 1 | protoc --proto_path=/usr/include --proto_path=/home/duncan/Projects/CoreLibrary/UnitTests/GoogleTests/ --cpp_out=/home/duncan/Projects/CoreLibrary/UnitTests/GoogleTests/ /home/duncan/Projects/CoreLibrary/UnitTests/GoogleTests/test.proto 2 | -------------------------------------------------------------------------------- /docs/html/_asio_defines_8cpp.js: -------------------------------------------------------------------------------- 1 | var _asio_defines_8cpp = 2 | [ 3 | [ "NULL_CONNECTION", "_asio_defines_8cpp.html#a551e1e2886ec87d7653b2582af98bc35", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/html/_csv_grid_8h.js: -------------------------------------------------------------------------------- 1 | var _csv_grid_8h = 2 | [ 3 | [ "CsvGrid", "_csv_grid_8h.html#a7913621df34f1938af5ba5db220b56a2", null ], 4 | [ "CsvGridD", "_csv_grid_8h.html#ab53d2382a575e2b3f0eb807775baf4b9", null ], 5 | [ "CsvGridL", "_csv_grid_8h.html#a082d3f6536901942f76c60a72b96dd44", null ], 6 | [ "CsvGridLD", "_csv_grid_8h.html#a2a6424f564c10046dee64464e90f3522", null ], 7 | [ "CsvGridV", "_csv_grid_8h.html#ac3f2c2b479226be17497c88a0da4acc0", null ], 8 | [ "CsvGridVD", "_csv_grid_8h.html#af6b2b12ac6c4a7e4d4b907d6f8467669", null ], 9 | [ "Row", "_csv_grid_8h.html#ac50088b241a6397e033cbb8d8260627a", null ], 10 | [ "RowD", "_csv_grid_8h.html#a790b435105054949d8a802fa49d8c8ce", null ], 11 | [ "RowL", "_csv_grid_8h.html#a1a5de680189b27bae426bd989ea56462", null ], 12 | [ "RowV", "_csv_grid_8h.html#ac2e9a6705615804761d728015d79d14e", null ] 13 | ]; -------------------------------------------------------------------------------- /docs/html/_csv_grid_main_8h.js: -------------------------------------------------------------------------------- 1 | var _csv_grid_main_8h = 2 | [ 3 | [ "TCsvGrid", "classcore__lib_1_1csv__grid_1_1_t_csv_grid.html", "classcore__lib_1_1csv__grid_1_1_t_csv_grid" ], 4 | [ "eSaveToFileOptions", "_csv_grid_main_8h.html#aa271aa5490710bb67ad11d1776143eda", [ 5 | [ "truncate", "_csv_grid_main_8h.html#aa271aa5490710bb67ad11d1776143edaa244f58cf07c35fd48d7524b289551e5c", null ], 6 | [ "append", "_csv_grid_main_8h.html#aa271aa5490710bb67ad11d1776143edaa9516dfb15f51c7ee19a4d46b8c0dbe1d", null ] 7 | ] ] 8 | ]; -------------------------------------------------------------------------------- /docs/html/_csv_grid_row_8h.js: -------------------------------------------------------------------------------- 1 | var _csv_grid_row_8h = 2 | [ 3 | [ "ContainerReserver", "classcore__lib_1_1csv__grid_1_1reserver_1_1_container_reserver.html", "classcore__lib_1_1csv__grid_1_1reserver_1_1_container_reserver" ], 4 | [ "ContainerReserver< std::vector, T >", "classcore__lib_1_1csv__grid_1_1reserver_1_1_container_reserver_3_01std_1_1vector_00_01_t_01_4.html", "classcore__lib_1_1csv__grid_1_1reserver_1_1_container_reserver_3_01std_1_1vector_00_01_t_01_4" ], 5 | [ "TCsvGrid", "classcore__lib_1_1csv__grid_1_1_t_csv_grid.html", "classcore__lib_1_1csv__grid_1_1_t_csv_grid" ], 6 | [ "TRow", "classcore__lib_1_1csv__grid_1_1_t_row.html", "classcore__lib_1_1csv__grid_1_1_t_row" ], 7 | [ "eCellFormatOptions", "_csv_grid_row_8h.html#a0026f6a31705901d85aa70d58865720e", [ 8 | [ "simpleCells", "_csv_grid_row_8h.html#a0026f6a31705901d85aa70d58865720ea09ff6861a227c1d20c44a38a8be994b3", null ], 9 | [ "doubleQuotedCells", "_csv_grid_row_8h.html#a0026f6a31705901d85aa70d58865720ea33bed151ad5c2d0ce74bf5c6bc8db225", null ] 10 | ] ] 11 | ]; -------------------------------------------------------------------------------- /docs/html/_debug_log_singleton_8h.js: -------------------------------------------------------------------------------- 1 | var _debug_log_singleton_8h = 2 | [ 3 | [ "DEBUG_LOG_SINGLETON", "_debug_log_singleton_8h.html#ad7048a4318c043865ee61e5132427eb5", null ], 4 | [ "DEBUG_LOG_SINGLETON_DELETER", "_debug_log_singleton_8h.html#a11a216c0921fdfc5497cd0be82c306a7", null ], 5 | [ "debug_singelton_deleter_t", "_debug_log_singleton_8h.html#a1e067e6c63f68e2609f45b565b344454", null ], 6 | [ "debug_singelton_t", "_debug_log_singleton_8h.html#ac271d0ca6e9b141e441bd26e15473b38", null ], 7 | [ "default_log_t", "_debug_log_singleton_8h.html#a201bedc730c57d53881cb7f84efa3771", null ], 8 | [ "DebugLogGracefulDelete", "_debug_log_singleton_8h.html#a3f91ad34ea54b555e5cc3d69767669ca", null ], 9 | [ "DebugLogInstance", "_debug_log_singleton_8h.html#a1dae4010d1dae761c5856bbfb9c69d2d", null ] 10 | ]; -------------------------------------------------------------------------------- /docs/html/_file_utils_8cpp.js: -------------------------------------------------------------------------------- 1 | var _file_utils_8cpp = 2 | [ 3 | [ "CopyDirectoryRecursively", "_file_utils_8cpp.html#a2025edafa37f6866ded1dc908497aa54", null ], 4 | [ "FindCommonRootPath", "_file_utils_8cpp.html#aa4251be48265d80ec294da8cad824df5", null ], 5 | [ "FindFileRecursively", "_file_utils_8cpp.html#aa2defa75129ffcd4a0d35acdca038e82", null ], 6 | [ "ListDirectoryContents", "_file_utils_8cpp.html#a922a68f2048c869ace2cd47dd0595bb2", null ], 7 | [ "ListSubDirectories", "_file_utils_8cpp.html#a7a23b45090ddcc50c5ae7bb27397ccd3", null ] 8 | ]; -------------------------------------------------------------------------------- /docs/html/_file_utils_8h.js: -------------------------------------------------------------------------------- 1 | var _file_utils_8h = 2 | [ 3 | [ "eCopyDirectoryOptions", "_file_utils_8h.html#a7982ac6ae2073592b0dc577534c02cba", [ 4 | [ "failIfTargetExists", "_file_utils_8h.html#a7982ac6ae2073592b0dc577534c02cbaae4032037821487c3ac8287058718c5f3", null ], 5 | [ "continueIfTargetExists", "_file_utils_8h.html#a7982ac6ae2073592b0dc577534c02cbaad7e3a78cc481a58b0e0cb3d83503823f", null ] 6 | ] ], 7 | [ "CopyDirectoryRecursively", "_file_utils_8h.html#a2025edafa37f6866ded1dc908497aa54", null ], 8 | [ "FindCommonRootPath", "_file_utils_8h.html#aa4251be48265d80ec294da8cad824df5", null ], 9 | [ "FindFileRecursively", "_file_utils_8h.html#aa2defa75129ffcd4a0d35acdca038e82", null ], 10 | [ "ListDirectoryContents", "_file_utils_8h.html#a922a68f2048c869ace2cd47dd0595bb2", null ], 11 | [ "ListSubDirectories", "_file_utils_8h.html#a7a23b45090ddcc50c5ae7bb27397ccd3", null ] 12 | ]; -------------------------------------------------------------------------------- /docs/html/_message_queue_thread_8h.js: -------------------------------------------------------------------------------- 1 | var _message_queue_thread_8h = 2 | [ 3 | [ "MessageQueueThread", "classcore__lib_1_1threads_1_1_message_queue_thread.html", "classcore__lib_1_1threads_1_1_message_queue_thread" ], 4 | [ "eOnDestroyOptions", "_message_queue_thread_8h.html#a0fa4cd0059edae3a1590cd40d77ba706", [ 5 | [ "ignoreRemainingItems", "_message_queue_thread_8h.html#a0fa4cd0059edae3a1590cd40d77ba706a709ce4d50d542e1a000fa119b9680d3e", null ], 6 | [ "processRemainingItems", "_message_queue_thread_8h.html#a0fa4cd0059edae3a1590cd40d77ba706a6384751382f97eb4a6fc8ee8bd31fc83", null ] 7 | ] ] 8 | ]; -------------------------------------------------------------------------------- /docs/html/_message_utils_8cpp.js: -------------------------------------------------------------------------------- 1 | var _message_utils_8cpp = 2 | [ 3 | [ "FillHeader", "_message_utils_8cpp.html#a1ca67d30790126871d271e19d7c7cc46", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/html/_platform_defines_8h.js: -------------------------------------------------------------------------------- 1 | var _platform_defines_8h = 2 | [ 3 | [ "CONSTEXPR_", "_platform_defines_8h.html#acd65826b4da6022756b00160a59e2c77", null ], 4 | [ "NO_EXCEPT_", "_platform_defines_8h.html#add5a4c361bd0fe8f1ca88ea5e5d39fea", null ], 5 | [ "STATIC_CONSTEXPR_", "_platform_defines_8h.html#a05d8f96bb92db37f4f27ee4c15c48c24", null ], 6 | [ "TYPENAME_DECL_", "_platform_defines_8h.html#aab8ce52d305ed9aac07efb498766b5fb", null ] 7 | ]; -------------------------------------------------------------------------------- /docs/html/_string_utils_8cpp.js: -------------------------------------------------------------------------------- 1 | var _string_utils_8cpp = 2 | [ 3 | [ "deletable_facet", "structcore__lib_1_1string__utils_1_1deletable__facet.html", null ], 4 | [ "IsAlphaNumeric", "_string_utils_8cpp.html#abb157972d1c4bb56d7d3e06139908dac", null ], 5 | [ "IsAlphaNumeric", "_string_utils_8cpp.html#a0f5c30c65b6026b18fa1fa80394e18e8", null ], 6 | [ "PackStdString", "_string_utils_8cpp.html#a0016720d11e6e4fe751381d7cb121630", null ], 7 | [ "RemoveIllegalChars", "_string_utils_8cpp.html#a3ba7ba8baee14121591a02f2af0425ca", null ], 8 | [ "RemoveIllegalChars", "_string_utils_8cpp.html#a0ac0221ad48a0a5a1072a92359cbd2b2", null ], 9 | [ "ReplaceTokens", "_string_utils_8cpp.html#a5540a94c2ffec132633a074be55f6790", null ], 10 | [ "SplitString", "_string_utils_8cpp.html#ac29af203fb8dd95cf24851ae3f8a2c17", null ], 11 | [ "StringToWString", "_string_utils_8cpp.html#ac7720660074f52f79604b91ff0f38126", null ], 12 | [ "TokeniseString", "_string_utils_8cpp.html#a36d0d357a5ce98dc84a5030f869a01c7", null ], 13 | [ "WStringToString", "_string_utils_8cpp.html#ab656e115ee5d57fda92d6d4b2ab91f32", null ] 14 | ]; -------------------------------------------------------------------------------- /docs/html/annotated_dup.js: -------------------------------------------------------------------------------- 1 | var annotated_dup = 2 | [ 3 | [ "core_lib", "namespacecore__lib.html", "namespacecore__lib" ], 4 | [ "std", "namespacestd.html", "namespacestd" ] 5 | ]; -------------------------------------------------------------------------------- /docs/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dac1976/CoreLibrary/588bf7289256d8edfc6c311ebdebc5574653a863/docs/html/bc_s.png -------------------------------------------------------------------------------- /docs/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dac1976/CoreLibrary/588bf7289256d8edfc6c311ebdebc5574653a863/docs/html/bdwn.png -------------------------------------------------------------------------------- /docs/html/classcore__lib_1_1asio_1_1tcp_1_1_tcp_connection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dac1976/CoreLibrary/588bf7289256d8edfc6c311ebdebc5574653a863/docs/html/classcore__lib_1_1asio_1_1tcp_1_1_tcp_connection.png -------------------------------------------------------------------------------- /docs/html/classcore__lib_1_1csv__grid_1_1reserver_1_1_container_reserver.js: -------------------------------------------------------------------------------- 1 | var classcore__lib_1_1csv__grid_1_1reserver_1_1_container_reserver = 2 | [ 3 | [ "container_type", "classcore__lib_1_1csv__grid_1_1reserver_1_1_container_reserver.html#a6fe9a1e5d48b1477388b9dba08d9eb0f", null ], 4 | [ "operator()", "classcore__lib_1_1csv__grid_1_1reserver_1_1_container_reserver.html#ab80b4cacf138c12381bb1eb4d3196fcb", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/html/classcore__lib_1_1csv__grid_1_1reserver_1_1_container_reserver_3_01std_1_1vector_00_01_t_01_4.js: -------------------------------------------------------------------------------- 1 | var classcore__lib_1_1csv__grid_1_1reserver_1_1_container_reserver_3_01std_1_1vector_00_01_t_01_4 = 2 | [ 3 | [ "container_type", "classcore__lib_1_1csv__grid_1_1reserver_1_1_container_reserver_3_01std_1_1vector_00_01_t_01_4.html#a8e90e1bdef9e0c3b45257995f385b173", null ], 4 | [ "operator()", "classcore__lib_1_1csv__grid_1_1reserver_1_1_container_reserver_3_01std_1_1vector_00_01_t_01_4.html#ae659b8a07f8053899e3956b60df37cf5", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/html/classcore__lib_1_1exceptions_1_1_detailed_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dac1976/CoreLibrary/588bf7289256d8edfc6c311ebdebc5574653a863/docs/html/classcore__lib_1_1exceptions_1_1_detailed_exception.png -------------------------------------------------------------------------------- /docs/html/classcore__lib_1_1ini__file_1_1if__private_1_1_blank_line.js: -------------------------------------------------------------------------------- 1 | var classcore__lib_1_1ini__file_1_1if__private_1_1_blank_line = 2 | [ 3 | [ "BlankLine", "classcore__lib_1_1ini__file_1_1if__private_1_1_blank_line.html#a15198dd3695c0f4b773b5c651f6456ba", null ], 4 | [ "BlankLine", "classcore__lib_1_1ini__file_1_1if__private_1_1_blank_line.html#aa1a24377a5d4a79243586b2c8dc40404", null ], 5 | [ "~BlankLine", "classcore__lib_1_1ini__file_1_1if__private_1_1_blank_line.html#a75ceac987ea61559ec3cd8cd7c1ceeb3", null ], 6 | [ "BlankLine", "classcore__lib_1_1ini__file_1_1if__private_1_1_blank_line.html#a5cd9b9f28040295e24644143cbce0f9b", null ], 7 | [ "operator=", "classcore__lib_1_1ini__file_1_1if__private_1_1_blank_line.html#ace38bb814a06f8266b46d6d710368589", null ], 8 | [ "operator=", "classcore__lib_1_1ini__file_1_1if__private_1_1_blank_line.html#ab7d1e59de155016cf3331dbbd13dc959", null ], 9 | [ "Print", "classcore__lib_1_1ini__file_1_1if__private_1_1_blank_line.html#af3bda0dc3c7b36b0e1b7757795c4abf0", null ] 10 | ]; -------------------------------------------------------------------------------- /docs/html/classcore__lib_1_1ini__file_1_1if__private_1_1_blank_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dac1976/CoreLibrary/588bf7289256d8edfc6c311ebdebc5574653a863/docs/html/classcore__lib_1_1ini__file_1_1if__private_1_1_blank_line.png -------------------------------------------------------------------------------- /docs/html/classcore__lib_1_1ini__file_1_1if__private_1_1_comment_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dac1976/CoreLibrary/588bf7289256d8edfc6c311ebdebc5574653a863/docs/html/classcore__lib_1_1ini__file_1_1if__private_1_1_comment_line.png -------------------------------------------------------------------------------- /docs/html/classcore__lib_1_1ini__file_1_1if__private_1_1_key_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dac1976/CoreLibrary/588bf7289256d8edfc6c311ebdebc5574653a863/docs/html/classcore__lib_1_1ini__file_1_1if__private_1_1_key_line.png -------------------------------------------------------------------------------- /docs/html/classcore__lib_1_1ini__file_1_1if__private_1_1_line.js: -------------------------------------------------------------------------------- 1 | var classcore__lib_1_1ini__file_1_1if__private_1_1_line = 2 | [ 3 | [ "Line", "classcore__lib_1_1ini__file_1_1if__private_1_1_line.html#a51d6c8885296c2521bdd1299e18de1da", null ], 4 | [ "~Line", "classcore__lib_1_1ini__file_1_1if__private_1_1_line.html#aa1312203fe040a796433082384a6a157", null ], 5 | [ "Line", "classcore__lib_1_1ini__file_1_1if__private_1_1_line.html#a652971a1c3211f2cf9aec4e0641ee37e", null ], 6 | [ "Line", "classcore__lib_1_1ini__file_1_1if__private_1_1_line.html#a358f9eace3e460dcce7e79dc576f6c6c", null ], 7 | [ "operator=", "classcore__lib_1_1ini__file_1_1if__private_1_1_line.html#a596c9cdee2c1a72181bfedb640cba86e", null ], 8 | [ "operator=", "classcore__lib_1_1ini__file_1_1if__private_1_1_line.html#a926127ac17ea827fed753438858502ef", null ], 9 | [ "Print", "classcore__lib_1_1ini__file_1_1if__private_1_1_line.html#a33449c7b1adec1267583ecfd6e018c0a", null ] 10 | ]; -------------------------------------------------------------------------------- /docs/html/classcore__lib_1_1ini__file_1_1if__private_1_1_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dac1976/CoreLibrary/588bf7289256d8edfc6c311ebdebc5574653a863/docs/html/classcore__lib_1_1ini__file_1_1if__private_1_1_line.png -------------------------------------------------------------------------------- /docs/html/classcore__lib_1_1ini__file_1_1if__private_1_1_section_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dac1976/CoreLibrary/588bf7289256d8edfc6c311ebdebc5574653a863/docs/html/classcore__lib_1_1ini__file_1_1if__private_1_1_section_line.png -------------------------------------------------------------------------------- /docs/html/classcore__lib_1_1sorting_1_1_bubble.js: -------------------------------------------------------------------------------- 1 | var classcore__lib_1_1sorting_1_1_bubble = 2 | [ 3 | [ "item_compare", "classcore__lib_1_1sorting_1_1_bubble.html#a2d82e54aaa253e4d93f47895cf51ef6e", null ], 4 | [ "Sort", "classcore__lib_1_1sorting_1_1_bubble.html#a80c2c867d2f04b5ff57fdcb8ac985adb", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/html/classcore__lib_1_1sorting_1_1_insertion.js: -------------------------------------------------------------------------------- 1 | var classcore__lib_1_1sorting_1_1_insertion = 2 | [ 3 | [ "item_compare", "classcore__lib_1_1sorting_1_1_insertion.html#ac2c542facc5aaa511060c41fa883cc77", null ], 4 | [ "Sort", "classcore__lib_1_1sorting_1_1_insertion.html#a5f850101d861b043af1c104583958ed1", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/html/classcore__lib_1_1sorting_1_1_quick.js: -------------------------------------------------------------------------------- 1 | var classcore__lib_1_1sorting_1_1_quick = 2 | [ 3 | [ "item_compare", "classcore__lib_1_1sorting_1_1_quick.html#abceb0f752faf46b2475fe19bc9ec22ec", null ], 4 | [ "Sort", "classcore__lib_1_1sorting_1_1_quick.html#aabb9518925bea0c5e628e6d98d73fb5a", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/html/classcore__lib_1_1sorting_1_1_selection.js: -------------------------------------------------------------------------------- 1 | var classcore__lib_1_1sorting_1_1_selection = 2 | [ 3 | [ "item_compare", "classcore__lib_1_1sorting_1_1_selection.html#a67f107ad8578c78d3cf168a1fbee3612", null ], 4 | [ "Sort", "classcore__lib_1_1sorting_1_1_selection.html#aa68e625d05d95af1bdd10eb4d6a43b75", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/html/classcore__lib_1_1threads_1_1_event_thread.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dac1976/CoreLibrary/588bf7289256d8edfc6c311ebdebc5574653a863/docs/html/classcore__lib_1_1threads_1_1_event_thread.png -------------------------------------------------------------------------------- /docs/html/classcore__lib_1_1threads_1_1_join_threads.js: -------------------------------------------------------------------------------- 1 | var classcore__lib_1_1threads_1_1_join_threads = 2 | [ 3 | [ "container_type", "classcore__lib_1_1threads_1_1_join_threads.html#a8a443aa33613a0d4cb0fe40bf120286f", null ], 4 | [ "JoinThreads", "classcore__lib_1_1threads_1_1_join_threads.html#ac5420dfc818846df115acbc01010c415", null ], 5 | [ "JoinThreads", "classcore__lib_1_1threads_1_1_join_threads.html#a88fde014abb6e8d308d6c220475b2bea", null ], 6 | [ "JoinThreads", "classcore__lib_1_1threads_1_1_join_threads.html#a221f80637b5a6d74654be56a57412b1e", null ], 7 | [ "~JoinThreads", "classcore__lib_1_1threads_1_1_join_threads.html#ae01dd06f19c4f0e63850457445c2b682", null ], 8 | [ "operator=", "classcore__lib_1_1threads_1_1_join_threads.html#a57d63ee3e2a022f0fc80bec4b2420ed5", null ], 9 | [ "operator=", "classcore__lib_1_1threads_1_1_join_threads.html#ae99bd05a8b0c74148512282bb87b782c", null ], 10 | [ "m_threads", "classcore__lib_1_1threads_1_1_join_threads.html#ae1dec4ae61e92766b19fbf8ebb0aa673", null ] 11 | ]; -------------------------------------------------------------------------------- /docs/html/classcore__lib_1_1threads_1_1_join_threads_p.js: -------------------------------------------------------------------------------- 1 | var classcore__lib_1_1threads_1_1_join_threads_p = 2 | [ 3 | [ "container_type", "classcore__lib_1_1threads_1_1_join_threads_p.html#ae6a121f2c3ca62fcaf90ade485a131c5", null ], 4 | [ "JoinThreadsP", "classcore__lib_1_1threads_1_1_join_threads_p.html#a40a415359515c3cca0c011ace583bf0e", null ], 5 | [ "JoinThreadsP", "classcore__lib_1_1threads_1_1_join_threads_p.html#add9d7a1c30b5ea883e298b674d6b4e4e", null ], 6 | [ "JoinThreadsP", "classcore__lib_1_1threads_1_1_join_threads_p.html#a9c33c26917838daa6e4e76e6e2a677e6", null ], 7 | [ "~JoinThreadsP", "classcore__lib_1_1threads_1_1_join_threads_p.html#aa1d2db467703b6cd43d4ce6b8ac23b20", null ], 8 | [ "operator=", "classcore__lib_1_1threads_1_1_join_threads_p.html#a14ec852341341fb9b0acee9c79349472", null ], 9 | [ "operator=", "classcore__lib_1_1threads_1_1_join_threads_p.html#a0cf09ce4eddc0d05e0fe1348039a6c47", null ], 10 | [ "m_threads", "classcore__lib_1_1threads_1_1_join_threads_p.html#a8992219da142701b03ee78757bb8ac19", null ] 11 | ]; -------------------------------------------------------------------------------- /docs/html/classcore__lib_1_1threads_1_1_message_queue_thread.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dac1976/CoreLibrary/588bf7289256d8edfc6c311ebdebc5574653a863/docs/html/classcore__lib_1_1threads_1_1_message_queue_thread.png -------------------------------------------------------------------------------- /docs/html/classcore__lib_1_1threads_1_1_thread_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dac1976/CoreLibrary/588bf7289256d8edfc6c311ebdebc5574653a863/docs/html/classcore__lib_1_1threads_1_1_thread_base.png -------------------------------------------------------------------------------- /docs/html/classcore__lib_1_1threads_1_1_thread_runner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dac1976/CoreLibrary/588bf7289256d8edfc6c311ebdebc5574653a863/docs/html/classcore__lib_1_1threads_1_1_thread_runner.png -------------------------------------------------------------------------------- /docs/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dac1976/CoreLibrary/588bf7289256d8edfc6c311ebdebc5574653a863/docs/html/closed.png -------------------------------------------------------------------------------- /docs/html/dir_0dc7331be2fb93cd6bb4017c504c019a.js: -------------------------------------------------------------------------------- 1 | var dir_0dc7331be2fb93cd6bb4017c504c019a = 2 | [ 3 | [ "FileUtils.cpp", "_file_utils_8cpp.html", "_file_utils_8cpp" ] 4 | ]; -------------------------------------------------------------------------------- /docs/html/dir_175fde1093034a3276b493a112c34406.js: -------------------------------------------------------------------------------- 1 | var dir_175fde1093034a3276b493a112c34406 = 2 | [ 3 | [ "SerializationIncludes.h", "_serialization_includes_8h.html", null ], 4 | [ "SerializeToVector.h", "_serialize_to_vector_8h.html", "_serialize_to_vector_8h" ] 5 | ]; -------------------------------------------------------------------------------- /docs/html/dir_1a8b840c8cfd8f11d8b390f9f90a8485.js: -------------------------------------------------------------------------------- 1 | var dir_1a8b840c8cfd8f11d8b390f9f90a8485 = 2 | [ 3 | [ "CsvGrid.h", "_csv_grid_8h.html", "_csv_grid_8h" ], 4 | [ "CsvGridCell.h", "_csv_grid_cell_8h.html", [ 5 | [ "Cell", "classcore__lib_1_1csv__grid_1_1_cell.html", "classcore__lib_1_1csv__grid_1_1_cell" ] 6 | ] ], 7 | [ "CsvGridCellDouble.h", "_csv_grid_cell_double_8h.html", [ 8 | [ "CellDouble", "classcore__lib_1_1csv__grid_1_1_cell_double.html", "classcore__lib_1_1csv__grid_1_1_cell_double" ] 9 | ] ], 10 | [ "CsvGridMain.h", "_csv_grid_main_8h.html", "_csv_grid_main_8h" ], 11 | [ "CsvGridRow.h", "_csv_grid_row_8h.html", "_csv_grid_row_8h" ] 12 | ]; -------------------------------------------------------------------------------- /docs/html/dir_39f070db9466871944b534c763006460.js: -------------------------------------------------------------------------------- 1 | var dir_39f070db9466871944b534c763006460 = 2 | [ 3 | [ "IniFile.cpp", "_ini_file_8cpp.html", null ], 4 | [ "IniFileLines.cpp", "_ini_file_lines_8cpp.html", null ], 5 | [ "IniFileSectionDetails.cpp", "_ini_file_section_details_8cpp.html", null ] 6 | ]; -------------------------------------------------------------------------------- /docs/html/dir_3cf23a6ae074779ba5e64a25ab19a196.js: -------------------------------------------------------------------------------- 1 | var dir_3cf23a6ae074779ba5e64a25ab19a196 = 2 | [ 3 | [ "StringUtils.cpp", "_string_utils_8cpp.html", "_string_utils_8cpp" ] 4 | ]; -------------------------------------------------------------------------------- /docs/html/dir_3ec16627243fa1ff372be279a1017f0d.js: -------------------------------------------------------------------------------- 1 | var dir_3ec16627243fa1ff372be279a1017f0d = 2 | [ 3 | [ "GenericSorting.h", "_generic_sorting_8h.html", [ 4 | [ "Bubble", "classcore__lib_1_1sorting_1_1_bubble.html", "classcore__lib_1_1sorting_1_1_bubble" ], 5 | [ "Selection", "classcore__lib_1_1sorting_1_1_selection.html", "classcore__lib_1_1sorting_1_1_selection" ], 6 | [ "Insertion", "classcore__lib_1_1sorting_1_1_insertion.html", "classcore__lib_1_1sorting_1_1_insertion" ], 7 | [ "Quick", "classcore__lib_1_1sorting_1_1_quick.html", "classcore__lib_1_1sorting_1_1_quick" ], 8 | [ "Bucket", "classcore__lib_1_1sorting_1_1_bucket.html", "classcore__lib_1_1sorting_1_1_bucket" ] 9 | ] ] 10 | ]; -------------------------------------------------------------------------------- /docs/html/dir_5b9acf90d48ec4b1765d1bc4d04cd6ee.js: -------------------------------------------------------------------------------- 1 | var dir_5b9acf90d48ec4b1765d1bc4d04cd6ee = 2 | [ 3 | [ "PlatformDefines.h", "_platform_defines_8h.html", "_platform_defines_8h" ] 4 | ]; -------------------------------------------------------------------------------- /docs/html/dir_5c3bb04f5a2a30452a8e349ffde726fa.js: -------------------------------------------------------------------------------- 1 | var dir_5c3bb04f5a2a30452a8e349ffde726fa = 2 | [ 3 | [ "EventThread.cpp", "_event_thread_8cpp.html", null ], 4 | [ "SyncEvent.cpp", "_sync_event_8cpp.html", null ], 5 | [ "ThreadBase.cpp", "_thread_base_8cpp.html", null ], 6 | [ "ThreadGroup.cpp", "_thread_group_8cpp.html", null ], 7 | [ "ThreadRunner.cpp", "_thread_runner_8cpp.html", null ] 8 | ]; -------------------------------------------------------------------------------- /docs/html/dir_6be7c79321edd18fa835780bd31d4092.js: -------------------------------------------------------------------------------- 1 | var dir_6be7c79321edd18fa835780bd31d4092 = 2 | [ 3 | [ "DetailedException.h", "_detailed_exception_8h.html", [ 4 | [ "DetailedException", "classcore__lib_1_1exceptions_1_1_detailed_exception.html", "classcore__lib_1_1exceptions_1_1_detailed_exception" ] 5 | ] ] 6 | ]; -------------------------------------------------------------------------------- /docs/html/dir_7198da9437b6881c7be7f0b1db0fab6f.js: -------------------------------------------------------------------------------- 1 | var dir_7198da9437b6881c7be7f0b1db0fab6f = 2 | [ 3 | [ "StringUtils.h", "_string_utils_8h.html", "_string_utils_8h" ] 4 | ]; -------------------------------------------------------------------------------- /docs/html/dir_74389ed8173ad57b461b9d623a1f3867.js: -------------------------------------------------------------------------------- 1 | var dir_74389ed8173ad57b461b9d623a1f3867 = 2 | [ 3 | [ "Asio", "dir_f2ba29fa553ec4c13ad34d028846c42d.html", "dir_f2ba29fa553ec4c13ad34d028846c42d" ], 4 | [ "CsvGrid", "dir_8e745e4d4d0fe8ec4900251067386921.html", "dir_8e745e4d4d0fe8ec4900251067386921" ], 5 | [ "DebugLog", "dir_b61cbc7fed6afc1384d5b46e15359d7d.html", "dir_b61cbc7fed6afc1384d5b46e15359d7d" ], 6 | [ "FileUtils", "dir_0dc7331be2fb93cd6bb4017c504c019a.html", "dir_0dc7331be2fb93cd6bb4017c504c019a" ], 7 | [ "IniFile", "dir_39f070db9466871944b534c763006460.html", "dir_39f070db9466871944b534c763006460" ], 8 | [ "StringUtils", "dir_3cf23a6ae074779ba5e64a25ab19a196.html", "dir_3cf23a6ae074779ba5e64a25ab19a196" ], 9 | [ "Threads", "dir_5c3bb04f5a2a30452a8e349ffde726fa.html", "dir_5c3bb04f5a2a30452a8e349ffde726fa" ] 10 | ]; -------------------------------------------------------------------------------- /docs/html/dir_8155197bf2e91b1a79d6f902c118c4fd.js: -------------------------------------------------------------------------------- 1 | var dir_8155197bf2e91b1a79d6f902c118c4fd = 2 | [ 3 | [ "IniFile.h", "_ini_file_8h.html", [ 4 | [ "IniFile", "classcore__lib_1_1ini__file_1_1_ini_file.html", "classcore__lib_1_1ini__file_1_1_ini_file" ] 5 | ] ], 6 | [ "IniFileLines.h", "_ini_file_lines_8h.html", "_ini_file_lines_8h" ], 7 | [ "IniFileSectionDetails.h", "_ini_file_section_details_8h.html", [ 8 | [ "SectionDetails", "classcore__lib_1_1ini__file_1_1if__private_1_1_section_details.html", "classcore__lib_1_1ini__file_1_1if__private_1_1_section_details" ] 9 | ] ] 10 | ]; -------------------------------------------------------------------------------- /docs/html/dir_85f9b9f13a6285c2f81df511998160f5.js: -------------------------------------------------------------------------------- 1 | var dir_85f9b9f13a6285c2f81df511998160f5 = 2 | [ 3 | [ "FileUtils.h", "_file_utils_8h.html", "_file_utils_8h" ] 4 | ]; -------------------------------------------------------------------------------- /docs/html/dir_8e745e4d4d0fe8ec4900251067386921.js: -------------------------------------------------------------------------------- 1 | var dir_8e745e4d4d0fe8ec4900251067386921 = 2 | [ 3 | [ "CsvGridCell.cpp", "_csv_grid_cell_8cpp.html", null ], 4 | [ "CsvGridCellDouble.cpp", "_csv_grid_cell_double_8cpp.html", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/html/dir_a5789a75eb43e5152704aea29b318b64.js: -------------------------------------------------------------------------------- 1 | var dir_a5789a75eb43e5152704aea29b318b64 = 2 | [ 3 | [ "DebugLog.h", "_debug_log_8h.html", "_debug_log_8h" ], 4 | [ "DebugLogging.h", "_debug_logging_8h.html", "_debug_logging_8h" ], 5 | [ "DebugLogSingleton.h", "_debug_log_singleton_8h.html", "_debug_log_singleton_8h" ] 6 | ]; -------------------------------------------------------------------------------- /docs/html/dir_b61cbc7fed6afc1384d5b46e15359d7d.js: -------------------------------------------------------------------------------- 1 | var dir_b61cbc7fed6afc1384d5b46e15359d7d = 2 | [ 3 | [ "DebugLog.cpp", "_debug_log_8cpp.html", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/html/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dac1976/CoreLibrary/588bf7289256d8edfc6c311ebdebc5574653a863/docs/html/doc.png -------------------------------------------------------------------------------- /docs/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dac1976/CoreLibrary/588bf7289256d8edfc6c311ebdebc5574653a863/docs/html/doxygen.png -------------------------------------------------------------------------------- /docs/html/files.js: -------------------------------------------------------------------------------- 1 | var files = 2 | [ 3 | [ "Include", "dir_856524284ebe840938865dc061f982fb.html", "dir_856524284ebe840938865dc061f982fb" ], 4 | [ "Source", "dir_74389ed8173ad57b461b9d623a1f3867.html", "dir_74389ed8173ad57b461b9d623a1f3867" ] 5 | ]; -------------------------------------------------------------------------------- /docs/html/files_dup.js: -------------------------------------------------------------------------------- 1 | var files_dup = 2 | [ 3 | [ "Include", "dir_856524284ebe840938865dc061f982fb.html", "dir_856524284ebe840938865dc061f982fb" ], 4 | [ "Source", "dir_74389ed8173ad57b461b9d623a1f3867.html", "dir_74389ed8173ad57b461b9d623a1f3867" ] 5 | ]; -------------------------------------------------------------------------------- /docs/html/folderclosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dac1976/CoreLibrary/588bf7289256d8edfc6c311ebdebc5574653a863/docs/html/folderclosed.png -------------------------------------------------------------------------------- /docs/html/folderopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dac1976/CoreLibrary/588bf7289256d8edfc6c311ebdebc5574653a863/docs/html/folderopen.png -------------------------------------------------------------------------------- /docs/html/functions_dup.js: -------------------------------------------------------------------------------- 1 | var functions_dup = 2 | [ 3 | [ "a", "functions.html", null ], 4 | [ "b", "functions_b.html", null ], 5 | [ "c", "functions_c.html", null ], 6 | [ "d", "functions_d.html", null ], 7 | [ "e", "functions_e.html", null ], 8 | [ "f", "functions_f.html", null ], 9 | [ "g", "functions_g.html", null ], 10 | [ "h", "functions_h.html", null ], 11 | [ "i", "functions_i.html", null ], 12 | [ "j", "functions_j.html", null ], 13 | [ "k", "functions_k.html", null ], 14 | [ "l", "functions_l.html", null ], 15 | [ "m", "functions_m.html", null ], 16 | [ "n", "functions_n.html", null ], 17 | [ "o", "functions_o.html", null ], 18 | [ "p", "functions_p.html", null ], 19 | [ "r", "functions_r.html", null ], 20 | [ "s", "functions_s.html", null ], 21 | [ "t", "functions_t.html", null ], 22 | [ "u", "functions_u.html", null ], 23 | [ "v", "functions_v.html", null ], 24 | [ "w", "functions_w.html", null ], 25 | [ "~", "functions_0x7e.html", null ] 26 | ]; -------------------------------------------------------------------------------- /docs/html/functions_func.js: -------------------------------------------------------------------------------- 1 | var functions_func = 2 | [ 3 | [ "a", "functions_func.html", null ], 4 | [ "b", "functions_func_b.html", null ], 5 | [ "c", "functions_func_c.html", null ], 6 | [ "d", "functions_func_d.html", null ], 7 | [ "e", "functions_func_e.html", null ], 8 | [ "f", "functions_func_f.html", null ], 9 | [ "g", "functions_func_g.html", null ], 10 | [ "i", "functions_func_i.html", null ], 11 | [ "j", "functions_func_j.html", null ], 12 | [ "k", "functions_func_k.html", null ], 13 | [ "l", "functions_func_l.html", null ], 14 | [ "m", "functions_func_m.html", null ], 15 | [ "n", "functions_func_n.html", null ], 16 | [ "o", "functions_func_o.html", null ], 17 | [ "p", "functions_func_p.html", null ], 18 | [ "r", "functions_func_r.html", null ], 19 | [ "s", "functions_func_s.html", null ], 20 | [ "t", "functions_func_t.html", null ], 21 | [ "u", "functions_func_u.html", null ], 22 | [ "v", "functions_func_v.html", null ], 23 | [ "w", "functions_func_w.html", null ], 24 | [ "~", "functions_func_0x7e.html", null ] 25 | ]; -------------------------------------------------------------------------------- /docs/html/namespacecore__lib.js: -------------------------------------------------------------------------------- 1 | var namespacecore__lib = 2 | [ 3 | [ "asio", "namespacecore__lib_1_1asio.html", "namespacecore__lib_1_1asio" ], 4 | [ "csv_grid", "namespacecore__lib_1_1csv__grid.html", "namespacecore__lib_1_1csv__grid" ], 5 | [ "exceptions", "namespacecore__lib_1_1exceptions.html", "namespacecore__lib_1_1exceptions" ], 6 | [ "ini_file", "namespacecore__lib_1_1ini__file.html", "namespacecore__lib_1_1ini__file" ], 7 | [ "log", "namespacecore__lib_1_1log.html", "namespacecore__lib_1_1log" ], 8 | [ "serialize", "namespacecore__lib_1_1serialize.html", "namespacecore__lib_1_1serialize" ], 9 | [ "sorting", "namespacecore__lib_1_1sorting.html", "namespacecore__lib_1_1sorting" ], 10 | [ "string_utils", "namespacecore__lib_1_1string__utils.html", "namespacecore__lib_1_1string__utils" ], 11 | [ "threads", "namespacecore__lib_1_1threads.html", "namespacecore__lib_1_1threads" ] 12 | ]; -------------------------------------------------------------------------------- /docs/html/namespacecore__lib_1_1asio.js: -------------------------------------------------------------------------------- 1 | var namespacecore__lib_1_1asio = 2 | [ 3 | [ "defs", "namespacecore__lib_1_1asio_1_1defs.html", "namespacecore__lib_1_1asio_1_1defs" ], 4 | [ "messages", "namespacecore__lib_1_1asio_1_1messages.html", "namespacecore__lib_1_1asio_1_1messages" ], 5 | [ "tcp", "namespacecore__lib_1_1asio_1_1tcp.html", "namespacecore__lib_1_1asio_1_1tcp" ], 6 | [ "udp", "namespacecore__lib_1_1asio_1_1udp.html", "namespacecore__lib_1_1asio_1_1udp" ], 7 | [ "IoContextThreadGroup", "classcore__lib_1_1asio_1_1_io_context_thread_group.html", "classcore__lib_1_1asio_1_1_io_context_thread_group" ] 8 | ]; -------------------------------------------------------------------------------- /docs/html/namespacecore__lib_1_1asio_1_1defs.js: -------------------------------------------------------------------------------- 1 | var namespacecore__lib_1_1asio_1_1defs = 2 | [ 3 | [ "MessageHeader", "structcore__lib_1_1asio_1_1defs_1_1_message_header.html", "structcore__lib_1_1asio_1_1defs_1_1_message_header" ], 4 | [ "ReceivedMessage", "structcore__lib_1_1asio_1_1defs_1_1_received_message.html", "structcore__lib_1_1asio_1_1defs_1_1_received_message" ] 5 | ]; -------------------------------------------------------------------------------- /docs/html/namespacecore__lib_1_1csv__grid.js: -------------------------------------------------------------------------------- 1 | var namespacecore__lib_1_1csv__grid = 2 | [ 3 | [ "reserver", "namespacecore__lib_1_1csv__grid_1_1reserver.html", "namespacecore__lib_1_1csv__grid_1_1reserver" ], 4 | [ "Cell", "classcore__lib_1_1csv__grid_1_1_cell.html", "classcore__lib_1_1csv__grid_1_1_cell" ], 5 | [ "CellDouble", "classcore__lib_1_1csv__grid_1_1_cell_double.html", "classcore__lib_1_1csv__grid_1_1_cell_double" ], 6 | [ "TCsvGrid", "classcore__lib_1_1csv__grid_1_1_t_csv_grid.html", "classcore__lib_1_1csv__grid_1_1_t_csv_grid" ], 7 | [ "TRow", "classcore__lib_1_1csv__grid_1_1_t_row.html", "classcore__lib_1_1csv__grid_1_1_t_row" ] 8 | ]; -------------------------------------------------------------------------------- /docs/html/namespacecore__lib_1_1csv__grid_1_1reserver.js: -------------------------------------------------------------------------------- 1 | var namespacecore__lib_1_1csv__grid_1_1reserver = 2 | [ 3 | [ "ContainerReserver", "classcore__lib_1_1csv__grid_1_1reserver_1_1_container_reserver.html", "classcore__lib_1_1csv__grid_1_1reserver_1_1_container_reserver" ], 4 | [ "ContainerReserver< std::vector, T >", "classcore__lib_1_1csv__grid_1_1reserver_1_1_container_reserver_3_01std_1_1vector_00_01_t_01_4.html", "classcore__lib_1_1csv__grid_1_1reserver_1_1_container_reserver_3_01std_1_1vector_00_01_t_01_4" ] 5 | ]; -------------------------------------------------------------------------------- /docs/html/namespacecore__lib_1_1exceptions.js: -------------------------------------------------------------------------------- 1 | var namespacecore__lib_1_1exceptions = 2 | [ 3 | [ "DetailedException", "classcore__lib_1_1exceptions_1_1_detailed_exception.html", "classcore__lib_1_1exceptions_1_1_detailed_exception" ] 4 | ]; -------------------------------------------------------------------------------- /docs/html/namespacecore__lib_1_1ini__file.js: -------------------------------------------------------------------------------- 1 | var namespacecore__lib_1_1ini__file = 2 | [ 3 | [ "if_private", "namespacecore__lib_1_1ini__file_1_1if__private.html", "namespacecore__lib_1_1ini__file_1_1if__private" ], 4 | [ "IniFile", "classcore__lib_1_1ini__file_1_1_ini_file.html", "classcore__lib_1_1ini__file_1_1_ini_file" ] 5 | ]; -------------------------------------------------------------------------------- /docs/html/namespacecore__lib_1_1ini__file_1_1if__private.js: -------------------------------------------------------------------------------- 1 | var namespacecore__lib_1_1ini__file_1_1if__private = 2 | [ 3 | [ "BlankLine", "classcore__lib_1_1ini__file_1_1if__private_1_1_blank_line.html", "classcore__lib_1_1ini__file_1_1if__private_1_1_blank_line" ], 4 | [ "CommentLine", "classcore__lib_1_1ini__file_1_1if__private_1_1_comment_line.html", "classcore__lib_1_1ini__file_1_1if__private_1_1_comment_line" ], 5 | [ "KeyLine", "classcore__lib_1_1ini__file_1_1if__private_1_1_key_line.html", "classcore__lib_1_1ini__file_1_1if__private_1_1_key_line" ], 6 | [ "Line", "classcore__lib_1_1ini__file_1_1if__private_1_1_line.html", "classcore__lib_1_1ini__file_1_1if__private_1_1_line" ], 7 | [ "SectionDetails", "classcore__lib_1_1ini__file_1_1if__private_1_1_section_details.html", "classcore__lib_1_1ini__file_1_1if__private_1_1_section_details" ], 8 | [ "SectionLine", "classcore__lib_1_1ini__file_1_1if__private_1_1_section_line.html", "classcore__lib_1_1ini__file_1_1if__private_1_1_section_line" ] 9 | ]; -------------------------------------------------------------------------------- /docs/html/namespacecore__lib_1_1log.js: -------------------------------------------------------------------------------- 1 | var namespacecore__lib_1_1log = 2 | [ 3 | [ "dl_private", null, [ 4 | [ "LogQueueMessage", "classcore__lib_1_1log_1_1dl__private_1_1_log_queue_message.html", "classcore__lib_1_1log_1_1dl__private_1_1_log_queue_message" ] 5 | ] ], 6 | [ "DebugLog", "classcore__lib_1_1log_1_1_debug_log.html", "classcore__lib_1_1log_1_1_debug_log" ], 7 | [ "DefaultLogFormat", "structcore__lib_1_1log_1_1_default_log_format.html", "structcore__lib_1_1log_1_1_default_log_format" ] 8 | ]; -------------------------------------------------------------------------------- /docs/html/namespacecore__lib_1_1serialize.js: -------------------------------------------------------------------------------- 1 | var namespacecore__lib_1_1serialize = 2 | [ 3 | [ "impl", "namespacecore__lib_1_1serialize_1_1impl.html", "namespacecore__lib_1_1serialize_1_1impl" ], 4 | [ "protobuf_iarchive", "structcore__lib_1_1serialize_1_1protobuf__iarchive.html", null ], 5 | [ "protobuf_oarchive", "structcore__lib_1_1serialize_1_1protobuf__oarchive.html", null ], 6 | [ "raw_iarchive", "structcore__lib_1_1serialize_1_1raw__iarchive.html", null ], 7 | [ "raw_oarchive", "structcore__lib_1_1serialize_1_1raw__oarchive.html", null ] 8 | ]; -------------------------------------------------------------------------------- /docs/html/namespacecore__lib_1_1sorting.js: -------------------------------------------------------------------------------- 1 | var namespacecore__lib_1_1sorting = 2 | [ 3 | [ "Bubble", "classcore__lib_1_1sorting_1_1_bubble.html", "classcore__lib_1_1sorting_1_1_bubble" ], 4 | [ "Bucket", "classcore__lib_1_1sorting_1_1_bucket.html", "classcore__lib_1_1sorting_1_1_bucket" ], 5 | [ "Insertion", "classcore__lib_1_1sorting_1_1_insertion.html", "classcore__lib_1_1sorting_1_1_insertion" ], 6 | [ "Quick", "classcore__lib_1_1sorting_1_1_quick.html", "classcore__lib_1_1sorting_1_1_quick" ], 7 | [ "Selection", "classcore__lib_1_1sorting_1_1_selection.html", "classcore__lib_1_1sorting_1_1_selection" ] 8 | ]; -------------------------------------------------------------------------------- /docs/html/namespacecore__lib_1_1string__utils.js: -------------------------------------------------------------------------------- 1 | var namespacecore__lib_1_1string__utils = 2 | [ 3 | [ "deletable_facet", "structcore__lib_1_1string__utils_1_1deletable__facet.html", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/html/namespaces.js: -------------------------------------------------------------------------------- 1 | var namespaces = 2 | [ 3 | [ "core_lib", "namespacecore__lib.html", "namespacecore__lib" ], 4 | [ "std", "namespacestd.html", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/html/namespaces_dup.js: -------------------------------------------------------------------------------- 1 | var namespaces_dup = 2 | [ 3 | [ "core_lib", "namespacecore__lib.html", "namespacecore__lib" ], 4 | [ "std", "namespacestd.html", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/html/namespacestd.js: -------------------------------------------------------------------------------- 1 | var namespacestd = 2 | [ 3 | [ "hash< core_lib::log::eLogMessageLevel >", "structstd_1_1hash_3_01core__lib_1_1log_1_1e_log_message_level_01_4.html", "structstd_1_1hash_3_01core__lib_1_1log_1_1e_log_message_level_01_4" ] 4 | ]; -------------------------------------------------------------------------------- /docs/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dac1976/CoreLibrary/588bf7289256d8edfc6c311ebdebc5574653a863/docs/html/nav_f.png -------------------------------------------------------------------------------- /docs/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dac1976/CoreLibrary/588bf7289256d8edfc6c311ebdebc5574653a863/docs/html/nav_g.png -------------------------------------------------------------------------------- /docs/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dac1976/CoreLibrary/588bf7289256d8edfc6c311ebdebc5574653a863/docs/html/nav_h.png -------------------------------------------------------------------------------- /docs/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dac1976/CoreLibrary/588bf7289256d8edfc6c311ebdebc5574653a863/docs/html/open.png -------------------------------------------------------------------------------- /docs/html/search/all_0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/all_1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/all_10.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/all_10.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['quick',['Quick',['../classcore__lib_1_1sorting_1_1_quick.html',1,'core_lib::sorting']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/html/search/all_11.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/all_12.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/all_13.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/all_14.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/all_15.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/all_15.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['value',['Value',['../classcore__lib_1_1csv__grid_1_1_cell.html#a8989ab4b8fc650bde89d52eb6f1b8344',1,'core_lib::csv_grid::Cell::Value()'],['../classcore__lib_1_1csv__grid_1_1_cell_double.html#a3e9a073d8b9579b5842d6c1ed0a54aeb',1,'core_lib::csv_grid::CellDouble::Value()'],['../classcore__lib_1_1ini__file_1_1if__private_1_1_key_line.html#ab1197c73d5bb33f8a1ed42a88eeb2123',1,'core_lib::ini_file::if_private::KeyLine::Value() const'],['../classcore__lib_1_1ini__file_1_1if__private_1_1_key_line.html#ad514fcaca87540355ef3ab3500fc85bf',1,'core_lib::ini_file::if_private::KeyLine::Value(const std::string &value)'],['../classcore__lib_1_1ini__file_1_1if__private_1_1_key_line.html#a0cbf299055058bc4be3c2c31febccc10',1,'core_lib::ini_file::if_private::KeyLine::Value(std::string &&value)']]], 4 | ['value_5ftype',['value_type',['../classcore__lib_1_1threads_1_1_bounded_buffer.html#a435ef25a21267dc78844c170a78cbde4',1,'core_lib::threads::BoundedBuffer']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/html/search/all_16.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/all_17.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/all_17.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['xml',['xml',['../namespacecore__lib_1_1asio_1_1defs.html#aba754c4a2ad0693ec77dfdd50e767313a0f635d0e0f3874fff8b581c132e6c7a7',1,'core_lib::asio::defs']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/html/search/all_18.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/all_2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/all_3.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/all_4.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/all_5.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/all_6.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/all_7.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/all_7.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['hash_3c_20core_5flib_3a_3alog_3a_3aelogmessagelevel_20_3e',['hash< core_lib::log::eLogMessageLevel >',['../structstd_1_1hash_3_01core__lib_1_1log_1_1e_log_message_level_01_4.html',1,'std']]], 4 | ['header',['header',['../structcore__lib_1_1asio_1_1defs_1_1_received_message.html#a414706025d7d687b0cf4c6e63b369f78',1,'core_lib::asio::defs::ReceivedMessage']]], 5 | ['header_5ft',['header_t',['../structcore__lib_1_1asio_1_1defs_1_1_received_message.html#a173bfb47e0d2514900c2452141f40fb2',1,'core_lib::asio::defs::ReceivedMessage']]] 6 | ]; 7 | -------------------------------------------------------------------------------- /docs/html/search/all_8.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/all_9.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/all_a.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/all_b.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/all_c.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/all_d.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/all_e.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/all_f.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/classes_0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/classes_1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/classes_1.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['blankline',['BlankLine',['../classcore__lib_1_1ini__file_1_1if__private_1_1_blank_line.html',1,'core_lib::ini_file::if_private']]], 4 | ['boundedbuffer',['BoundedBuffer',['../classcore__lib_1_1threads_1_1_bounded_buffer.html',1,'core_lib::threads']]], 5 | ['bubble',['Bubble',['../classcore__lib_1_1sorting_1_1_bubble.html',1,'core_lib::sorting']]], 6 | ['bucket',['Bucket',['../classcore__lib_1_1sorting_1_1_bucket.html',1,'core_lib::sorting']]] 7 | ]; 8 | -------------------------------------------------------------------------------- /docs/html/search/classes_10.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/classes_10.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['udpreceiver',['UdpReceiver',['../classcore__lib_1_1asio_1_1udp_1_1_udp_receiver.html',1,'core_lib::asio::udp']]], 4 | ['udpsender',['UdpSender',['../classcore__lib_1_1asio_1_1udp_1_1_udp_sender.html',1,'core_lib::asio::udp']]], 5 | ['udptypedsender',['UdpTypedSender',['../classcore__lib_1_1asio_1_1udp_1_1_udp_typed_sender.html',1,'core_lib::asio::udp']]], 6 | ['udptypedsender_3c_20core_5flib_3a_3aasio_3a_3amessages_3a_3amessagebuilder_20_3e',['UdpTypedSender< core_lib::asio::messages::MessageBuilder >',['../classcore__lib_1_1asio_1_1udp_1_1_udp_typed_sender.html',1,'core_lib::asio::udp']]] 7 | ]; 8 | -------------------------------------------------------------------------------- /docs/html/search/classes_2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/classes_2.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['cell',['Cell',['../classcore__lib_1_1csv__grid_1_1_cell.html',1,'core_lib::csv_grid']]], 4 | ['celldouble',['CellDouble',['../classcore__lib_1_1csv__grid_1_1_cell_double.html',1,'core_lib::csv_grid']]], 5 | ['commentline',['CommentLine',['../classcore__lib_1_1ini__file_1_1if__private_1_1_comment_line.html',1,'core_lib::ini_file::if_private']]], 6 | ['concurrentqueue',['ConcurrentQueue',['../classcore__lib_1_1threads_1_1_concurrent_queue.html',1,'core_lib::threads']]], 7 | ['concurrentqueue_3c_20messagetype_20_3e',['ConcurrentQueue< MessageType >',['../classcore__lib_1_1threads_1_1_concurrent_queue.html',1,'core_lib::threads']]], 8 | ['containerreserver',['ContainerReserver',['../classcore__lib_1_1csv__grid_1_1reserver_1_1_container_reserver.html',1,'core_lib::csv_grid::reserver']]], 9 | ['containerreserver_3c_20std_3a_3avector_2c_20t_20_3e',['ContainerReserver< std::vector, T >',['../classcore__lib_1_1csv__grid_1_1reserver_1_1_container_reserver_3_01std_1_1vector_00_01_t_01_4.html',1,'core_lib::csv_grid::reserver']]] 10 | ]; 11 | -------------------------------------------------------------------------------- /docs/html/search/classes_3.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/classes_3.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['debuglog',['DebugLog',['../classcore__lib_1_1log_1_1_debug_log.html',1,'core_lib::log']]], 4 | ['defaultlogformat',['DefaultLogFormat',['../structcore__lib_1_1log_1_1_default_log_format.html',1,'core_lib::log']]], 5 | ['deletable_5ffacet',['deletable_facet',['../structcore__lib_1_1string__utils_1_1deletable__facet.html',1,'core_lib::string_utils']]], 6 | ['detailedexception',['DetailedException',['../classcore__lib_1_1exceptions_1_1_detailed_exception.html',1,'core_lib::exceptions']]] 7 | ]; 8 | -------------------------------------------------------------------------------- /docs/html/search/classes_4.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/classes_4.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['eventthread',['EventThread',['../classcore__lib_1_1threads_1_1_event_thread.html',1,'core_lib::threads']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/html/search/classes_5.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/classes_5.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['hash_3c_20core_5flib_3a_3alog_3a_3aelogmessagelevel_20_3e',['hash< core_lib::log::eLogMessageLevel >',['../structstd_1_1hash_3_01core__lib_1_1log_1_1e_log_message_level_01_4.html',1,'std']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/html/search/classes_6.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/classes_6.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['inifile',['IniFile',['../classcore__lib_1_1ini__file_1_1_ini_file.html',1,'core_lib::ini_file']]], 4 | ['insertion',['Insertion',['../classcore__lib_1_1sorting_1_1_insertion.html',1,'core_lib::sorting']]], 5 | ['iocontextthreadgroup',['IoContextThreadGroup',['../classcore__lib_1_1asio_1_1_io_context_thread_group.html',1,'core_lib::asio']]] 6 | ]; 7 | -------------------------------------------------------------------------------- /docs/html/search/classes_7.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/classes_7.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['jointhreads',['JoinThreads',['../classcore__lib_1_1threads_1_1_join_threads.html',1,'core_lib::threads']]], 4 | ['jointhreadsp',['JoinThreadsP',['../classcore__lib_1_1threads_1_1_join_threads_p.html',1,'core_lib::threads']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/html/search/classes_8.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/classes_8.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['keyline',['KeyLine',['../classcore__lib_1_1ini__file_1_1if__private_1_1_key_line.html',1,'core_lib::ini_file::if_private']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/html/search/classes_9.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/classes_9.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['line',['Line',['../classcore__lib_1_1ini__file_1_1if__private_1_1_line.html',1,'core_lib::ini_file::if_private']]], 4 | ['logqueuemessage',['LogQueueMessage',['../classcore__lib_1_1log_1_1dl__private_1_1_log_queue_message.html',1,'core_lib::log::dl_private']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/html/search/classes_a.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/classes_b.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/classes_b.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['protobuf_5fiarchive',['protobuf_iarchive',['../structcore__lib_1_1serialize_1_1protobuf__iarchive.html',1,'core_lib::serialize']]], 4 | ['protobuf_5foarchive',['protobuf_oarchive',['../structcore__lib_1_1serialize_1_1protobuf__oarchive.html',1,'core_lib::serialize']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/html/search/classes_c.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/classes_c.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['quick',['Quick',['../classcore__lib_1_1sorting_1_1_quick.html',1,'core_lib::sorting']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/html/search/classes_d.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/classes_d.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['raw_5fiarchive',['raw_iarchive',['../structcore__lib_1_1serialize_1_1raw__iarchive.html',1,'core_lib::serialize']]], 4 | ['raw_5foarchive',['raw_oarchive',['../structcore__lib_1_1serialize_1_1raw__oarchive.html',1,'core_lib::serialize']]], 5 | ['receivedmessage',['ReceivedMessage',['../structcore__lib_1_1asio_1_1defs_1_1_received_message.html',1,'core_lib::asio::defs']]] 6 | ]; 7 | -------------------------------------------------------------------------------- /docs/html/search/classes_e.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/classes_f.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dac1976/CoreLibrary/588bf7289256d8edfc6c311ebdebc5574653a863/docs/html/search/close.png -------------------------------------------------------------------------------- /docs/html/search/defines_0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/defines_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['constexpr_5f',['CONSTEXPR_',['../_platform_defines_8h.html#acd65826b4da6022756b00160a59e2c77',1,'PlatformDefines.h']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/html/search/defines_1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/defines_2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/defines_2.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['no_5fexcept_5f',['NO_EXCEPT_',['../_platform_defines_8h.html#add5a4c361bd0fe8f1ca88ea5e5d39fea',1,'PlatformDefines.h']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/html/search/defines_3.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/defines_3.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['static_5fconstexpr_5f',['STATIC_CONSTEXPR_',['../_platform_defines_8h.html#a05d8f96bb92db37f4f27ee4c15c48c24',1,'PlatformDefines.h']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/html/search/defines_4.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/defines_4.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['typename_5fdecl_5f',['TYPENAME_DECL_',['../_platform_defines_8h.html#aab8ce52d305ed9aac07efb498766b5fb',1,'PlatformDefines.h']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/html/search/enums_0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/enumvalues_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['append',['append',['../namespacecore__lib_1_1csv__grid.html#aa271aa5490710bb67ad11d1776143edaa9516dfb15f51c7ee19a4d46b8c0dbe1d',1,'core_lib::csv_grid']]], 4 | ['append_5ffile',['append_file',['../classcore__lib_1_1log_1_1_debug_log.html#a51affdd46da3c324ae68a39aeb6bd8b3a68d6f7dc0052547e64165d32b2d0126b',1,'core_lib::log::DebugLog']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/html/search/enumvalues_1.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['back',['back',['../classcore__lib_1_1threads_1_1_concurrent_queue.html#a2cdf8c31f8359021a9fdbf3a10d46c66a469bba0a564235dfceede42db14f17b0',1,'core_lib::threads::ConcurrentQueue']]], 4 | ['binary',['binary',['../namespacecore__lib_1_1asio_1_1defs.html#aba754c4a2ad0693ec77dfdd50e767313a9d7183f16acce70658f686ae7f1a4d20',1,'core_lib::asio::defs']]], 5 | ['broadcast',['broadcast',['../namespacecore__lib_1_1asio_1_1udp.html#a9a7c6b341a0c58d700d5dff54c9a5af7ab605ea609b9dfcf295cfd5a7803dcd37',1,'core_lib::asio::udp']]] 6 | ]; 7 | -------------------------------------------------------------------------------- /docs/html/search/enumvalues_2.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['continueiftargetexists',['continueIfTargetExists',['../namespacecore__lib_1_1file__utils.html#a7982ac6ae2073592b0dc577534c02cbaad7e3a78cc481a58b0e0cb3d83503823f',1,'core_lib::file_utils']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/html/search/enumvalues_3.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['debug',['debug',['../namespacecore__lib_1_1log.html#ad7ce2d6b07e2ed6ac17a19b27f8741bcaad42f6697b035b7580e4fef93be20b4d',1,'core_lib::log']]], 4 | ['doublequotedcells',['doubleQuotedCells',['../namespacecore__lib_1_1csv__grid.html#a0026f6a31705901d85aa70d58865720ea33bed151ad5c2d0ce74bf5c6bc8db225',1,'core_lib::csv_grid']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/html/search/enumvalues_4.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['error',['error',['../namespacecore__lib_1_1log.html#ad7ce2d6b07e2ed6ac17a19b27f8741bcacb5e100e5a9a3e7f6d1fd97512215282',1,'core_lib::log']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/html/search/enumvalues_5.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['failiftargetexists',['failIfTargetExists',['../namespacecore__lib_1_1file__utils.html#a7982ac6ae2073592b0dc577534c02cbaae4032037821487c3ac8287058718c5f3',1,'core_lib::file_utils']]], 4 | ['fatal',['fatal',['../namespacecore__lib_1_1log.html#ad7ce2d6b07e2ed6ac17a19b27f8741bcadf6402fd9ecc60f5a2159fdf45711cd4',1,'core_lib::log']]], 5 | ['fixed',['fixed',['../namespacecore__lib_1_1string__utils.html#a97dbeadd3d77b8db0a9c7545cdc25fb5acec315e3d0975e5cc2811d5d8725f149',1,'core_lib::string_utils']]], 6 | ['front',['front',['../classcore__lib_1_1threads_1_1_concurrent_queue.html#a2cdf8c31f8359021a9fdbf3a10d46c66ae6ec529ba185279aa0adcf93e645c7cd',1,'core_lib::threads::ConcurrentQueue']]] 7 | ]; 8 | -------------------------------------------------------------------------------- /docs/html/search/enumvalues_6.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['ignoreremainingitems',['ignoreRemainingItems',['../namespacecore__lib_1_1threads.html#a0fa4cd0059edae3a1590cd40d77ba706a709ce4d50d542e1a000fa119b9680d3e',1,'core_lib::threads']]], 4 | ['info',['info',['../namespacecore__lib_1_1log.html#ad7ce2d6b07e2ed6ac17a19b27f8741bcacaf9b6b99962bf5c2264824231d7a40c',1,'core_lib::log']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/html/search/enumvalues_7.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['json',['json',['../namespacecore__lib_1_1asio_1_1defs.html#aba754c4a2ad0693ec77dfdd50e767313a466deec76ecdf5fca6d38571f6324d54',1,'core_lib::asio::defs']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/html/search/enumvalues_8.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['nagleoff',['nagleOff',['../namespacecore__lib_1_1asio_1_1tcp.html#abde0c9ddb16aef41d4babcd4a3b33a49aefa03b8faae7086af167105af50c3b67',1,'core_lib::asio::tcp']]], 4 | ['nagleon',['nagleOn',['../namespacecore__lib_1_1asio_1_1tcp.html#abde0c9ddb16aef41d4babcd4a3b33a49a1cd8976fe8f55be26f4ffe456f101d0b',1,'core_lib::asio::tcp']]], 5 | ['normal',['normal',['../namespacecore__lib_1_1string__utils.html#a97dbeadd3d77b8db0a9c7545cdc25fb5afea087517c26fadd409bd4b9dc642555',1,'core_lib::string_utils']]], 6 | ['not_5fdefined',['not_defined',['../namespacecore__lib_1_1log.html#ad7ce2d6b07e2ed6ac17a19b27f8741bca308178bc9cbd979f6e2e056175b76aba',1,'core_lib::log']]], 7 | ['nottrimmed',['notTrimmed',['../namespacecore__lib_1_1string__utils.html#a0fb4c4b3499c1255a675da40148c833ba8285cc9358c22676b2dcb2f56b69cd28',1,'core_lib::string_utils']]] 8 | ]; 9 | -------------------------------------------------------------------------------- /docs/html/search/enumvalues_9.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['portablebinary',['portableBinary',['../namespacecore__lib_1_1asio_1_1defs.html#aba754c4a2ad0693ec77dfdd50e767313ae6372e7369f0a79dff977a56d7b2ce2f',1,'core_lib::asio::defs']]], 4 | ['processremainingitems',['processRemainingItems',['../namespacecore__lib_1_1threads.html#a0fa4cd0059edae3a1590cd40d77ba706a6384751382f97eb4a6fc8ee8bd31fc83',1,'core_lib::threads']]], 5 | ['protobuf',['protobuf',['../namespacecore__lib_1_1asio_1_1defs.html#aba754c4a2ad0693ec77dfdd50e767313a606eaf846c6579916354199b45953ee2',1,'core_lib::asio::defs']]] 6 | ]; 7 | -------------------------------------------------------------------------------- /docs/html/search/enumvalues_a.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['raw',['raw',['../namespacecore__lib_1_1asio_1_1defs.html#aba754c4a2ad0693ec77dfdd50e767313abdd166af3a63f7be696dd17a218a6ffb',1,'core_lib::asio::defs']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/html/search/enumvalues_c.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['trimmed',['trimmed',['../namespacecore__lib_1_1string__utils.html#a0fb4c4b3499c1255a675da40148c833ba853600aa75baac4ae4d3b794b574ecec',1,'core_lib::string_utils']]], 4 | ['truncate',['truncate',['../namespacecore__lib_1_1csv__grid.html#aa271aa5490710bb67ad11d1776143edaa244f58cf07c35fd48d7524b289551e5c',1,'core_lib::csv_grid']]], 5 | ['truncate_5ffile',['truncate_file',['../classcore__lib_1_1log_1_1_debug_log.html#a51affdd46da3c324ae68a39aeb6bd8b3a62c0624c153cd096a8ed03b95ff1c01c',1,'core_lib::log::DebugLog']]] 6 | ]; 7 | -------------------------------------------------------------------------------- /docs/html/search/enumvalues_d.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['unicast',['unicast',['../namespacecore__lib_1_1asio_1_1udp.html#a9a7c6b341a0c58d700d5dff54c9a5af7aeebe0851cda7f85aeef4229567441a2d',1,'core_lib::asio::udp']]], 4 | ['unrestricted',['unrestricted',['../namespacecore__lib_1_1asio_1_1udp.html#a5b9232b21696edda8f20507150e5c694a46d65a50d77f12b530d95db1e8b0e547',1,'core_lib::asio::udp']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/html/search/enumvalues_e.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['warning',['warning',['../namespacecore__lib_1_1log.html#ad7ce2d6b07e2ed6ac17a19b27f8741bca7b83d3f08fa392b79e3f553b585971cd',1,'core_lib::log']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/html/search/enumvalues_f.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['xml',['xml',['../namespacecore__lib_1_1asio_1_1defs.html#aba754c4a2ad0693ec77dfdd50e767313a0f635d0e0f3874fff8b581c132e6c7a7',1,'core_lib::asio::defs']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/html/search/files_0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/files_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['asiodefines_2ecpp',['AsioDefines.cpp',['../_asio_defines_8cpp.html',1,'']]], 4 | ['asiodefines_2eh',['AsioDefines.h',['../_asio_defines_8h.html',1,'']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/html/search/files_1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/files_1.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['boundedbuffer_2eh',['BoundedBuffer.h',['../_bounded_buffer_8h.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/html/search/files_2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/files_2.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['concurrentqueue_2eh',['ConcurrentQueue.h',['../_concurrent_queue_8h.html',1,'']]], 4 | ['corelibrarydllglobal_2eh',['CoreLibraryDllGlobal.h',['../_core_library_dll_global_8h.html',1,'']]], 5 | ['csvgrid_2eh',['CsvGrid.h',['../_csv_grid_8h.html',1,'']]], 6 | ['csvgridcell_2ecpp',['CsvGridCell.cpp',['../_csv_grid_cell_8cpp.html',1,'']]], 7 | ['csvgridcell_2eh',['CsvGridCell.h',['../_csv_grid_cell_8h.html',1,'']]], 8 | ['csvgridcelldouble_2ecpp',['CsvGridCellDouble.cpp',['../_csv_grid_cell_double_8cpp.html',1,'']]], 9 | ['csvgridcelldouble_2eh',['CsvGridCellDouble.h',['../_csv_grid_cell_double_8h.html',1,'']]], 10 | ['csvgridmain_2eh',['CsvGridMain.h',['../_csv_grid_main_8h.html',1,'']]], 11 | ['csvgridrow_2eh',['CsvGridRow.h',['../_csv_grid_row_8h.html',1,'']]] 12 | ]; 13 | -------------------------------------------------------------------------------- /docs/html/search/files_3.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/files_3.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['debuglog_2ecpp',['DebugLog.cpp',['../_debug_log_8cpp.html',1,'']]], 4 | ['debuglog_2eh',['DebugLog.h',['../_debug_log_8h.html',1,'']]], 5 | ['debuglogging_2eh',['DebugLogging.h',['../_debug_logging_8h.html',1,'']]], 6 | ['debuglogsingleton_2eh',['DebugLogSingleton.h',['../_debug_log_singleton_8h.html',1,'']]], 7 | ['detailedexception_2eh',['DetailedException.h',['../_detailed_exception_8h.html',1,'']]] 8 | ]; 9 | -------------------------------------------------------------------------------- /docs/html/search/files_4.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/files_4.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['eventthread_2ecpp',['EventThread.cpp',['../_event_thread_8cpp.html',1,'']]], 4 | ['eventthread_2eh',['EventThread.h',['../_event_thread_8h.html',1,'']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/html/search/files_5.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/files_5.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['fileutils_2ecpp',['FileUtils.cpp',['../_file_utils_8cpp.html',1,'']]], 4 | ['fileutils_2eh',['FileUtils.h',['../_file_utils_8h.html',1,'']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/html/search/files_6.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/files_6.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['genericsorting_2eh',['GenericSorting.h',['../_generic_sorting_8h.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/html/search/files_7.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/files_7.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['inifile_2ecpp',['IniFile.cpp',['../_ini_file_8cpp.html',1,'']]], 4 | ['inifile_2eh',['IniFile.h',['../_ini_file_8h.html',1,'']]], 5 | ['inifilelines_2ecpp',['IniFileLines.cpp',['../_ini_file_lines_8cpp.html',1,'']]], 6 | ['inifilelines_2eh',['IniFileLines.h',['../_ini_file_lines_8h.html',1,'']]], 7 | ['inifilesectiondetails_2ecpp',['IniFileSectionDetails.cpp',['../_ini_file_section_details_8cpp.html',1,'']]], 8 | ['inifilesectiondetails_2eh',['IniFileSectionDetails.h',['../_ini_file_section_details_8h.html',1,'']]], 9 | ['iocontextthreadgroup_2ecpp',['IoContextThreadGroup.cpp',['../_io_context_thread_group_8cpp.html',1,'']]], 10 | ['iocontextthreadgroup_2eh',['IoContextThreadGroup.h',['../_io_context_thread_group_8h.html',1,'']]] 11 | ]; 12 | -------------------------------------------------------------------------------- /docs/html/search/files_8.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/files_8.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['jointhreads_2eh',['JoinThreads.h',['../_join_threads_8h.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/html/search/files_9.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/files_9.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['messagequeuethread_2eh',['MessageQueueThread.h',['../_message_queue_thread_8h.html',1,'']]], 4 | ['messageutils_2ecpp',['MessageUtils.cpp',['../_message_utils_8cpp.html',1,'']]], 5 | ['messageutils_2eh',['MessageUtils.h',['../_message_utils_8h.html',1,'']]], 6 | ['multicastreceiver_2ecpp',['MulticastReceiver.cpp',['../_multicast_receiver_8cpp.html',1,'']]], 7 | ['multicastreceiver_2eh',['MulticastReceiver.h',['../_multicast_receiver_8h.html',1,'']]], 8 | ['multicastsender_2ecpp',['MulticastSender.cpp',['../_multicast_sender_8cpp.html',1,'']]], 9 | ['multicastsender_2eh',['MulticastSender.h',['../_multicast_sender_8h.html',1,'']]], 10 | ['multicasttypedsender_2eh',['MulticastTypedSender.h',['../_multicast_typed_sender_8h.html',1,'']]] 11 | ]; 12 | -------------------------------------------------------------------------------- /docs/html/search/files_a.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/files_a.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['platformdefines_2eh',['PlatformDefines.h',['../_platform_defines_8h.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/html/search/files_b.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/files_c.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/files_d.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/files_d.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['udpreceiver_2ecpp',['UdpReceiver.cpp',['../_udp_receiver_8cpp.html',1,'']]], 4 | ['udpreceiver_2eh',['UdpReceiver.h',['../_udp_receiver_8h.html',1,'']]], 5 | ['udpsender_2ecpp',['UdpSender.cpp',['../_udp_sender_8cpp.html',1,'']]], 6 | ['udpsender_2eh',['UdpSender.h',['../_udp_sender_8h.html',1,'']]], 7 | ['udptypedsender_2eh',['UdpTypedSender.h',['../_udp_typed_sender_8h.html',1,'']]] 8 | ]; 9 | -------------------------------------------------------------------------------- /docs/html/search/functions_0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/functions_1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/functions_13.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['value',['Value',['../classcore__lib_1_1csv__grid_1_1_cell.html#a8989ab4b8fc650bde89d52eb6f1b8344',1,'core_lib::csv_grid::Cell::Value()'],['../classcore__lib_1_1csv__grid_1_1_cell_double.html#a3e9a073d8b9579b5842d6c1ed0a54aeb',1,'core_lib::csv_grid::CellDouble::Value()'],['../classcore__lib_1_1ini__file_1_1if__private_1_1_key_line.html#ab1197c73d5bb33f8a1ed42a88eeb2123',1,'core_lib::ini_file::if_private::KeyLine::Value() const'],['../classcore__lib_1_1ini__file_1_1if__private_1_1_key_line.html#ad514fcaca87540355ef3ab3500fc85bf',1,'core_lib::ini_file::if_private::KeyLine::Value(const std::string &value)'],['../classcore__lib_1_1ini__file_1_1if__private_1_1_key_line.html#a0cbf299055058bc4be3c2c31febccc10',1,'core_lib::ini_file::if_private::KeyLine::Value(std::string &&value)']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/html/search/functions_2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/functions_3.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/functions_4.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/functions_5.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/functions_6.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/functions_7.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/functions_8.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/functions_9.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/functions_a.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/functions_b.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/functions_c.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/functions_d.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/functions_e.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/functions_f.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/mag_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dac1976/CoreLibrary/588bf7289256d8edfc6c311ebdebc5574653a863/docs/html/search/mag_sel.png -------------------------------------------------------------------------------- /docs/html/search/namespaces_1.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['std',['std',['../namespacestd.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/html/search/nomatches.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 |
No Matches
10 |
11 | 12 | 13 | -------------------------------------------------------------------------------- /docs/html/search/pages_0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/pages_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['corelibrary',['CoreLibrary',['../index.html',1,'']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/html/search/related_0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/related_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['tcsvgrid_3c_20c_2c_20t_20_3e',['TCsvGrid< C, T >',['../classcore__lib_1_1csv__grid_1_1_t_row.html#a41cd114cd71dfbc5c4d9d3c007458e7e',1,'core_lib::csv_grid::TRow']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/html/search/search_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dac1976/CoreLibrary/588bf7289256d8edfc6c311ebdebc5574653a863/docs/html/search/search_l.png -------------------------------------------------------------------------------- /docs/html/search/search_m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dac1976/CoreLibrary/588bf7289256d8edfc6c311ebdebc5574653a863/docs/html/search/search_m.png -------------------------------------------------------------------------------- /docs/html/search/search_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dac1976/CoreLibrary/588bf7289256d8edfc6c311ebdebc5574653a863/docs/html/search/search_r.png -------------------------------------------------------------------------------- /docs/html/search/searchdata.js: -------------------------------------------------------------------------------- 1 | var indexSectionsWithContent = 2 | { 3 | 0: "abcdefghijklmnopqrstuvwx~", 4 | 1: "abcdehijklmpqrstu", 5 | 2: "cs", 6 | 3: "abcdefgijmpstu", 7 | 4: "abcdefgijklmnoprstuvw~", 8 | 5: "abdhlmnrt", 9 | 6: "abcdehiklmoprstv", 10 | 7: "e", 11 | 8: "abcdefijnprstuwx", 12 | 9: "t", 13 | 10: "cdnst", 14 | 11: "c" 15 | }; 16 | 17 | var indexSectionNames = 18 | { 19 | 0: "all", 20 | 1: "classes", 21 | 2: "namespaces", 22 | 3: "files", 23 | 4: "functions", 24 | 5: "variables", 25 | 6: "typedefs", 26 | 7: "enums", 27 | 8: "enumvalues", 28 | 9: "related", 29 | 10: "defines", 30 | 11: "pages" 31 | }; 32 | 33 | var indexSectionLabels = 34 | { 35 | 0: "All", 36 | 1: "Classes", 37 | 2: "Namespaces", 38 | 3: "Files", 39 | 4: "Functions", 40 | 5: "Variables", 41 | 6: "Typedefs", 42 | 7: "Enumerations", 43 | 8: "Enumerator", 44 | 9: "Friends", 45 | 10: "Macros", 46 | 11: "Pages" 47 | }; 48 | 49 | -------------------------------------------------------------------------------- /docs/html/search/typedefs_0.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/typedefs_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['argument_5ft',['argument_t',['../structstd_1_1hash_3_01core__lib_1_1log_1_1e_log_message_level_01_4.html#ad44feb3ba3ad4d2df8efc34535530281',1,'std::hash< core_lib::log::eLogMessageLevel >']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/html/search/typedefs_1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/typedefs_2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/typedefs_3.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/typedefs_3.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['default_5flog_5ft',['default_log_t',['../namespacecore__lib_1_1log.html#a201bedc730c57d53881cb7f84efa3771',1,'core_lib::log']]], 4 | ['default_5fmessage_5fdispatcher_5ft',['default_message_dispatcher_t',['../namespacecore__lib_1_1asio_1_1defs.html#a3c16d0d1451e101c2c6d6d1f45761498',1,'core_lib::asio::defs']]], 5 | ['default_5freceived_5fmessage_5fptr_5ft',['default_received_message_ptr_t',['../namespacecore__lib_1_1asio_1_1defs.html#ac86e244471822fbceb1efb9e76024877',1,'core_lib::asio::defs']]], 6 | ['default_5freceived_5fmessage_5ft',['default_received_message_t',['../namespacecore__lib_1_1asio_1_1defs.html#a3508b4ed831de019d93e07811fdf4093',1,'core_lib::asio::defs']]] 7 | ]; 8 | -------------------------------------------------------------------------------- /docs/html/search/typedefs_4.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/typedefs_4.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['enumtype_5ft',['enumType_t',['../structstd_1_1hash_3_01core__lib_1_1log_1_1e_log_message_level_01_4.html#abc8e72bd1cc27691881641acbb20d17a',1,'std::hash< core_lib::log::eLogMessageLevel >']]], 4 | ['event_5fcallback_5ft',['event_callback_t',['../classcore__lib_1_1threads_1_1_event_thread.html#a8f26de7c515fca0adfcf1951a76bbb32',1,'core_lib::threads::EventThread']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/html/search/typedefs_5.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/typedefs_5.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['header_5ft',['header_t',['../structcore__lib_1_1asio_1_1defs_1_1_received_message.html#a173bfb47e0d2514900c2452141f40fb2',1,'core_lib::asio::defs::ReceivedMessage']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/html/search/typedefs_6.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/typedefs_7.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/typedefs_7.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['keys_5fiter',['keys_iter',['../classcore__lib_1_1ini__file_1_1if__private_1_1_section_details.html#a19a9a75e6c6c9c30ddb01318b1adbfdd',1,'core_lib::ini_file::if_private::SectionDetails']]], 4 | ['keys_5flist',['keys_list',['../namespacecore__lib_1_1ini__file.html#acb2215ac1ac9ec77960c2921c3c13444',1,'core_lib::ini_file']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/html/search/typedefs_8.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/typedefs_8.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['line_5fciter',['line_citer',['../namespacecore__lib_1_1ini__file_1_1if__private.html#a0ba59b8c8d4fc8615c0e7d2c7b2a2342',1,'core_lib::ini_file::if_private']]], 4 | ['line_5fiter',['line_iter',['../namespacecore__lib_1_1ini__file_1_1if__private.html#aa3515f1f15244ba6d5686d1099ab818f',1,'core_lib::ini_file::if_private']]], 5 | ['line_5fiter_5flist',['line_iter_list',['../classcore__lib_1_1ini__file_1_1if__private_1_1_section_details.html#a4058f6ecae532b7869c58bacc08cda11',1,'core_lib::ini_file::if_private::SectionDetails']]], 6 | ['line_5flist',['line_list',['../namespacecore__lib_1_1ini__file_1_1if__private.html#ab4a873ad7a345d8b196262cd098bd45c',1,'core_lib::ini_file::if_private']]], 7 | ['log_5fmsg_5fqueue',['log_msg_queue',['../classcore__lib_1_1log_1_1_debug_log.html#a65565a38e7d8a36d641c6a8d34bde9ba',1,'core_lib::log::DebugLog']]] 8 | ]; 9 | -------------------------------------------------------------------------------- /docs/html/search/typedefs_9.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/typedefs_9.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['message_5freceived_5fhandler_5ft',['message_received_handler_t',['../namespacecore__lib_1_1asio_1_1defs.html#a08be01070c44a580bafb08424df14d28',1,'core_lib::asio::defs']]], 4 | ['msg_5fdeleter_5ft',['msg_deleter_t',['../classcore__lib_1_1threads_1_1_message_queue_thread.html#a90446de7d044c7d1a56ef8bf9cd5f5aa',1,'core_lib::threads::MessageQueueThread']]], 5 | ['msg_5fhandler_5ft',['msg_handler_t',['../classcore__lib_1_1threads_1_1_message_queue_thread.html#ac87213f4a63a4f523828ef04304238ae',1,'core_lib::threads::MessageQueueThread']]], 6 | ['msg_5fid_5fdecoder_5ft',['msg_id_decoder_t',['../classcore__lib_1_1threads_1_1_message_queue_thread.html#aff149687b3d8dff7023eda909d43946e',1,'core_lib::threads::MessageQueueThread']]], 7 | ['msg_5fmap_5ft',['msg_map_t',['../classcore__lib_1_1threads_1_1_message_queue_thread.html#a3285227d703533dec74a08beda3dc635',1,'core_lib::threads::MessageQueueThread']]] 8 | ]; 9 | -------------------------------------------------------------------------------- /docs/html/search/typedefs_a.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/typedefs_a.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['out_5fbin_5ft',['out_bin_t',['../namespacecore__lib_1_1serialize_1_1archives.html#af81e475ca13abc8dabe84b717be7240a',1,'core_lib::serialize::archives']]], 4 | ['out_5fjson_5ft',['out_json_t',['../namespacecore__lib_1_1serialize_1_1archives.html#a23eb427520a817f5ca51304756b7e38d',1,'core_lib::serialize::archives']]], 5 | ['out_5fport_5fbin_5ft',['out_port_bin_t',['../namespacecore__lib_1_1serialize_1_1archives.html#ae0a3bcd700977b4017ed00abeab5cbe9',1,'core_lib::serialize::archives']]], 6 | ['out_5fprotobuf_5ft',['out_protobuf_t',['../namespacecore__lib_1_1serialize_1_1archives.html#a0855b7c51d20683cc4b07d6ed473f688',1,'core_lib::serialize::archives']]], 7 | ['out_5fraw_5ft',['out_raw_t',['../namespacecore__lib_1_1serialize_1_1archives.html#a95a32f60835d800d6e730aad31135a4f',1,'core_lib::serialize::archives']]], 8 | ['out_5fxml_5ft',['out_xml_t',['../namespacecore__lib_1_1serialize_1_1archives.html#a39d88b1dec43f9dd870aedd58b253ff4',1,'core_lib::serialize::archives']]] 9 | ]; 10 | -------------------------------------------------------------------------------- /docs/html/search/typedefs_b.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/typedefs_b.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['param_5ftype',['param_type',['../classcore__lib_1_1threads_1_1_bounded_buffer.html#a3c57d6fcaf45e08e693e4c6d69401709',1,'core_lib::threads::BoundedBuffer']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/html/search/typedefs_c.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/typedefs_c.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['result_5ft',['result_t',['../structstd_1_1hash_3_01core__lib_1_1log_1_1e_log_message_level_01_4.html#abe354be346ae0fb8fbad7fcda0063599',1,'std::hash< core_lib::log::eLogMessageLevel >']]], 4 | ['row',['Row',['../namespacecore__lib_1_1csv__grid.html#ac50088b241a6397e033cbb8d8260627a',1,'core_lib::csv_grid']]], 5 | ['row_5ftype',['row_type',['../classcore__lib_1_1csv__grid_1_1_t_csv_grid.html#a3d0a99d664e690c48c6dfa9938f50edf',1,'core_lib::csv_grid::TCsvGrid']]], 6 | ['rowd',['RowD',['../namespacecore__lib_1_1csv__grid.html#a790b435105054949d8a802fa49d8c8ce',1,'core_lib::csv_grid']]], 7 | ['rowl',['RowL',['../namespacecore__lib_1_1csv__grid.html#a1a5de680189b27bae426bd989ea56462',1,'core_lib::csv_grid']]], 8 | ['rowv',['RowV',['../namespacecore__lib_1_1csv__grid.html#ac2e9a6705615804761d728015d79d14e',1,'core_lib::csv_grid']]] 9 | ]; 10 | -------------------------------------------------------------------------------- /docs/html/search/typedefs_d.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
Loading...
12 |
13 | 16 |
Searching...
17 |
No Matches
18 | 24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /docs/html/search/typedefs_d.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['section_5fciter',['section_citer',['../classcore__lib_1_1ini__file_1_1_ini_file.html#a95470c10ca5fc81b6df85ff6dd65636a',1,'core_lib::ini_file::IniFile']]], 4 | ['section_5fiter',['section_iter',['../classcore__lib_1_1ini__file_1_1_ini_file.html#a6608df470240c4aeb4e2e03acb954f5b',1,'core_lib::ini_file::IniFile']]], 5 | ['section_5fmap',['section_map',['../classcore__lib_1_1ini__file_1_1_ini_file.html#a9c6a068f33e15bb75b3bb2e990e2237c',1,'core_lib::ini_file::IniFile']]], 6 | ['size_5ftype',['size_type',['../classcore__lib_1_1threads_1_1_bounded_buffer.html#a0e2b7d61b04192c1b8fa6ff1e585fcd6',1,'core_lib::threads::BoundedBuffer']]] 7 | ]; 8 | -------------------------------------------------------------------------------- /docs/html/search/typedefs_e.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['tcp_5fconn_5fmap',['tcp_conn_map',['../classcore__lib_1_1asio_1_1tcp_1_1_tcp_connections.html#a6783ed3cd50e5d7a201f125a31975ce0',1,'core_lib::asio::tcp::TcpConnections']]], 4 | ['tcp_5fconn_5fptr_5ft',['tcp_conn_ptr_t',['../namespacecore__lib_1_1asio_1_1defs.html#a76d404caf6e7b18437455f14d06ac6cb',1,'core_lib::asio::defs']]], 5 | ['thread_5ffunction_5ft',['thread_function_t',['../classcore__lib_1_1threads_1_1_thread_runner.html#a0996812f756302f35f6f063b092bcc85',1,'core_lib::threads::ThreadRunner']]], 6 | ['thread_5flist',['thread_list',['../classcore__lib_1_1threads_1_1_thread_group.html#abbbb7ea215832d1f21e89e1388aa4450',1,'core_lib::threads::ThreadGroup']]], 7 | ['thread_5flist_5fiter',['thread_list_iter',['../classcore__lib_1_1threads_1_1_thread_group.html#ac891aa27b314e856c9aa4ddb5a3fb3ac',1,'core_lib::threads::ThreadGroup']]] 8 | ]; 9 | -------------------------------------------------------------------------------- /docs/html/search/typedefs_f.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['value_5ftype',['value_type',['../classcore__lib_1_1threads_1_1_bounded_buffer.html#a435ef25a21267dc78844c170a78cbde4',1,'core_lib::threads::BoundedBuffer']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/html/search/variables_0.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['archivetype',['archiveType',['../structcore__lib_1_1asio_1_1defs_1_1_message_header.html#a690c735a8d96d62bca4236e0c65ea483',1,'core_lib::asio::defs::MessageHeader']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/html/search/variables_1.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['body',['body',['../structcore__lib_1_1asio_1_1defs_1_1_received_message.html#a2305bc4a02edfd5c28c7784b6da829f7',1,'core_lib::asio::defs::ReceivedMessage']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/html/search/variables_2.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['default_5fmagic_5fstring',['DEFAULT_MAGIC_STRING',['../namespacecore__lib_1_1asio_1_1defs.html#a8c8a1638bc2fd93ff3310beac91241d5',1,'core_lib::asio::defs']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/html/search/variables_3.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['header',['header',['../structcore__lib_1_1asio_1_1defs_1_1_received_message.html#a414706025d7d687b0cf4c6e63b369f78',1,'core_lib::asio::defs::ReceivedMessage']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/html/search/variables_4.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['log_5flevel_5fdebug',['LOG_LEVEL_DEBUG',['../_debug_logging_8h.html#ab78f259a98092790c2c3280610b7838f',1,'DebugLogging.h']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/html/search/variables_6.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['null_5fconnection',['NULL_CONNECTION',['../namespacecore__lib_1_1asio_1_1defs.html#af7512945de1835baa4dd56f3f268e922',1,'core_lib::asio::defs']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/html/search/variables_7.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['responseaddress',['responseAddress',['../structcore__lib_1_1asio_1_1defs_1_1_message_header.html#abbccdbaf4edb9aaac17ddd9d805da09b',1,'core_lib::asio::defs::MessageHeader']]], 4 | ['responseport',['responsePort',['../structcore__lib_1_1asio_1_1defs_1_1_message_header.html#add42f184c8e1c522d7869a0b342eaa27',1,'core_lib::asio::defs::MessageHeader']]] 5 | ]; 6 | -------------------------------------------------------------------------------- /docs/html/search/variables_8.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['totallength',['totalLength',['../structcore__lib_1_1asio_1_1defs_1_1_message_header.html#abdac0b8b4fad6ced051b5e13e088e8b6',1,'core_lib::asio::defs::MessageHeader']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/html/search/variables_9.js: -------------------------------------------------------------------------------- 1 | var searchData= 2 | [ 3 | ['udp_5fdatagram_5fmax_5fsize_1393',['UDP_DATAGRAM_MAX_SIZE',['../namespacecore__lib_1_1asio_1_1udp.html#a0aeb809f0edc168642171e692a48be29',1,'core_lib::asio::udp']]] 4 | ]; 5 | -------------------------------------------------------------------------------- /docs/html/splitbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dac1976/CoreLibrary/588bf7289256d8edfc6c311ebdebc5574653a863/docs/html/splitbar.png -------------------------------------------------------------------------------- /docs/html/structcore__lib_1_1asio_1_1messages_1_1_archive_type_to_enum.js: -------------------------------------------------------------------------------- 1 | var structcore__lib_1_1asio_1_1messages_1_1_archive_type_to_enum = 2 | [ 3 | [ "Enumerate", "structcore__lib_1_1asio_1_1messages_1_1_archive_type_to_enum.html#a785025ff061e7ea7bf2458dc00033b11", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/html/structcore__lib_1_1asio_1_1messages_1_1_archive_type_to_enum_3_01serialize_1_1archives_1_1out__bin__t_01_4.js: -------------------------------------------------------------------------------- 1 | var structcore__lib_1_1asio_1_1messages_1_1_archive_type_to_enum_3_01serialize_1_1archives_1_1out__bin__t_01_4 = 2 | [ 3 | [ "Enumerate", "structcore__lib_1_1asio_1_1messages_1_1_archive_type_to_enum_3_01serialize_1_1archives_1_1out__bin__t_01_4.html#aa6d252fc66bbb6f6c801b657ebd05e39", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/html/structcore__lib_1_1asio_1_1messages_1_1_archive_type_to_enum_3_01serialize_1_1archives_1_1out__json__t_01_4.js: -------------------------------------------------------------------------------- 1 | var structcore__lib_1_1asio_1_1messages_1_1_archive_type_to_enum_3_01serialize_1_1archives_1_1out__json__t_01_4 = 2 | [ 3 | [ "Enumerate", "structcore__lib_1_1asio_1_1messages_1_1_archive_type_to_enum_3_01serialize_1_1archives_1_1out__json__t_01_4.html#a7a5ada73896ec385f8729ec3f36b6103", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/html/structcore__lib_1_1asio_1_1messages_1_1_archive_type_to_enum_3_01serialize_1_1archives_1_1out__port__bin__t_01_4.js: -------------------------------------------------------------------------------- 1 | var structcore__lib_1_1asio_1_1messages_1_1_archive_type_to_enum_3_01serialize_1_1archives_1_1out__port__bin__t_01_4 = 2 | [ 3 | [ "Enumerate", "structcore__lib_1_1asio_1_1messages_1_1_archive_type_to_enum_3_01serialize_1_1archives_1_1out__port__bin__t_01_4.html#a0f3d7480a28604d5681a858fddc66e75", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/html/structcore__lib_1_1asio_1_1messages_1_1_archive_type_to_enum_3_01serialize_1_1archives_1_1out__protobuf__t_01_4.js: -------------------------------------------------------------------------------- 1 | var structcore__lib_1_1asio_1_1messages_1_1_archive_type_to_enum_3_01serialize_1_1archives_1_1out__protobuf__t_01_4 = 2 | [ 3 | [ "Enumerate", "structcore__lib_1_1asio_1_1messages_1_1_archive_type_to_enum_3_01serialize_1_1archives_1_1out__protobuf__t_01_4.html#a677c524d4b23d43520fe8f6b056d7b1e", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/html/structcore__lib_1_1asio_1_1messages_1_1_archive_type_to_enum_3_01serialize_1_1archives_1_1out__raw__t_01_4.js: -------------------------------------------------------------------------------- 1 | var structcore__lib_1_1asio_1_1messages_1_1_archive_type_to_enum_3_01serialize_1_1archives_1_1out__raw__t_01_4 = 2 | [ 3 | [ "Enumerate", "structcore__lib_1_1asio_1_1messages_1_1_archive_type_to_enum_3_01serialize_1_1archives_1_1out__raw__t_01_4.html#a3b0dbabeefbf98ec5c56595984f1d990", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/html/structcore__lib_1_1asio_1_1messages_1_1_archive_type_to_enum_3_01serialize_1_1archives_1_1out__xml__t_01_4.js: -------------------------------------------------------------------------------- 1 | var structcore__lib_1_1asio_1_1messages_1_1_archive_type_to_enum_3_01serialize_1_1archives_1_1out__xml__t_01_4 = 2 | [ 3 | [ "Enumerate", "structcore__lib_1_1asio_1_1messages_1_1_archive_type_to_enum_3_01serialize_1_1archives_1_1out__xml__t_01_4.html#a13e08c2ac9199c76c38fcaaee6f67774", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/html/structcore__lib_1_1log_1_1_default_log_format.js: -------------------------------------------------------------------------------- 1 | var structcore__lib_1_1log_1_1_default_log_format = 2 | [ 3 | [ "operator()", "structcore__lib_1_1log_1_1_default_log_format.html#a99f93bb5656c13abb9f83d3f3436b960", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/html/structcore__lib_1_1serialize_1_1impl_1_1_to_char_vector_impl.js: -------------------------------------------------------------------------------- 1 | var structcore__lib_1_1serialize_1_1impl_1_1_to_char_vector_impl = 2 | [ 3 | [ "operator()", "structcore__lib_1_1serialize_1_1impl_1_1_to_char_vector_impl.html#a51fc2e6d684174bb7e3cd50b4f9ad0e7", null ], 4 | [ "operator()", "structcore__lib_1_1serialize_1_1impl_1_1_to_char_vector_impl.html#a08e8aa2b182740a9bec566805a46aaf6", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/html/structcore__lib_1_1serialize_1_1impl_1_1_to_char_vector_impl_3_01_t_00_01archives_1_1out__protobuf__t_01_4.js: -------------------------------------------------------------------------------- 1 | var structcore__lib_1_1serialize_1_1impl_1_1_to_char_vector_impl_3_01_t_00_01archives_1_1out__protobuf__t_01_4 = 2 | [ 3 | [ "operator()", "structcore__lib_1_1serialize_1_1impl_1_1_to_char_vector_impl_3_01_t_00_01archives_1_1out__protobuf__t_01_4.html#af7a4c64ab7b3ec1d76e17f35ecb62b71", null ], 4 | [ "operator()", "structcore__lib_1_1serialize_1_1impl_1_1_to_char_vector_impl_3_01_t_00_01archives_1_1out__protobuf__t_01_4.html#afaf8e3956ecd4b51138bda45fac1e871", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/html/structcore__lib_1_1serialize_1_1impl_1_1_to_char_vector_impl_3_01_t_00_01archives_1_1out__raw__t_01_4.js: -------------------------------------------------------------------------------- 1 | var structcore__lib_1_1serialize_1_1impl_1_1_to_char_vector_impl_3_01_t_00_01archives_1_1out__raw__t_01_4 = 2 | [ 3 | [ "operator()", "structcore__lib_1_1serialize_1_1impl_1_1_to_char_vector_impl_3_01_t_00_01archives_1_1out__raw__t_01_4.html#affd1577940345173c8a36d2cac532e46", null ], 4 | [ "operator()", "structcore__lib_1_1serialize_1_1impl_1_1_to_char_vector_impl_3_01_t_00_01archives_1_1out__raw__t_01_4.html#a59491365abb48b376ea61bea45c828fe", null ] 5 | ]; -------------------------------------------------------------------------------- /docs/html/structcore__lib_1_1serialize_1_1impl_1_1_to_object_impl.js: -------------------------------------------------------------------------------- 1 | var structcore__lib_1_1serialize_1_1impl_1_1_to_object_impl = 2 | [ 3 | [ "operator()", "structcore__lib_1_1serialize_1_1impl_1_1_to_object_impl.html#aec2ed20de0d3ae722ef5b76b7ec48557", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/html/structcore__lib_1_1serialize_1_1impl_1_1_to_object_impl_3_01_t_00_01archives_1_1in__protobuf__t_01_4.js: -------------------------------------------------------------------------------- 1 | var structcore__lib_1_1serialize_1_1impl_1_1_to_object_impl_3_01_t_00_01archives_1_1in__protobuf__t_01_4 = 2 | [ 3 | [ "operator()", "structcore__lib_1_1serialize_1_1impl_1_1_to_object_impl_3_01_t_00_01archives_1_1in__protobuf__t_01_4.html#ae21d02b60cc9daaffe1581b0b841f699", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/html/structcore__lib_1_1serialize_1_1impl_1_1_to_object_impl_3_01_t_00_01archives_1_1in__raw__t_01_4.js: -------------------------------------------------------------------------------- 1 | var structcore__lib_1_1serialize_1_1impl_1_1_to_object_impl_3_01_t_00_01archives_1_1in__raw__t_01_4 = 2 | [ 3 | [ "operator()", "structcore__lib_1_1serialize_1_1impl_1_1_to_object_impl_3_01_t_00_01archives_1_1in__raw__t_01_4.html#a9d5b19ce47ea4b5681bfe9d090f0ab15", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/html/structcore__lib_1_1string__utils_1_1deletable__facet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dac1976/CoreLibrary/588bf7289256d8edfc6c311ebdebc5574653a863/docs/html/structcore__lib_1_1string__utils_1_1deletable__facet.png -------------------------------------------------------------------------------- /docs/html/structcore__lib_1_1threads_1_1_array_deleter.js: -------------------------------------------------------------------------------- 1 | var structcore__lib_1_1threads_1_1_array_deleter = 2 | [ 3 | [ "operator()", "structcore__lib_1_1threads_1_1_array_deleter.html#a5ba05ca48beb4612103910bbba4cda4a", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/html/structcore__lib_1_1threads_1_1_single_item_deleter.js: -------------------------------------------------------------------------------- 1 | var structcore__lib_1_1threads_1_1_single_item_deleter = 2 | [ 3 | [ "operator()", "structcore__lib_1_1threads_1_1_single_item_deleter.html#a6678c7e3f1d5318cdf6ad02fcbe76243", null ] 4 | ]; -------------------------------------------------------------------------------- /docs/html/structstd_1_1hash_3_01core__lib_1_1log_1_1e_log_message_level_01_4.js: -------------------------------------------------------------------------------- 1 | var structstd_1_1hash_3_01core__lib_1_1log_1_1e_log_message_level_01_4 = 2 | [ 3 | [ "argument_t", "structstd_1_1hash_3_01core__lib_1_1log_1_1e_log_message_level_01_4.html#ad44feb3ba3ad4d2df8efc34535530281", null ], 4 | [ "enumType_t", "structstd_1_1hash_3_01core__lib_1_1log_1_1e_log_message_level_01_4.html#abc8e72bd1cc27691881641acbb20d17a", null ], 5 | [ "result_t", "structstd_1_1hash_3_01core__lib_1_1log_1_1e_log_message_level_01_4.html#abe354be346ae0fb8fbad7fcda0063599", null ], 6 | [ "operator()", "structstd_1_1hash_3_01core__lib_1_1log_1_1e_log_message_level_01_4.html#a2b86bca802b089767f08507f9a647118", null ] 7 | ]; -------------------------------------------------------------------------------- /docs/html/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dac1976/CoreLibrary/588bf7289256d8edfc6c311ebdebc5574653a863/docs/html/sync_off.png -------------------------------------------------------------------------------- /docs/html/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dac1976/CoreLibrary/588bf7289256d8edfc6c311ebdebc5574653a863/docs/html/sync_on.png -------------------------------------------------------------------------------- /docs/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dac1976/CoreLibrary/588bf7289256d8edfc6c311ebdebc5574653a863/docs/html/tab_a.png -------------------------------------------------------------------------------- /docs/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dac1976/CoreLibrary/588bf7289256d8edfc6c311ebdebc5574653a863/docs/html/tab_b.png -------------------------------------------------------------------------------- /docs/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dac1976/CoreLibrary/588bf7289256d8edfc6c311ebdebc5574653a863/docs/html/tab_h.png -------------------------------------------------------------------------------- /docs/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dac1976/CoreLibrary/588bf7289256d8edfc6c311ebdebc5574653a863/docs/html/tab_s.png -------------------------------------------------------------------------------- /qt_custom_mkspecs/ReadMe.txt: -------------------------------------------------------------------------------- 1 | Copy the prf files into your Qt mkspecs folder, e.g. 2 | 3 | .../Qt/5.8/msvc2015_64/mkspecs/features 4 | -------------------------------------------------------------------------------- /qt_custom_mkspecs/linux/boost.prf: -------------------------------------------------------------------------------- 1 | INCLUDEPATH += /usr/include -------------------------------------------------------------------------------- /qt_custom_mkspecs/linux/cereal.prf: -------------------------------------------------------------------------------- 1 | INCLUDEPATH += /usr/include 2 | -------------------------------------------------------------------------------- /qt_custom_mkspecs/linux/core_lib.prf: -------------------------------------------------------------------------------- 1 | CONFIG += loki \ 2 | ceral \ 3 | boost \ 4 | boost_libs 5 | 6 | CONFIG(debug, debug|release) { 7 | LIBS += /home/duncan/Projects/CoreLibrary/QtProject/debug/libCoreLibraryd.a 8 | } else { 9 | LIBS += /home/duncan/Projects/CoreLibrary/QtProject/release/libCoreLibrary.a 10 | } 11 | -------------------------------------------------------------------------------- /qt_custom_mkspecs/linux/core_lib_dll.prf: -------------------------------------------------------------------------------- 1 | CONFIG += loki \ 2 | ceral \ 3 | boost \ 4 | boost_libs 5 | 6 | CONFIG(debug, debug|release) { 7 | LIBS += -L/home/duncan/Projects/CoreLibrary/QtProject/debug -lCoreLibraryDlld 8 | } else { 9 | LIBS += -L/home/duncan/Projects/CoreLibrary/QtProject/release -lCoreLibraryDll 10 | } 11 | -------------------------------------------------------------------------------- /qt_custom_mkspecs/linux/google_protobuf.prf: -------------------------------------------------------------------------------- 1 | INCLUDEPATH += /usr/include 2 | 3 | LIBS += -L/usr/lib -lprotobuf 4 | -------------------------------------------------------------------------------- /qt_custom_mkspecs/linux/google_test.prf: -------------------------------------------------------------------------------- 1 | # Need to add in pthread as google test requires it. 2 | QMAKE_CXXFLAGS += -pthread 3 | 4 | INCLUDEPATH += /usr/include 5 | 6 | # The order of these libs is important and libpthread.so must go 7 | # after the libgtest_main.a's linkage. 8 | LIBS += -L/usr/lib -lgtest_main \ 9 | -L/usr/lib -lgtest \ 10 | -L/usr/lib -lpthread 11 | -------------------------------------------------------------------------------- /qt_custom_mkspecs/linux/loki.prf: -------------------------------------------------------------------------------- 1 | DEFINES += LOKI_CLASS_LEVEL_THREADING 2 | 3 | INCLUDEPATH += /home/duncan/Projects/loki-0.1.7/include/ 4 | -------------------------------------------------------------------------------- /qt_custom_mkspecs/msvc_64/boost.prf: -------------------------------------------------------------------------------- 1 | INCLUDEPATH += $$(THIRD_PARTY_LIBS)/boost/include 2 | -------------------------------------------------------------------------------- /qt_custom_mkspecs/msvc_64/cereal.prf: -------------------------------------------------------------------------------- 1 | INCLUDEPATH += $$(THIRD_PARTY_LIBS)/cereal/include 2 | -------------------------------------------------------------------------------- /qt_custom_mkspecs/msvc_64/core_lib.prf: -------------------------------------------------------------------------------- 1 | CONFIG += boost \ 2 | boost_libs \ 3 | loki \ 4 | cereal 5 | 6 | CONFIG(debug, debug|release) { 7 | LIBS += $$(CORE_LIBRARY)/QtProject/debug/x64/CoreLibraryd.lib 8 | } else { 9 | LIBS += $$(CORE_LIBRARY)/QtProject/release/x64/CoreLibrary.lib 10 | } 11 | -------------------------------------------------------------------------------- /qt_custom_mkspecs/msvc_64/core_lib_dll.prf: -------------------------------------------------------------------------------- 1 | CONFIG += boost \ 2 | boost_libs \ 3 | loki \ 4 | cereal 5 | 6 | CONFIG(debug, debug|release) { 7 | LIBS += -L$$(CORE_LIBRARY)/QtProject/debug/x64 -lCoreLibraryDlld 8 | } else { 9 | LIBS += -L$$(CORE_LIBRARY)/QtProject/release/x64 -lCoreLibraryDll 10 | } 11 | -------------------------------------------------------------------------------- /qt_custom_mkspecs/msvc_64/google_protobuf.prf: -------------------------------------------------------------------------------- 1 | INCLUDEPATH += $$(THIRD_PARTY_LIBS)/google_protobuf/include 2 | 3 | CONFIG(debug, debug|release) { 4 | LIBS += $$(THIRD_PARTY_LIBS)/google_protobuf/msvc2017/x64/lib/dynamic_runtime/libprotobufd.lib 5 | } else { 6 | LIBS += $$(THIRD_PARTY_LIBS)/google_protobuf/msvc2017/x64/lib/dynamic_runtime/libprotobuf.lib 7 | } -------------------------------------------------------------------------------- /qt_custom_mkspecs/msvc_64/google_test.prf: -------------------------------------------------------------------------------- 1 | INCLUDEPATH += $$(THIRD_PARTY_LIBS)/google_test/include 2 | 3 | CONFIG(debug, debug|release) { 4 | LIBS += $$(THIRD_PARTY_LIBS)/google_test/qt_msvc2017_64/debug/gtest_main.lib 5 | } else { 6 | LIBS += $$(THIRD_PARTY_LIBS)/google_test/qt_msvc2017_64/release/gtest_main.lib 7 | } -------------------------------------------------------------------------------- /qt_custom_mkspecs/msvc_64/loki.prf: -------------------------------------------------------------------------------- 1 | DEFINES += LOKI_CLASS_LEVEL_THREADING 2 | 3 | INCLUDEPATH += $$(THIRD_PARTY_LIBS)/loki/include 4 | --------------------------------------------------------------------------------