├── EasyProtocol ├── Include │ └── boost │ │ ├── Boost 1.56.0 │ │ ├── numeric │ │ ├── interval.hpp │ │ ├── interval │ │ │ ├── arith.hpp │ │ │ ├── arith2.hpp │ │ │ ├── limits.hpp │ │ │ ├── transc.hpp │ │ │ ├── checking.hpp │ │ │ ├── compare.hpp │ │ │ ├── interval.hpp │ │ │ ├── rounding.hpp │ │ │ ├── utility.hpp │ │ │ ├── constants.hpp │ │ │ ├── detail │ │ │ │ ├── bugs.hpp │ │ │ │ ├── test_input.hpp │ │ │ │ ├── interval_prototype.hpp │ │ │ │ ├── bcc_rounding_control.hpp │ │ │ │ ├── c99_rounding_control.hpp │ │ │ │ ├── msvc_rounding_control.hpp │ │ │ │ ├── ppc_rounding_control.hpp │ │ │ │ ├── x86_rounding_control.hpp │ │ │ │ ├── alpha_rounding_control.hpp │ │ │ │ ├── c99sub_rounding_control.hpp │ │ │ │ ├── sparc_rounding_control.hpp │ │ │ │ └── x86gcc_rounding_control.hpp │ │ │ ├── hw_rounding.hpp │ │ │ ├── rounded_arith.hpp │ │ │ ├── compare │ │ │ │ └── explicit.hpp │ │ │ ├── rounded_transc.hpp │ │ │ └── ext │ │ │ │ └── x86_fast_rounding_control.hpp │ │ └── odeint │ │ │ └── util │ │ │ └── ublas_matrix_expression.patch │ │ ├── smart_ptr │ │ ├── detail │ │ │ └── atomic_count_gcc.hpp │ │ └── make_unique.hpp │ │ ├── spirit │ │ ├── home │ │ │ ├── x3 │ │ │ │ └── support │ │ │ │ │ └── subcontext.hpp │ │ │ ├── support │ │ │ │ ├── char_encoding │ │ │ │ │ └── iso8859_1.hpp │ │ │ │ ├── detail │ │ │ │ │ └── lexer │ │ │ │ │ │ └── size_t.hpp │ │ │ │ ├── iterators │ │ │ │ │ └── ostream_iterator.hpp │ │ │ │ └── terminal_expression.hpp │ │ │ ├── karma │ │ │ │ ├── action.hpp │ │ │ │ ├── char.hpp │ │ │ │ ├── auto.hpp │ │ │ │ ├── string.hpp │ │ │ │ ├── binary.hpp │ │ │ │ ├── stream.hpp │ │ │ │ ├── format.hpp │ │ │ │ └── format_auto.hpp │ │ │ ├── qi │ │ │ │ ├── match.hpp │ │ │ │ ├── match_auto.hpp │ │ │ │ ├── action.hpp │ │ │ │ ├── binary.hpp │ │ │ │ └── stream.hpp │ │ │ ├── lex │ │ │ │ └── primitives.hpp │ │ │ └── lex.hpp │ │ ├── repository │ │ │ ├── home │ │ │ │ ├── karma │ │ │ │ │ ├── directive.hpp │ │ │ │ │ └── nonterminal.hpp │ │ │ │ ├── qi │ │ │ │ │ ├── operator.hpp │ │ │ │ │ └── nonterminal.hpp │ │ │ │ └── karma.hpp │ │ │ └── include │ │ │ │ └── qi_seek.hpp │ │ ├── include │ │ │ ├── classic.hpp │ │ │ ├── phoenix.hpp │ │ │ ├── phoenix1.hpp │ │ │ ├── phoenix_stl.hpp │ │ │ ├── classic_core.hpp │ │ │ ├── classic_if.hpp │ │ │ ├── classic_meta.hpp │ │ │ ├── phoenix_bind.hpp │ │ │ ├── phoenix_core.hpp │ │ │ ├── classic_actor.hpp │ │ │ ├── classic_ast.hpp │ │ │ ├── classic_debug.hpp │ │ │ ├── classic_for.hpp │ │ │ ├── classic_nil.hpp │ │ │ ├── phoenix_scope.hpp │ │ │ ├── classic_lazy.hpp │ │ │ ├── classic_match.hpp │ │ │ ├── phoenix1_new.hpp │ │ │ ├── phoenix_fusion.hpp │ │ │ ├── phoenix_object.hpp │ │ │ ├── phoenix_version.hpp │ │ │ ├── classic_assert.hpp │ │ │ ├── classic_chset.hpp │ │ │ ├── classic_common.hpp │ │ │ ├── classic_config.hpp │ │ │ ├── classic_dynamic.hpp │ │ │ ├── classic_list.hpp │ │ │ ├── classic_lists.hpp │ │ │ ├── classic_loops.hpp │ │ │ ├── classic_parser.hpp │ │ │ ├── classic_regex.hpp │ │ │ ├── classic_symbols.hpp │ │ │ ├── classic_typeof.hpp │ │ │ ├── classic_utility.hpp │ │ │ ├── classic_version.hpp │ │ │ ├── classic_while.hpp │ │ │ ├── phoenix1_actor.hpp │ │ │ ├── phoenix1_casts.hpp │ │ │ ├── phoenix_function.hpp │ │ │ ├── phoenix_limits.hpp │ │ │ ├── phoenix_operator.hpp │ │ │ ├── qi_parse_attr.hpp │ │ │ ├── classic_ast_fwd.hpp │ │ │ ├── classic_attribute.hpp │ │ │ ├── classic_confix.hpp │ │ │ ├── classic_iterator.hpp │ │ │ ├── classic_minimal.hpp │ │ │ ├── classic_rule.hpp │ │ │ ├── classic_select.hpp │ │ │ ├── classic_switch.hpp │ │ │ ├── phoenix1_tuples.hpp │ │ │ ├── phoenix_statement.hpp │ │ │ ├── classic_as_parser.hpp │ │ │ ├── classic_closure.hpp │ │ │ ├── classic_distinct.hpp │ │ │ ├── classic_safe_bool.hpp │ │ │ ├── classic_scanner.hpp │ │ │ ├── classic_skipper.hpp │ │ │ ├── classic_spirit.hpp │ │ │ ├── classic_traverse.hpp │ │ │ ├── phoenix1_binders.hpp │ │ │ ├── phoenix_algorithm.hpp │ │ │ ├── phoenix_container.hpp │ │ │ ├── classic_common_fwd.hpp │ │ │ ├── classic_debug_node.hpp │ │ │ ├── classic_epsilon.hpp │ │ │ ├── classic_grammar.hpp │ │ │ ├── classic_lists_fwd.hpp │ │ │ ├── classic_parse_tree.hpp │ │ │ ├── classic_ref_actor.hpp │ │ │ ├── classic_subrule.hpp │ │ │ ├── classic_swap_actor.hpp │ │ │ ├── phoenix1_closures.hpp │ │ │ ├── qi_copy.hpp │ │ │ ├── classic_clear_actor.hpp │ │ │ ├── classic_composite.hpp │ │ │ ├── classic_confix_fwd.hpp │ │ │ ├── classic_erase_actor.hpp │ │ │ ├── classic_fundamental.hpp │ │ │ ├── classic_multi_pass.hpp │ │ │ ├── classic_numerics.hpp │ │ │ ├── classic_operators.hpp │ │ │ ├── classic_optional.hpp │ │ │ ├── classic_parametric.hpp │ │ │ ├── classic_positive.hpp │ │ │ ├── classic_refactoring.hpp │ │ │ ├── classic_rule_alias.hpp │ │ │ ├── classic_sequence.hpp │ │ │ └── classic_static.hpp │ │ └── version.hpp │ │ ├── container │ │ └── detail │ │ │ ├── advanced_insert_int.hpp │ │ │ └── config_end.hpp │ │ ├── math │ │ ├── distributions │ │ │ └── non_central_chi_squared.hpp │ │ └── common_factor.hpp │ │ ├── functional │ │ ├── hash.hpp │ │ └── hash_fwd.hpp │ │ ├── pending │ │ ├── iterator_adaptors.hpp │ │ ├── integer_log2.hpp │ │ └── detail │ │ │ └── property.hpp │ │ ├── concept │ │ └── detail │ │ │ ├── concept_undef.hpp │ │ │ └── backward_compatibility.hpp │ │ ├── config │ │ ├── abi │ │ │ ├── msvc_suffix.hpp │ │ │ └── borland_suffix.hpp │ │ ├── platform │ │ │ ├── amigaos.hpp │ │ │ └── cray.hpp │ │ └── compiler │ │ │ ├── compaq_cxx.hpp │ │ │ └── nvcc.hpp │ │ ├── exception │ │ ├── enable_error_info.hpp │ │ ├── enable_current_exception.hpp │ │ ├── error_info.hpp │ │ ├── errinfo_at_line.hpp │ │ └── errinfo_file_handle.hpp │ │ ├── predef │ │ ├── detail │ │ │ ├── os_detected.h │ │ │ ├── comp_detected.h │ │ │ ├── platform_detected.h │ │ │ ├── _exception.h │ │ │ ├── _cassert.h │ │ │ └── test.h │ │ ├── library │ │ │ ├── c │ │ │ │ └── _prefix.h │ │ │ └── c.h │ │ ├── other.h │ │ ├── library.h │ │ ├── version.h │ │ ├── language.h │ │ └── platform.h │ │ ├── typeof │ │ ├── message.hpp │ │ ├── std │ │ │ ├── utility.hpp │ │ │ ├── complex.hpp │ │ │ ├── bitset.hpp │ │ │ ├── list.hpp │ │ │ ├── deque.hpp │ │ │ ├── queue.hpp │ │ │ ├── stack.hpp │ │ │ └── vector.hpp │ │ └── incr_registration_group.hpp │ │ ├── mpl │ │ ├── aux_ │ │ │ ├── preprocessed │ │ │ │ ├── bcc551 │ │ │ │ │ └── quote.hpp │ │ │ │ ├── msvc60 │ │ │ │ │ └── quote.hpp │ │ │ │ ├── no_ttp │ │ │ │ │ └── quote.hpp │ │ │ │ ├── bcc_pre590 │ │ │ │ │ └── quote.hpp │ │ │ │ ├── dmc │ │ │ │ │ └── template_arity.hpp │ │ │ │ ├── mwcw │ │ │ │ │ └── template_arity.hpp │ │ │ │ └── plain │ │ │ │ │ └── template_arity.hpp │ │ │ ├── config │ │ │ │ ├── workaround.hpp │ │ │ │ ├── msvc.hpp │ │ │ │ ├── intel.hpp │ │ │ │ └── use_preprocessed.hpp │ │ │ ├── basic_bind.hpp │ │ │ ├── test │ │ │ │ └── test_case.hpp │ │ │ ├── has_size.hpp │ │ │ └── range_c │ │ │ │ └── tag.hpp │ │ ├── end.hpp │ │ ├── max.hpp │ │ ├── min.hpp │ │ ├── next.hpp │ │ ├── begin.hpp │ │ ├── prior.hpp │ │ ├── alias.hpp │ │ ├── logical.hpp │ │ ├── less.hpp │ │ ├── plus.hpp │ │ ├── limits │ │ │ ├── map.hpp │ │ │ ├── set.hpp │ │ │ ├── list.hpp │ │ │ ├── vector.hpp │ │ │ ├── arity.hpp │ │ │ └── unrolling.hpp │ │ ├── minus.hpp │ │ ├── times.hpp │ │ ├── divides.hpp │ │ ├── greater.hpp │ │ ├── int.hpp │ │ ├── equal_to.hpp │ │ ├── long.hpp │ │ ├── less_equal.hpp │ │ ├── multiset │ │ │ └── aux_ │ │ │ │ └── tag.hpp │ │ ├── list │ │ │ └── aux_ │ │ │ │ └── tag.hpp │ │ ├── not_equal_to.hpp │ │ ├── greater_equal.hpp │ │ ├── at_fwd.hpp │ │ ├── back_fwd.hpp │ │ ├── map │ │ │ └── aux_ │ │ │ │ └── tag.hpp │ │ ├── modulus.hpp │ │ ├── set │ │ │ └── aux_ │ │ │ │ └── tag.hpp │ │ ├── size_fwd.hpp │ │ ├── clear_fwd.hpp │ │ ├── empty_fwd.hpp │ │ ├── front_fwd.hpp │ │ └── shift_left.hpp │ │ ├── detail │ │ ├── endian.hpp │ │ ├── lightweight_test.hpp │ │ ├── scoped_enum_emulation.hpp │ │ ├── no_exceptions_support.hpp │ │ └── iterator.hpp │ │ ├── ref.hpp │ │ ├── swap.hpp │ │ ├── utility │ │ ├── swap.hpp │ │ ├── addressof.hpp │ │ ├── enable_if.hpp │ │ └── explicit_operator_bool.hpp │ │ ├── noncopyable.hpp │ │ ├── function │ │ ├── function0.hpp │ │ ├── function1.hpp │ │ ├── function10.hpp │ │ ├── function2.hpp │ │ ├── function3.hpp │ │ ├── function4.hpp │ │ ├── function5.hpp │ │ ├── function6.hpp │ │ ├── function7.hpp │ │ ├── function8.hpp │ │ ├── function9.hpp │ │ └── detail │ │ │ └── function_iterate.hpp │ │ ├── checked_delete.hpp │ │ ├── filesystem │ │ └── exception.hpp │ │ ├── iterator_adaptors.hpp │ │ ├── move │ │ └── detail │ │ │ └── config_end.hpp │ │ ├── type_traits │ │ ├── detail │ │ │ └── size_t_trait_undef.hpp │ │ ├── transform_traits_spec.hpp │ │ ├── broken_compiler_spec.hpp │ │ ├── aligned_storage.hpp │ │ ├── array_traits.hpp │ │ └── alignment_traits.hpp │ │ ├── iterator.hpp │ │ ├── type.hpp │ │ ├── weak_ptr.hpp │ │ ├── predef.h │ │ ├── scoped_ptr.hpp │ │ ├── optional.hpp │ │ ├── range │ │ └── iterator_range.hpp │ │ ├── shared_ptr.hpp │ │ ├── random │ │ └── detail │ │ │ └── config.hpp │ │ └── preprocessor │ │ └── punctuation │ │ └── comma.hpp ├── jsoncpp │ ├── include │ │ ├── CMakeLists.txt │ │ └── json │ │ │ ├── json.h │ │ │ └── version.h │ └── src │ │ ├── CMakeLists.txt │ │ ├── lib_json │ │ ├── sconscript │ │ └── version.h.in │ │ └── test_lib_json │ │ └── sconscript └── EasyProtocol │ ├── ProtocolTest │ └── ProtocolTest.vcproj │ └── .dep.inc ├── EasyRMS ├── Lib │ ├── libapr-1.dll │ ├── libcurl.dll │ ├── libssl.dll │ ├── libxml2.dll │ ├── msvcr71.dll │ ├── libEasyOSS.dll │ ├── libEasyOSS.lib │ ├── libcrypto.dll │ ├── libapriconv-1.dll │ ├── libaprutil-1.dll │ ├── libeasyrtspclient.a │ ├── linux │ │ ├── x64 │ │ │ ├── libcurl.a │ │ │ ├── libxml2.a │ │ │ ├── libapr-1.a │ │ │ ├── libeasyoss.a │ │ │ ├── libaprutil-1.a │ │ │ ├── liboss_c_sdk.a │ │ │ ├── libboost_system.a │ │ │ ├── libeasyhlsrecord.a │ │ │ ├── libeasyrtspclient.a │ │ │ └── libboost_filesystem.a │ │ └── i386 │ │ │ ├── libapr-1.a │ │ │ ├── libcurl.a │ │ │ ├── libxml2.a │ │ │ ├── libeasyoss.a │ │ │ ├── libaprutil-1.a │ │ │ ├── liboss_c_sdk.a │ │ │ ├── libboost_system.a │ │ │ ├── libeasyhlsrecord.a │ │ │ ├── libboost_filesystem.a │ │ │ └── libeasyrtspclient.a │ ├── libEasyHLSRecord.dll │ ├── libEasyHLSRecord.lib │ ├── libEasyRTSPClient.dll │ ├── libEasyRTSPClient.lib │ ├── x64 │ │ └── libeasyrtspclient.a │ ├── libboost_system-vc90-mt-s-1_57.lib │ ├── libboost_system-vc90-mt-sgd-1_57.lib │ ├── libboost_filesystem-vc90-mt-s-1_57.lib │ └── libboost_filesystem-vc90-mt-sgd-1_57.lib ├── APIStubLib │ ├── QTSS.h │ └── QTSS_Private.cpp ├── Include │ ├── EasyHLSAPI.h │ ├── EasyTypes.h │ ├── EasyRecordAPI.h │ └── EasyRTSPClientAPI.h ├── Server.tproj │ ├── HTTPSession.h │ ├── QTSServer.cpp │ ├── RunServer.cpp │ ├── win32main.cpp │ ├── HTTPSession.cpp │ ├── QTSSCallbacks.cpp │ ├── QTSServerInterface.h │ ├── HTTPRequestStream.cpp │ └── QTSServerInterface.cpp ├── APIModules │ └── EasyRecordModule │ │ ├── EasyRecordModule.cpp │ │ ├── EasyRecordSession.h │ │ ├── EasyRecordSession.cpp │ │ └── EasyRecordModule.h └── .dep.inc ├── libEasyOSS ├── Debug │ ├── gpsvc.dll │ ├── zlib1.dll │ ├── ieshims.dll │ ├── libapr-1.dll │ ├── libcurl.dll │ ├── libeay32.dll │ ├── libxml2.dll │ ├── msvcr71.dll │ ├── ssleay32.dll │ ├── msvcr100d.dll │ ├── libapriconv-1.dll │ └── libaprutil-1.dll ├── EasyOSSTest │ └── main.cpp ├── libEasyOSS │ └── libEasyOSS.cpp └── oss_c_sdk_lib │ ├── ReadMe.txt │ ├── CHANGELOG.txt │ └── third_party │ └── lib │ ├── curl.lib │ ├── xml2.lib │ ├── apr-1.lib │ ├── aprutil-1.lib │ └── oss_c_sdk_lib.lib ├── CommonUtilitiesLib ├── MakeDir.c └── .dep.inc ├── HTTPUtilitiesLib ├── HTTPRequest.h └── HTTPRequest.cpp └── SafeStdLib └── SafeInternalStdLib.dsw /EasyProtocol/Include/boost/Boost 1.56.0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EasyRMS/Lib/libapr-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyRMS/Lib/libapr-1.dll -------------------------------------------------------------------------------- /EasyRMS/Lib/libcurl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyRMS/Lib/libcurl.dll -------------------------------------------------------------------------------- /EasyRMS/Lib/libssl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyRMS/Lib/libssl.dll -------------------------------------------------------------------------------- /EasyRMS/Lib/libxml2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyRMS/Lib/libxml2.dll -------------------------------------------------------------------------------- /EasyRMS/Lib/msvcr71.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyRMS/Lib/msvcr71.dll -------------------------------------------------------------------------------- /EasyRMS/APIStubLib/QTSS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyRMS/APIStubLib/QTSS.h -------------------------------------------------------------------------------- /EasyRMS/Lib/libEasyOSS.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyRMS/Lib/libEasyOSS.dll -------------------------------------------------------------------------------- /EasyRMS/Lib/libEasyOSS.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyRMS/Lib/libEasyOSS.lib -------------------------------------------------------------------------------- /EasyRMS/Lib/libcrypto.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyRMS/Lib/libcrypto.dll -------------------------------------------------------------------------------- /libEasyOSS/Debug/gpsvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/libEasyOSS/Debug/gpsvc.dll -------------------------------------------------------------------------------- /libEasyOSS/Debug/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/libEasyOSS/Debug/zlib1.dll -------------------------------------------------------------------------------- /CommonUtilitiesLib/MakeDir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/CommonUtilitiesLib/MakeDir.c -------------------------------------------------------------------------------- /EasyRMS/Include/EasyHLSAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyRMS/Include/EasyHLSAPI.h -------------------------------------------------------------------------------- /EasyRMS/Include/EasyTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyRMS/Include/EasyTypes.h -------------------------------------------------------------------------------- /EasyRMS/Lib/libapriconv-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyRMS/Lib/libapriconv-1.dll -------------------------------------------------------------------------------- /EasyRMS/Lib/libaprutil-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyRMS/Lib/libaprutil-1.dll -------------------------------------------------------------------------------- /libEasyOSS/Debug/ieshims.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/libEasyOSS/Debug/ieshims.dll -------------------------------------------------------------------------------- /libEasyOSS/Debug/libapr-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/libEasyOSS/Debug/libapr-1.dll -------------------------------------------------------------------------------- /libEasyOSS/Debug/libcurl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/libEasyOSS/Debug/libcurl.dll -------------------------------------------------------------------------------- /libEasyOSS/Debug/libeay32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/libEasyOSS/Debug/libeay32.dll -------------------------------------------------------------------------------- /libEasyOSS/Debug/libxml2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/libEasyOSS/Debug/libxml2.dll -------------------------------------------------------------------------------- /libEasyOSS/Debug/msvcr71.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/libEasyOSS/Debug/msvcr71.dll -------------------------------------------------------------------------------- /libEasyOSS/Debug/ssleay32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/libEasyOSS/Debug/ssleay32.dll -------------------------------------------------------------------------------- /EasyRMS/Include/EasyRecordAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyRMS/Include/EasyRecordAPI.h -------------------------------------------------------------------------------- /EasyRMS/Lib/libeasyrtspclient.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyRMS/Lib/libeasyrtspclient.a -------------------------------------------------------------------------------- /EasyRMS/Lib/linux/x64/libcurl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyRMS/Lib/linux/x64/libcurl.a -------------------------------------------------------------------------------- /EasyRMS/Lib/linux/x64/libxml2.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyRMS/Lib/linux/x64/libxml2.a -------------------------------------------------------------------------------- /HTTPUtilitiesLib/HTTPRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/HTTPUtilitiesLib/HTTPRequest.h -------------------------------------------------------------------------------- /libEasyOSS/Debug/msvcr100d.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/libEasyOSS/Debug/msvcr100d.dll -------------------------------------------------------------------------------- /libEasyOSS/EasyOSSTest/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/libEasyOSS/EasyOSSTest/main.cpp -------------------------------------------------------------------------------- /EasyRMS/Lib/libEasyHLSRecord.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyRMS/Lib/libEasyHLSRecord.dll -------------------------------------------------------------------------------- /EasyRMS/Lib/libEasyHLSRecord.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyRMS/Lib/libEasyHLSRecord.lib -------------------------------------------------------------------------------- /EasyRMS/Lib/libEasyRTSPClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyRMS/Lib/libEasyRTSPClient.dll -------------------------------------------------------------------------------- /EasyRMS/Lib/libEasyRTSPClient.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyRMS/Lib/libEasyRTSPClient.lib -------------------------------------------------------------------------------- /EasyRMS/Lib/linux/i386/libapr-1.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyRMS/Lib/linux/i386/libapr-1.a -------------------------------------------------------------------------------- /EasyRMS/Lib/linux/i386/libcurl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyRMS/Lib/linux/i386/libcurl.a -------------------------------------------------------------------------------- /EasyRMS/Lib/linux/i386/libxml2.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyRMS/Lib/linux/i386/libxml2.a -------------------------------------------------------------------------------- /EasyRMS/Lib/linux/x64/libapr-1.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyRMS/Lib/linux/x64/libapr-1.a -------------------------------------------------------------------------------- /EasyRMS/Lib/linux/x64/libeasyoss.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyRMS/Lib/linux/x64/libeasyoss.a -------------------------------------------------------------------------------- /EasyRMS/Server.tproj/HTTPSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyRMS/Server.tproj/HTTPSession.h -------------------------------------------------------------------------------- /EasyRMS/Server.tproj/QTSServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyRMS/Server.tproj/QTSServer.cpp -------------------------------------------------------------------------------- /EasyRMS/Server.tproj/RunServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyRMS/Server.tproj/RunServer.cpp -------------------------------------------------------------------------------- /EasyRMS/Server.tproj/win32main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyRMS/Server.tproj/win32main.cpp -------------------------------------------------------------------------------- /HTTPUtilitiesLib/HTTPRequest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/HTTPUtilitiesLib/HTTPRequest.cpp -------------------------------------------------------------------------------- /libEasyOSS/Debug/libapriconv-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/libEasyOSS/Debug/libapriconv-1.dll -------------------------------------------------------------------------------- /libEasyOSS/Debug/libaprutil-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/libEasyOSS/Debug/libaprutil-1.dll -------------------------------------------------------------------------------- /EasyRMS/APIStubLib/QTSS_Private.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyRMS/APIStubLib/QTSS_Private.cpp -------------------------------------------------------------------------------- /EasyRMS/Include/EasyRTSPClientAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyRMS/Include/EasyRTSPClientAPI.h -------------------------------------------------------------------------------- /EasyRMS/Lib/linux/i386/libeasyoss.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyRMS/Lib/linux/i386/libeasyoss.a -------------------------------------------------------------------------------- /EasyRMS/Lib/linux/x64/libaprutil-1.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyRMS/Lib/linux/x64/libaprutil-1.a -------------------------------------------------------------------------------- /EasyRMS/Lib/linux/x64/liboss_c_sdk.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyRMS/Lib/linux/x64/liboss_c_sdk.a -------------------------------------------------------------------------------- /EasyRMS/Lib/x64/libeasyrtspclient.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyRMS/Lib/x64/libeasyrtspclient.a -------------------------------------------------------------------------------- /EasyRMS/Server.tproj/HTTPSession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyRMS/Server.tproj/HTTPSession.cpp -------------------------------------------------------------------------------- /libEasyOSS/libEasyOSS/libEasyOSS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/libEasyOSS/libEasyOSS/libEasyOSS.cpp -------------------------------------------------------------------------------- /libEasyOSS/oss_c_sdk_lib/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/libEasyOSS/oss_c_sdk_lib/ReadMe.txt -------------------------------------------------------------------------------- /EasyRMS/Lib/linux/i386/libaprutil-1.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyRMS/Lib/linux/i386/libaprutil-1.a -------------------------------------------------------------------------------- /EasyRMS/Lib/linux/i386/liboss_c_sdk.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyRMS/Lib/linux/i386/liboss_c_sdk.a -------------------------------------------------------------------------------- /EasyRMS/Lib/linux/x64/libboost_system.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyRMS/Lib/linux/x64/libboost_system.a -------------------------------------------------------------------------------- /EasyRMS/Server.tproj/QTSSCallbacks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyRMS/Server.tproj/QTSSCallbacks.cpp -------------------------------------------------------------------------------- /libEasyOSS/oss_c_sdk_lib/CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/libEasyOSS/oss_c_sdk_lib/CHANGELOG.txt -------------------------------------------------------------------------------- /EasyRMS/Lib/linux/i386/libboost_system.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyRMS/Lib/linux/i386/libboost_system.a -------------------------------------------------------------------------------- /EasyRMS/Lib/linux/i386/libeasyhlsrecord.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyRMS/Lib/linux/i386/libeasyhlsrecord.a -------------------------------------------------------------------------------- /EasyRMS/Lib/linux/x64/libeasyhlsrecord.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyRMS/Lib/linux/x64/libeasyhlsrecord.a -------------------------------------------------------------------------------- /EasyRMS/Lib/linux/x64/libeasyrtspclient.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyRMS/Lib/linux/x64/libeasyrtspclient.a -------------------------------------------------------------------------------- /EasyRMS/Server.tproj/QTSServerInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyRMS/Server.tproj/QTSServerInterface.h -------------------------------------------------------------------------------- /EasyRMS/Lib/linux/i386/libboost_filesystem.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyRMS/Lib/linux/i386/libboost_filesystem.a -------------------------------------------------------------------------------- /EasyRMS/Lib/linux/i386/libeasyrtspclient.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyRMS/Lib/linux/i386/libeasyrtspclient.a -------------------------------------------------------------------------------- /EasyRMS/Lib/linux/x64/libboost_filesystem.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyRMS/Lib/linux/x64/libboost_filesystem.a -------------------------------------------------------------------------------- /EasyRMS/Server.tproj/HTTPRequestStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyRMS/Server.tproj/HTTPRequestStream.cpp -------------------------------------------------------------------------------- /EasyRMS/Server.tproj/QTSServerInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyRMS/Server.tproj/QTSServerInterface.cpp -------------------------------------------------------------------------------- /EasyRMS/Lib/libboost_system-vc90-mt-s-1_57.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyRMS/Lib/libboost_system-vc90-mt-s-1_57.lib -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/numeric/interval.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyProtocol/Include/boost/numeric/interval.hpp -------------------------------------------------------------------------------- /EasyRMS/Lib/libboost_system-vc90-mt-sgd-1_57.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyRMS/Lib/libboost_system-vc90-mt-sgd-1_57.lib -------------------------------------------------------------------------------- /libEasyOSS/oss_c_sdk_lib/third_party/lib/curl.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/libEasyOSS/oss_c_sdk_lib/third_party/lib/curl.lib -------------------------------------------------------------------------------- /libEasyOSS/oss_c_sdk_lib/third_party/lib/xml2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/libEasyOSS/oss_c_sdk_lib/third_party/lib/xml2.lib -------------------------------------------------------------------------------- /EasyRMS/Lib/libboost_filesystem-vc90-mt-s-1_57.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyRMS/Lib/libboost_filesystem-vc90-mt-s-1_57.lib -------------------------------------------------------------------------------- /libEasyOSS/oss_c_sdk_lib/third_party/lib/apr-1.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/libEasyOSS/oss_c_sdk_lib/third_party/lib/apr-1.lib -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/numeric/interval/arith.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyProtocol/Include/boost/numeric/interval/arith.hpp -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/numeric/interval/arith2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyProtocol/Include/boost/numeric/interval/arith2.hpp -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/numeric/interval/limits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyProtocol/Include/boost/numeric/interval/limits.hpp -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/numeric/interval/transc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyProtocol/Include/boost/numeric/interval/transc.hpp -------------------------------------------------------------------------------- /EasyRMS/Lib/libboost_filesystem-vc90-mt-sgd-1_57.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyRMS/Lib/libboost_filesystem-vc90-mt-sgd-1_57.lib -------------------------------------------------------------------------------- /libEasyOSS/oss_c_sdk_lib/third_party/lib/aprutil-1.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/libEasyOSS/oss_c_sdk_lib/third_party/lib/aprutil-1.lib -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/numeric/interval/checking.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyProtocol/Include/boost/numeric/interval/checking.hpp -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/numeric/interval/compare.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyProtocol/Include/boost/numeric/interval/compare.hpp -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/numeric/interval/interval.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyProtocol/Include/boost/numeric/interval/interval.hpp -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/numeric/interval/rounding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyProtocol/Include/boost/numeric/interval/rounding.hpp -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/numeric/interval/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyProtocol/Include/boost/numeric/interval/utility.hpp -------------------------------------------------------------------------------- /EasyProtocol/jsoncpp/include/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | FILE(GLOB INCLUDE_FILES "json/*.h") 2 | INSTALL(FILES ${INCLUDE_FILES} DESTINATION ${INCLUDE_INSTALL_DIR}/json) 3 | -------------------------------------------------------------------------------- /EasyRMS/APIModules/EasyRecordModule/EasyRecordModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyRMS/APIModules/EasyRecordModule/EasyRecordModule.cpp -------------------------------------------------------------------------------- /EasyRMS/APIModules/EasyRecordModule/EasyRecordSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyRMS/APIModules/EasyRecordModule/EasyRecordSession.h -------------------------------------------------------------------------------- /EasyProtocol/EasyProtocol/ProtocolTest/ProtocolTest.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyProtocol/EasyProtocol/ProtocolTest/ProtocolTest.vcproj -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/numeric/interval/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyProtocol/Include/boost/numeric/interval/constants.hpp -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/numeric/interval/detail/bugs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyProtocol/Include/boost/numeric/interval/detail/bugs.hpp -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/numeric/interval/hw_rounding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyProtocol/Include/boost/numeric/interval/hw_rounding.hpp -------------------------------------------------------------------------------- /EasyRMS/APIModules/EasyRecordModule/EasyRecordSession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyRMS/APIModules/EasyRecordModule/EasyRecordSession.cpp -------------------------------------------------------------------------------- /libEasyOSS/oss_c_sdk_lib/third_party/lib/oss_c_sdk_lib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/libEasyOSS/oss_c_sdk_lib/third_party/lib/oss_c_sdk_lib.lib -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/numeric/interval/rounded_arith.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyProtocol/Include/boost/numeric/interval/rounded_arith.hpp -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/numeric/interval/compare/explicit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyProtocol/Include/boost/numeric/interval/compare/explicit.hpp -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/numeric/interval/rounded_transc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyProtocol/Include/boost/numeric/interval/rounded_transc.hpp -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/smart_ptr/detail/atomic_count_gcc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyProtocol/Include/boost/smart_ptr/detail/atomic_count_gcc.hpp -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/home/x3/support/subcontext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyProtocol/Include/boost/spirit/home/x3/support/subcontext.hpp -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/numeric/interval/detail/test_input.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyProtocol/Include/boost/numeric/interval/detail/test_input.hpp -------------------------------------------------------------------------------- /EasyRMS/.dep.inc: -------------------------------------------------------------------------------- 1 | # This code depends on make tool being used 2 | DEPFILES=$(wildcard $(addsuffix .d, ${OBJECTFILES})) 3 | ifneq (${DEPFILES},) 4 | include ${DEPFILES} 5 | endif 6 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/container/detail/advanced_insert_int.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyProtocol/Include/boost/container/detail/advanced_insert_int.hpp -------------------------------------------------------------------------------- /CommonUtilitiesLib/.dep.inc: -------------------------------------------------------------------------------- 1 | # This code depends on make tool being used 2 | DEPFILES=$(wildcard $(addsuffix .d, ${OBJECTFILES})) 3 | ifneq (${DEPFILES},) 4 | include ${DEPFILES} 5 | endif 6 | -------------------------------------------------------------------------------- /EasyProtocol/jsoncpp/src/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | ADD_SUBDIRECTORY(lib_json) 2 | IF(JSONCPP_WITH_TESTS) 3 | ADD_SUBDIRECTORY(jsontestrunner) 4 | ADD_SUBDIRECTORY(test_lib_json) 5 | ENDIF() 6 | -------------------------------------------------------------------------------- /EasyProtocol/EasyProtocol/.dep.inc: -------------------------------------------------------------------------------- 1 | # This code depends on make tool being used 2 | DEPFILES=$(wildcard $(addsuffix .d, ${OBJECTFILES})) 3 | ifneq (${DEPFILES},) 4 | include ${DEPFILES} 5 | endif 6 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/math/distributions/non_central_chi_squared.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyProtocol/Include/boost/math/distributions/non_central_chi_squared.hpp -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/numeric/interval/detail/interval_prototype.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyProtocol/Include/boost/numeric/interval/detail/interval_prototype.hpp -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/home/support/char_encoding/iso8859_1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyProtocol/Include/boost/spirit/home/support/char_encoding/iso8859_1.hpp -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/numeric/interval/detail/bcc_rounding_control.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyProtocol/Include/boost/numeric/interval/detail/bcc_rounding_control.hpp -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/numeric/interval/detail/c99_rounding_control.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyProtocol/Include/boost/numeric/interval/detail/c99_rounding_control.hpp -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/numeric/interval/detail/msvc_rounding_control.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyProtocol/Include/boost/numeric/interval/detail/msvc_rounding_control.hpp -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/numeric/interval/detail/ppc_rounding_control.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyProtocol/Include/boost/numeric/interval/detail/ppc_rounding_control.hpp -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/numeric/interval/detail/x86_rounding_control.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyProtocol/Include/boost/numeric/interval/detail/x86_rounding_control.hpp -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/numeric/interval/detail/alpha_rounding_control.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyProtocol/Include/boost/numeric/interval/detail/alpha_rounding_control.hpp -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/numeric/interval/detail/c99sub_rounding_control.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyProtocol/Include/boost/numeric/interval/detail/c99sub_rounding_control.hpp -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/numeric/interval/detail/sparc_rounding_control.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyProtocol/Include/boost/numeric/interval/detail/sparc_rounding_control.hpp -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/numeric/interval/detail/x86gcc_rounding_control.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyProtocol/Include/boost/numeric/interval/detail/x86gcc_rounding_control.hpp -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/numeric/interval/ext/x86_fast_rounding_control.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFS/EasyRMS/master/EasyProtocol/Include/boost/numeric/interval/ext/x86_fast_rounding_control.hpp -------------------------------------------------------------------------------- /EasyProtocol/jsoncpp/src/lib_json/sconscript: -------------------------------------------------------------------------------- 1 | Import( 'env buildLibrary' ) 2 | 3 | buildLibrary( env, Split( """ 4 | json_reader.cpp 5 | json_value.cpp 6 | json_writer.cpp 7 | """ ), 8 | 'json' ) 9 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/functional/hash.hpp: -------------------------------------------------------------------------------- 1 | 2 | // Copyright 2005-2009 Daniel James. 3 | // Distributed under the Boost Software License, Version 1.0. (See accompanying 4 | // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 5 | 6 | #include 7 | 8 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/pending/iterator_adaptors.hpp: -------------------------------------------------------------------------------- 1 | // Copyright David Abrahams 2003. 2 | // Distributed under the Boost Software License, Version 1.0. (See 3 | // accompanying file LICENSE_1_0.txt or copy at 4 | // http://www.boost.org/LICENSE_1_0.txt) 5 | 6 | #include 7 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/concept/detail/concept_undef.hpp: -------------------------------------------------------------------------------- 1 | // Copyright David Abrahams 2006. Distributed under the Boost 2 | // Software License, Version 1.0. (See accompanying 3 | // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 4 | # undef BOOST_concept_typename 5 | # undef BOOST_concept 6 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/pending/integer_log2.hpp: -------------------------------------------------------------------------------- 1 | #ifndef BOOST_PENDING_INTEGER_LOG2_HPP 2 | #define BOOST_PENDING_INTEGER_LOG2_HPP 3 | 4 | // The header file at this path is deprecated; 5 | // use boost/integer/integer_log2.hpp instead. 6 | 7 | #include 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/config/abi/msvc_suffix.hpp: -------------------------------------------------------------------------------- 1 | // (C) Copyright John Maddock 2003. 2 | // Use, modification and distribution are subject to the 3 | // Boost Software License, Version 1.0. (See accompanying file 4 | // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 5 | 6 | #pragma pack(pop) 7 | 8 | 9 | -------------------------------------------------------------------------------- /EasyProtocol/jsoncpp/src/test_lib_json/sconscript: -------------------------------------------------------------------------------- 1 | Import( 'env_testing buildUnitTests' ) 2 | 3 | buildUnitTests( env_testing, Split( """ 4 | main.cpp 5 | jsontest.cpp 6 | """ ), 7 | 'test_lib_json' ) 8 | 9 | # For 'check' to work, 'libs' must be built first. 10 | env_testing.Depends('test_lib_json', '#libs') 11 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/exception/enable_error_info.hpp: -------------------------------------------------------------------------------- 1 | //Copyright (c) 2006-2009 Emil Dotchevski and Reverge Studios, Inc. 2 | 3 | //Distributed under the Boost Software License, Version 1.0. (See accompanying 4 | //file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 5 | 6 | #include 7 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/exception/enable_current_exception.hpp: -------------------------------------------------------------------------------- 1 | //Copyright (c) 2006-2009 Emil Dotchevski and Reverge Studios, Inc. 2 | 3 | //Distributed under the Boost Software License, Version 1.0. (See accompanying 4 | //file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 5 | 6 | #include 7 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/predef/detail/os_detected.h: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright Rene Rivera 2013 3 | Distributed under the Boost Software License, Version 1.0. 4 | (See accompanying file LICENSE_1_0.txt or copy at 5 | http://www.boost.org/LICENSE_1_0.txt) 6 | */ 7 | 8 | #ifndef BOOST_PREDEF_DETAIL_OS_DETECTED 9 | #define BOOST_PREDEF_DETAIL_OS_DETECTED 1 10 | #endif 11 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/typeof/message.hpp: -------------------------------------------------------------------------------- 1 | // Copyright (C) 2005 Arkadiy Vertleyb 2 | // Use, modification and distribution is subject to the Boost Software 3 | // License, Version 1.0. (http://www.boost.org/LICENSE_1_0.txt) 4 | 5 | #if defined(_MSC_VER) && defined BOOST_TYPEOF_MESSAGES 6 | # pragma message(BOOST_TYPEOF_TEXT) 7 | #endif 8 | #undef BOOST_TYPEOF_TEXT 9 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/predef/detail/comp_detected.h: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright Rene Rivera 2014 3 | Distributed under the Boost Software License, Version 1.0. 4 | (See accompanying file LICENSE_1_0.txt or copy at 5 | http://www.boost.org/LICENSE_1_0.txt) 6 | */ 7 | 8 | #ifndef BOOST_PREDEF_DETAIL_COMP_DETECTED 9 | #define BOOST_PREDEF_DETAIL_COMP_DETECTED 1 10 | #endif 11 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/predef/detail/platform_detected.h: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright Rene Rivera 2014 3 | Distributed under the Boost Software License, Version 1.0. 4 | (See accompanying file LICENSE_1_0.txt or copy at 5 | http://www.boost.org/LICENSE_1_0.txt) 6 | */ 7 | 8 | #ifndef BOOST_PREDEF_DETAIL_PLAT_DETECTED 9 | #define BOOST_PREDEF_DETAIL_PLAT_DETECTED 1 10 | #endif 11 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/config/abi/borland_suffix.hpp: -------------------------------------------------------------------------------- 1 | // (C) Copyright John Maddock 2003. 2 | // Use, modification and distribution are subject to the 3 | // Boost Software License, Version 1.0. (See accompanying file 4 | // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 5 | 6 | # pragma option pop 7 | #pragma nopushoptwarn 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/mpl/aux_/preprocessed/bcc551/quote.hpp: -------------------------------------------------------------------------------- 1 | 2 | // Copyright Aleksey Gurtovoy 2000-2004 3 | // 4 | // Distributed under the Boost Software License, Version 1.0. 5 | // (See accompanying file LICENSE_1_0.txt or copy at 6 | // http://www.boost.org/LICENSE_1_0.txt) 7 | // 8 | 9 | // Preprocessed version of "boost/mpl/quote.hpp" header 10 | // -- DO NOT modify by hand! 11 | 12 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/mpl/aux_/preprocessed/msvc60/quote.hpp: -------------------------------------------------------------------------------- 1 | 2 | // Copyright Aleksey Gurtovoy 2000-2004 3 | // 4 | // Distributed under the Boost Software License, Version 1.0. 5 | // (See accompanying file LICENSE_1_0.txt or copy at 6 | // http://www.boost.org/LICENSE_1_0.txt) 7 | // 8 | 9 | // Preprocessed version of "boost/mpl/quote.hpp" header 10 | // -- DO NOT modify by hand! 11 | 12 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/mpl/aux_/preprocessed/no_ttp/quote.hpp: -------------------------------------------------------------------------------- 1 | 2 | // Copyright Aleksey Gurtovoy 2000-2004 3 | // 4 | // Distributed under the Boost Software License, Version 1.0. 5 | // (See accompanying file LICENSE_1_0.txt or copy at 6 | // http://www.boost.org/LICENSE_1_0.txt) 7 | // 8 | 9 | // Preprocessed version of "boost/mpl/quote.hpp" header 10 | // -- DO NOT modify by hand! 11 | 12 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/mpl/aux_/preprocessed/bcc_pre590/quote.hpp: -------------------------------------------------------------------------------- 1 | 2 | // Copyright Aleksey Gurtovoy 2000-2008 3 | // 4 | // Distributed under the Boost Software License, Version 1.0. 5 | // (See accompanying file LICENSE_1_0.txt or copy at 6 | // http://www.boost.org/LICENSE_1_0.txt) 7 | // 8 | 9 | // *Preprocessed* version of the main "quote.hpp" header 10 | // -- DO NOT modify by hand! 11 | 12 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/functional/hash_fwd.hpp: -------------------------------------------------------------------------------- 1 | 2 | // Copyright 2005-2009 Daniel James. 3 | // Distributed under the Boost Software License, Version 1.0. (See accompanying 4 | // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 5 | 6 | #include 7 | #if defined(BOOST_HAS_PRAGMA_ONCE) 8 | #pragma once 9 | #endif 10 | 11 | #include 12 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/mpl/aux_/preprocessed/dmc/template_arity.hpp: -------------------------------------------------------------------------------- 1 | 2 | // Copyright Aleksey Gurtovoy 2001-2004 3 | // 4 | // Distributed under the Boost Software License, Version 1.0. 5 | // (See accompanying file LICENSE_1_0.txt or copy at 6 | // http://www.boost.org/LICENSE_1_0.txt) 7 | // 8 | 9 | // Preprocessed version of "boost/mpl/aux_/template_arity.hpp" header 10 | // -- DO NOT modify by hand! 11 | 12 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/mpl/aux_/preprocessed/mwcw/template_arity.hpp: -------------------------------------------------------------------------------- 1 | 2 | // Copyright Aleksey Gurtovoy 2001-2004 3 | // 4 | // Distributed under the Boost Software License, Version 1.0. 5 | // (See accompanying file LICENSE_1_0.txt or copy at 6 | // http://www.boost.org/LICENSE_1_0.txt) 7 | // 8 | 9 | // Preprocessed version of "boost/mpl/aux_/template_arity.hpp" header 10 | // -- DO NOT modify by hand! 11 | 12 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/mpl/aux_/preprocessed/plain/template_arity.hpp: -------------------------------------------------------------------------------- 1 | 2 | // Copyright Aleksey Gurtovoy 2001-2004 3 | // 4 | // Distributed under the Boost Software License, Version 1.0. 5 | // (See accompanying file LICENSE_1_0.txt or copy at 6 | // http://www.boost.org/LICENSE_1_0.txt) 7 | // 8 | 9 | // Preprocessed version of "boost/mpl/aux_/template_arity.hpp" header 10 | // -- DO NOT modify by hand! 11 | 12 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/predef/library/c/_prefix.h: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright Rene Rivera 2008-2013 3 | Distributed under the Boost Software License, Version 1.0. 4 | (See accompanying file LICENSE_1_0.txt or copy at 5 | http://www.boost.org/LICENSE_1_0.txt) 6 | */ 7 | 8 | #ifndef BOOST_PREDEF_LIBRARY_C__PREFIX_H 9 | #define BOOST_PREDEF_LIBRARY_C__PREFIX_H 10 | 11 | #include 12 | 13 | #endif 14 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/predef/other.h: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright Rene Rivera 2013 3 | Distributed under the Boost Software License, Version 1.0. 4 | (See accompanying file LICENSE_1_0.txt or copy at 5 | http://www.boost.org/LICENSE_1_0.txt) 6 | */ 7 | 8 | #ifndef BOOST_PREDEF_OTHER_H 9 | #define BOOST_PREDEF_OTHER_H 10 | 11 | #include 12 | /*#include */ 13 | 14 | #endif 15 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/predef/library.h: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright Rene Rivera 2008-2012 3 | Distributed under the Boost Software License, Version 1.0. 4 | (See accompanying file LICENSE_1_0.txt or copy at 5 | http://www.boost.org/LICENSE_1_0.txt) 6 | */ 7 | 8 | #ifndef BOOST_PREDEF_LIBRARY_H 9 | #define BOOST_PREDEF_LIBRARY_H 10 | 11 | #include 12 | #include 13 | 14 | #endif 15 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/predef/detail/_exception.h: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright Rene Rivera 2011-2012 3 | Distributed under the Boost Software License, Version 1.0. 4 | (See accompanying file LICENSE_1_0.txt or copy at 5 | http://www.boost.org/LICENSE_1_0.txt) 6 | */ 7 | 8 | #ifndef BOOST_PREDEF_DETAIL__EXCEPTION_H 9 | #define BOOST_PREDEF_DETAIL__EXCEPTION_H 10 | 11 | #if defined(__cpluplus) 12 | #include 13 | #endif 14 | 15 | #endif 16 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/detail/endian.hpp: -------------------------------------------------------------------------------- 1 | // Copyright 2013 Rene Rivera 2 | // Distributed under the Boost Software License, Version 1.0. (See accompany- 3 | // ing file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 4 | 5 | #ifndef BOOST_DETAIL_ENDIAN_HPP 6 | #define BOOST_DETAIL_ENDIAN_HPP 7 | 8 | // Use the Predef library for the detection of endianess. 9 | #include 10 | 11 | #endif 12 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/predef/version.h: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright Rene Rivera 2014 3 | Distributed under the Boost Software License, Version 1.0. 4 | (See accompanying file LICENSE_1_0.txt or copy at 5 | http://www.boost.org/LICENSE_1_0.txt) 6 | */ 7 | 8 | #ifndef BOOST_PREDEF_VERSION_H 9 | #define BOOST_PREDEF_VERSION_H 10 | 11 | #include 12 | 13 | #define BOOST_PREDEF_VERSION BOOST_VERSION_NUMBER(1,1,0) 14 | 15 | #endif 16 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/exception/error_info.hpp: -------------------------------------------------------------------------------- 1 | //Copyright (c) 2006-2009 Emil Dotchevski and Reverge Studios, Inc. 2 | 3 | //Distributed under the Boost Software License, Version 1.0. (See accompanying 4 | //file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 5 | 6 | #ifndef UUID_EE7ECCA0433B11E1923E37064924019B 7 | #define UUID_EE7ECCA0433B11E1923E37064924019B 8 | namespace boost { template class error_info; } 9 | #endif 10 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/numeric/odeint/util/ublas_matrix_expression.patch: -------------------------------------------------------------------------------- 1 | 3390,3392c3390 2 | < typename enable_if< is_convertible, 3 | < typename matrix_binary_scalar2_traits >::result_type 4 | < > ::result_type 5 | --- 6 | > typename matrix_binary_scalar2_traits >::result_type 7 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/predef/detail/_cassert.h: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright Rene Rivera 2011-2012 3 | Distributed under the Boost Software License, Version 1.0. 4 | (See accompanying file LICENSE_1_0.txt or copy at 5 | http://www.boost.org/LICENSE_1_0.txt) 6 | */ 7 | 8 | #ifndef BOOST_PREDEF_DETAIL__CASSERT_H 9 | #define BOOST_PREDEF_DETAIL__CASSERT_H 10 | 11 | #if defined(__cpluplus) 12 | #include 13 | #else 14 | #include 15 | #endif 16 | 17 | #endif 18 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/ref.hpp: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2014 Glen Fernandes 3 | * 4 | * Distributed under the Boost Software License, Version 1.0. (See 5 | * accompanying file LICENSE_1_0.txt or copy at 6 | * http://www.boost.org/LICENSE_1_0.txt) 7 | */ 8 | 9 | #ifndef BOOST_REF_HPP 10 | #define BOOST_REF_HPP 11 | 12 | // The header file at this path is deprecated; 13 | // use boost/core/ref.hpp instead. 14 | 15 | #include 16 | 17 | #endif 18 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/home/support/detail/lexer/size_t.hpp: -------------------------------------------------------------------------------- 1 | // size_t.h 2 | // Copyright (c) 2007-2009 Ben Hanson (http://www.benhanson.net/) 3 | // 4 | // Distributed under the Boost Software License, Version 1.0. (See accompanying 5 | // file licence_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 6 | #ifndef BOOST_LEXER_SIZE_T_H 7 | #define BOOST_LEXER_SIZE_T_H 8 | 9 | #include // ptrdiff_t 10 | 11 | #include 12 | 13 | #endif 14 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/predef/detail/test.h: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright Rene Rivera 2011-2012 3 | Distributed under the Boost Software License, Version 1.0. 4 | (See accompanying file LICENSE_1_0.txt or copy at 5 | http://www.boost.org/LICENSE_1_0.txt) 6 | */ 7 | 8 | #ifndef BOOST_PREDEF_DETAIL_TEST_H 9 | #define BOOST_PREDEF_DETAIL_TEST_H 10 | 11 | #if !defined(BOOST_PREDEF_INTERNAL_GENERATE_TESTS) 12 | 13 | #define BOOST_PREDEF_DECLARE_TEST(x,s) 14 | 15 | #endif 16 | 17 | #endif 18 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/swap.hpp: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2014 Glen Fernandes 3 | * 4 | * Distributed under the Boost Software License, Version 1.0. (See 5 | * accompanying file LICENSE_1_0.txt or copy at 6 | * http://www.boost.org/LICENSE_1_0.txt) 7 | */ 8 | 9 | #ifndef BOOST_SWAP_HPP 10 | #define BOOST_SWAP_HPP 11 | 12 | // The header file at this path is deprecated; 13 | // use boost/core/swap.hpp instead. 14 | 15 | #include 16 | 17 | #endif 18 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/predef/language.h: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright Rene Rivera 2011-2012 3 | Distributed under the Boost Software License, Version 1.0. 4 | (See accompanying file LICENSE_1_0.txt or copy at 5 | http://www.boost.org/LICENSE_1_0.txt) 6 | */ 7 | 8 | #ifndef BOOST_PREDEF_LANGUAGE_H 9 | #define BOOST_PREDEF_LANGUAGE_H 10 | 11 | #include 12 | #include 13 | #include 14 | 15 | #endif 16 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/utility/swap.hpp: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2014 Glen Fernandes 3 | * 4 | * Distributed under the Boost Software License, Version 1.0. (See 5 | * accompanying file LICENSE_1_0.txt or copy at 6 | * http://www.boost.org/LICENSE_1_0.txt) 7 | */ 8 | 9 | #ifndef BOOST_UTILITY_SWAP_HPP 10 | #define BOOST_UTILITY_SWAP_HPP 11 | 12 | // The header file at this path is deprecated; 13 | // use boost/core/swap.hpp instead. 14 | 15 | #include 16 | 17 | #endif 18 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/noncopyable.hpp: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2014 Glen Fernandes 3 | * 4 | * Distributed under the Boost Software License, Version 1.0. (See 5 | * accompanying file LICENSE_1_0.txt or copy at 6 | * http://www.boost.org/LICENSE_1_0.txt) 7 | */ 8 | 9 | #ifndef BOOST_NONCOPYABLE_HPP 10 | #define BOOST_NONCOPYABLE_HPP 11 | 12 | // The header file at this path is deprecated; 13 | // use boost/core/noncopyable.hpp instead. 14 | 15 | #include 16 | 17 | #endif 18 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/function/function0.hpp: -------------------------------------------------------------------------------- 1 | // Boost.Function library 2 | 3 | // Copyright Douglas Gregor 2002-2003. Use, modification and 4 | // distribution is subject to the Boost Software License, Version 5 | // 1.0. (See accompanying file LICENSE_1_0.txt or copy at 6 | // http://www.boost.org/LICENSE_1_0.txt) 7 | 8 | // For more information, see http://www.boost.org 9 | 10 | #define BOOST_FUNCTION_NUM_ARGS 0 11 | #include 12 | #undef BOOST_FUNCTION_NUM_ARGS 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/function/function1.hpp: -------------------------------------------------------------------------------- 1 | // Boost.Function library 2 | 3 | // Copyright Douglas Gregor 2002-2003. Use, modification and 4 | // distribution is subject to the Boost Software License, Version 5 | // 1.0. (See accompanying file LICENSE_1_0.txt or copy at 6 | // http://www.boost.org/LICENSE_1_0.txt) 7 | 8 | // For more information, see http://www.boost.org 9 | 10 | #define BOOST_FUNCTION_NUM_ARGS 1 11 | #include 12 | #undef BOOST_FUNCTION_NUM_ARGS 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/function/function10.hpp: -------------------------------------------------------------------------------- 1 | // Boost.Function library 2 | 3 | // Copyright Douglas Gregor 2002-2003. Use, modification and 4 | // distribution is subject to the Boost Software License, Version 5 | // 1.0. (See accompanying file LICENSE_1_0.txt or copy at 6 | // http://www.boost.org/LICENSE_1_0.txt) 7 | 8 | // For more information, see http://www.boost.org 9 | 10 | #define BOOST_FUNCTION_NUM_ARGS 10 11 | #include 12 | #undef BOOST_FUNCTION_NUM_ARGS 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/function/function2.hpp: -------------------------------------------------------------------------------- 1 | // Boost.Function library 2 | 3 | // Copyright Douglas Gregor 2002-2003. Use, modification and 4 | // distribution is subject to the Boost Software License, Version 5 | // 1.0. (See accompanying file LICENSE_1_0.txt or copy at 6 | // http://www.boost.org/LICENSE_1_0.txt) 7 | 8 | // For more information, see http://www.boost.org 9 | 10 | #define BOOST_FUNCTION_NUM_ARGS 2 11 | #include 12 | #undef BOOST_FUNCTION_NUM_ARGS 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/function/function3.hpp: -------------------------------------------------------------------------------- 1 | // Boost.Function library 2 | 3 | // Copyright Douglas Gregor 2002-2003. Use, modification and 4 | // distribution is subject to the Boost Software License, Version 5 | // 1.0. (See accompanying file LICENSE_1_0.txt or copy at 6 | // http://www.boost.org/LICENSE_1_0.txt) 7 | 8 | // For more information, see http://www.boost.org 9 | 10 | #define BOOST_FUNCTION_NUM_ARGS 3 11 | #include 12 | #undef BOOST_FUNCTION_NUM_ARGS 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/function/function4.hpp: -------------------------------------------------------------------------------- 1 | // Boost.Function library 2 | 3 | // Copyright Douglas Gregor 2002-2003. Use, modification and 4 | // distribution is subject to the Boost Software License, Version 5 | // 1.0. (See accompanying file LICENSE_1_0.txt or copy at 6 | // http://www.boost.org/LICENSE_1_0.txt) 7 | 8 | // For more information, see http://www.boost.org 9 | 10 | #define BOOST_FUNCTION_NUM_ARGS 4 11 | #include 12 | #undef BOOST_FUNCTION_NUM_ARGS 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/function/function5.hpp: -------------------------------------------------------------------------------- 1 | // Boost.Function library 2 | 3 | // Copyright Douglas Gregor 2002-2003. Use, modification and 4 | // distribution is subject to the Boost Software License, Version 5 | // 1.0. (See accompanying file LICENSE_1_0.txt or copy at 6 | // http://www.boost.org/LICENSE_1_0.txt) 7 | 8 | // For more information, see http://www.boost.org 9 | 10 | #define BOOST_FUNCTION_NUM_ARGS 5 11 | #include 12 | #undef BOOST_FUNCTION_NUM_ARGS 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/function/function6.hpp: -------------------------------------------------------------------------------- 1 | // Boost.Function library 2 | 3 | // Copyright Douglas Gregor 2002-2003. Use, modification and 4 | // distribution is subject to the Boost Software License, Version 5 | // 1.0. (See accompanying file LICENSE_1_0.txt or copy at 6 | // http://www.boost.org/LICENSE_1_0.txt) 7 | 8 | // For more information, see http://www.boost.org 9 | 10 | #define BOOST_FUNCTION_NUM_ARGS 6 11 | #include 12 | #undef BOOST_FUNCTION_NUM_ARGS 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/function/function7.hpp: -------------------------------------------------------------------------------- 1 | // Boost.Function library 2 | 3 | // Copyright Douglas Gregor 2002-2003. Use, modification and 4 | // distribution is subject to the Boost Software License, Version 5 | // 1.0. (See accompanying file LICENSE_1_0.txt or copy at 6 | // http://www.boost.org/LICENSE_1_0.txt) 7 | 8 | // For more information, see http://www.boost.org 9 | 10 | #define BOOST_FUNCTION_NUM_ARGS 7 11 | #include 12 | #undef BOOST_FUNCTION_NUM_ARGS 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/function/function8.hpp: -------------------------------------------------------------------------------- 1 | // Boost.Function library 2 | 3 | // Copyright Douglas Gregor 2002-2003. Use, modification and 4 | // distribution is subject to the Boost Software License, Version 5 | // 1.0. (See accompanying file LICENSE_1_0.txt or copy at 6 | // http://www.boost.org/LICENSE_1_0.txt) 7 | 8 | // For more information, see http://www.boost.org 9 | 10 | #define BOOST_FUNCTION_NUM_ARGS 8 11 | #include 12 | #undef BOOST_FUNCTION_NUM_ARGS 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/function/function9.hpp: -------------------------------------------------------------------------------- 1 | // Boost.Function library 2 | 3 | // Copyright Douglas Gregor 2002-2003. Use, modification and 4 | // distribution is subject to the Boost Software License, Version 5 | // 1.0. (See accompanying file LICENSE_1_0.txt or copy at 6 | // http://www.boost.org/LICENSE_1_0.txt) 7 | 8 | // For more information, see http://www.boost.org 9 | 10 | #define BOOST_FUNCTION_NUM_ARGS 9 11 | #include 12 | #undef BOOST_FUNCTION_NUM_ARGS 13 | -------------------------------------------------------------------------------- /EasyProtocol/jsoncpp/include/json/json.h: -------------------------------------------------------------------------------- 1 | // Copyright 2007-2010 Baptiste Lepilleur 2 | // Distributed under MIT license, or public domain if desired and 3 | // recognized in your jurisdiction. 4 | // See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE 5 | 6 | #ifndef JSON_JSON_H_INCLUDED 7 | #define JSON_JSON_H_INCLUDED 8 | 9 | #include "autolink.h" 10 | #include "value.h" 11 | #include "reader.h" 12 | #include "writer.h" 13 | #include "features.h" 14 | 15 | #endif // JSON_JSON_H_INCLUDED 16 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/checked_delete.hpp: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2014 Glen Fernandes 3 | * 4 | * Distributed under the Boost Software License, Version 1.0. (See 5 | * accompanying file LICENSE_1_0.txt or copy at 6 | * http://www.boost.org/LICENSE_1_0.txt) 7 | */ 8 | 9 | #ifndef BOOST_CHECKED_DELETE_HPP 10 | #define BOOST_CHECKED_DELETE_HPP 11 | 12 | // The header file at this path is deprecated; 13 | // use boost/core/checked_delete.hpp instead. 14 | 15 | #include 16 | 17 | #endif 18 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/smart_ptr/make_unique.hpp: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2014 Glen Joseph Fernandes 3 | * glenfe at live dot com 4 | * 5 | * Distributed under the Boost Software License, 6 | * Version 1.0. (See accompanying file LICENSE_1_0.txt 7 | * or copy at http://boost.org/LICENSE_1_0.txt) 8 | */ 9 | #ifndef BOOST_SMART_PTR_MAKE_UNIQUE_HPP 10 | #define BOOST_SMART_PTR_MAKE_UNIQUE_HPP 11 | 12 | #include 13 | #include 14 | 15 | #endif 16 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/utility/addressof.hpp: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2014 Glen Fernandes 3 | * 4 | * Distributed under the Boost Software License, Version 1.0. (See 5 | * accompanying file LICENSE_1_0.txt or copy at 6 | * http://www.boost.org/LICENSE_1_0.txt) 7 | */ 8 | 9 | #ifndef BOOST_UTILITY_ADDRESSOF_HPP 10 | #define BOOST_UTILITY_ADDRESSOF_HPP 11 | 12 | // The header file at this path is deprecated; 13 | // use boost/core/addressof.hpp instead. 14 | 15 | #include 16 | 17 | #endif 18 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/utility/enable_if.hpp: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2014 Glen Fernandes 3 | * 4 | * Distributed under the Boost Software License, Version 1.0. (See 5 | * accompanying file LICENSE_1_0.txt or copy at 6 | * http://www.boost.org/LICENSE_1_0.txt) 7 | */ 8 | 9 | #ifndef BOOST_UTILITY_ENABLE_IF_HPP 10 | #define BOOST_UTILITY_ENABLE_IF_HPP 11 | 12 | // The header file at this path is deprecated; 13 | // use boost/core/enable_if.hpp instead. 14 | 15 | #include 16 | 17 | #endif 18 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/home/karma/action.hpp: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2001-2011 Hartmut Kaiser 2 | // 3 | // Distributed under the Boost Software License, Version 1.0. (See accompanying 4 | // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 5 | 6 | #if !defined(BOOST_SPIRIT_KARMA_ACTION_MAR_04_2007_0912AM) 7 | #define BOOST_SPIRIT_KARMA_ACTION_MAR_04_2007_0912AM 8 | 9 | #if defined(_MSC_VER) 10 | #pragma once 11 | #endif 12 | 13 | #include 14 | 15 | #endif 16 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/filesystem/exception.hpp: -------------------------------------------------------------------------------- 1 | // boost/filesystem/exception.hpp -----------------------------------------------------// 2 | 3 | // Copyright Beman Dawes 2003 4 | // Use, modification, and distribution is subject to the Boost Software 5 | // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at 6 | // http://www.boost.org/LICENSE_1_0.txt) 7 | 8 | // This header is no longer used. The contents have been moved to path.hpp. 9 | // It is provided so that user code #includes do not have to be changed. 10 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/mpl/end.hpp: -------------------------------------------------------------------------------- 1 | 2 | #ifndef BOOST_MPL_END_HPP_INCLUDED 3 | #define BOOST_MPL_END_HPP_INCLUDED 4 | 5 | // Copyright Aleksey Gurtovoy 2004 6 | // 7 | // Distributed under the Boost Software License, Version 1.0. 8 | // (See accompanying file LICENSE_1_0.txt or copy at 9 | // http://www.boost.org/LICENSE_1_0.txt) 10 | // 11 | // See http://www.boost.org/libs/mpl for documentation. 12 | 13 | // $Id$ 14 | // $Date$ 15 | // $Revision$ 16 | 17 | #include 18 | 19 | #endif // BOOST_MPL_END_HPP_INCLUDED 20 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/mpl/max.hpp: -------------------------------------------------------------------------------- 1 | 2 | #ifndef BOOST_MPL_MAX_HPP_INCLUDED 3 | #define BOOST_MPL_MAX_HPP_INCLUDED 4 | 5 | // Copyright Aleksey Gurtovoy 2004 6 | // 7 | // Distributed under the Boost Software License, Version 1.0. 8 | // (See accompanying file LICENSE_1_0.txt or copy at 9 | // http://www.boost.org/LICENSE_1_0.txt) 10 | // 11 | // See http://www.boost.org/libs/mpl for documentation. 12 | 13 | // $Id$ 14 | // $Date$ 15 | // $Revision$ 16 | 17 | #include 18 | 19 | #endif // BOOST_MPL_MAX_HPP_INCLUDED 20 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/mpl/min.hpp: -------------------------------------------------------------------------------- 1 | 2 | #ifndef BOOST_MPL_MIN_HPP_INCLUDED 3 | #define BOOST_MPL_MIN_HPP_INCLUDED 4 | 5 | // Copyright Aleksey Gurtovoy 2004 6 | // 7 | // Distributed under the Boost Software License, Version 1.0. 8 | // (See accompanying file LICENSE_1_0.txt or copy at 9 | // http://www.boost.org/LICENSE_1_0.txt) 10 | // 11 | // See http://www.boost.org/libs/mpl for documentation. 12 | 13 | // $Id$ 14 | // $Date$ 15 | // $Revision$ 16 | 17 | #include 18 | 19 | #endif // BOOST_MPL_MIN_HPP_INCLUDED 20 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/config/platform/amigaos.hpp: -------------------------------------------------------------------------------- 1 | // (C) Copyright John Maddock 2002. 2 | // Use, modification and distribution are subject to the 3 | // Boost Software License, Version 1.0. (See accompanying file 4 | // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 5 | 6 | // See http://www.boost.org for most recent version. 7 | 8 | #define BOOST_PLATFORM "AmigaOS" 9 | 10 | #define BOOST_DISABLE_THREADS 11 | #define BOOST_NO_CWCHAR 12 | #define BOOST_NO_STD_WSTRING 13 | #define BOOST_NO_INTRINSIC_WCHAR_T 14 | 15 | 16 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/mpl/next.hpp: -------------------------------------------------------------------------------- 1 | 2 | #ifndef BOOST_MPL_NEXT_HPP_INCLUDED 3 | #define BOOST_MPL_NEXT_HPP_INCLUDED 4 | 5 | // Copyright Aleksey Gurtovoy 2004 6 | // 7 | // Distributed under the Boost Software License, Version 1.0. 8 | // (See accompanying file LICENSE_1_0.txt or copy at 9 | // http://www.boost.org/LICENSE_1_0.txt) 10 | // 11 | // See http://www.boost.org/libs/mpl for documentation. 12 | 13 | // $Id$ 14 | // $Date$ 15 | // $Revision$ 16 | 17 | #include 18 | 19 | #endif // BOOST_MPL_NEXT_HPP_INCLUDED 20 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/detail/lightweight_test.hpp: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2014 Glen Fernandes 3 | * 4 | * Distributed under the Boost Software License, Version 1.0. (See 5 | * accompanying file LICENSE_1_0.txt or copy at 6 | * http://www.boost.org/LICENSE_1_0.txt) 7 | */ 8 | 9 | #ifndef BOOST_DETAIL_LIGHTWEIGHT_TEST_HPP 10 | #define BOOST_DETAIL_LIGHTWEIGHT_TEST_HPP 11 | 12 | // The header file at this path is deprecated; 13 | // use boost/core/lightweight_test.hpp instead. 14 | 15 | #include 16 | 17 | #endif 18 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/mpl/begin.hpp: -------------------------------------------------------------------------------- 1 | 2 | #ifndef BOOST_MPL_BEGIN_HPP_INCLUDED 3 | #define BOOST_MPL_BEGIN_HPP_INCLUDED 4 | 5 | // Copyright Aleksey Gurtovoy 2004 6 | // 7 | // Distributed under the Boost Software License, Version 1.0. 8 | // (See accompanying file LICENSE_1_0.txt or copy at 9 | // http://www.boost.org/LICENSE_1_0.txt) 10 | // 11 | // See http://www.boost.org/libs/mpl for documentation. 12 | 13 | // $Id$ 14 | // $Date$ 15 | // $Revision$ 16 | 17 | #include 18 | 19 | #endif // BOOST_MPL_BEGIN_HPP_INCLUDED 20 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/mpl/prior.hpp: -------------------------------------------------------------------------------- 1 | 2 | #ifndef BOOST_MPL_PRIOR_HPP_INCLUDED 3 | #define BOOST_MPL_PRIOR_HPP_INCLUDED 4 | 5 | // Copyright Aleksey Gurtovoy 2004 6 | // 7 | // Distributed under the Boost Software License, Version 1.0. 8 | // (See accompanying file LICENSE_1_0.txt or copy at 9 | // http://www.boost.org/LICENSE_1_0.txt) 10 | // 11 | // See http://www.boost.org/libs/mpl for documentation. 12 | 13 | // $Id$ 14 | // $Date$ 15 | // $Revision$ 16 | 17 | #include 18 | 19 | #endif // BOOST_MPL_PRIOR_HPP_INCLUDED 20 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/detail/scoped_enum_emulation.hpp: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2014 Andrey Semashev 3 | * 4 | * Distributed under the Boost Software License, Version 1.0. (See 5 | * accompanying file LICENSE_1_0.txt or copy at 6 | * http://www.boost.org/LICENSE_1_0.txt) 7 | */ 8 | 9 | #ifndef BOOST_DETAIL_SCOPED_ENUM_EMULATION_HPP 10 | #define BOOST_DETAIL_SCOPED_ENUM_EMULATION_HPP 11 | 12 | // The header file at this path is deprecated; 13 | // use boost/core/scoped_enum.hpp instead. 14 | 15 | #include 16 | 17 | #endif 18 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/iterator_adaptors.hpp: -------------------------------------------------------------------------------- 1 | // Copyright David Abrahams 2004. Distributed under the Boost 2 | // Software License, Version 1.0. (See accompanying 3 | // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 4 | 5 | // See www.boost.org/libs/iterator for documentation. 6 | 7 | #ifndef ITERATOR_ADAPTORS_DWA2004725_HPP 8 | # define ITERATOR_ADAPTORS_DWA2004725_HPP 9 | 10 | #define BOOST_ITERATOR_ADAPTORS_VERSION 0x0200 11 | #include 12 | 13 | #endif // ITERATOR_ADAPTORS_DWA2004725_HPP 14 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/move/detail/config_end.hpp: -------------------------------------------------------------------------------- 1 | ////////////////////////////////////////////////////////////////////////////// 2 | // 3 | // (C) Copyright Ion Gaztanaga 2012-2012. Distributed under the Boost 4 | // Software License, Version 1.0. (See accompanying file 5 | // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 6 | // 7 | // See http://www.boost.org/libs/move for documentation. 8 | // 9 | ////////////////////////////////////////////////////////////////////////////// 10 | #if defined BOOST_MSVC 11 | # pragma warning (pop) 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/type_traits/detail/size_t_trait_undef.hpp: -------------------------------------------------------------------------------- 1 | 2 | // NO INCLUDE GUARDS, THE HEADER IS INTENDED FOR MULTIPLE INCLUSION 3 | 4 | // Copyright Aleksey Gurtovoy 2002-2004 5 | // 6 | // Distributed under the Boost Software License, Version 1.0. 7 | // (See accompanying file LICENSE_1_0.txt or copy at 8 | // http://www.boost.org/LICENSE_1_0.txt) 9 | 10 | // $Source$ 11 | // $Date$ 12 | // $Revision$ 13 | 14 | #undef BOOST_TT_AUX_SIZE_T_TRAIT_DEF1 15 | #undef BOOST_TT_AUX_SIZE_T_TRAIT_SPEC1 16 | #undef BOOST_TT_AUX_SIZE_T_TRAIT_PARTIAL_SPEC1_1 17 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/config/platform/cray.hpp: -------------------------------------------------------------------------------- 1 | // (C) Copyright John Maddock 2011. 2 | // Use, modification and distribution are subject to the 3 | // Boost Software License, Version 1.0. (See accompanying file 4 | // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 5 | 6 | 7 | // See http://www.boost.org for most recent version. 8 | 9 | // SGI Irix specific config options: 10 | 11 | #define BOOST_PLATFORM "Cray" 12 | 13 | // boilerplate code: 14 | #define BOOST_HAS_UNISTD_H 15 | #include 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/mpl/alias.hpp: -------------------------------------------------------------------------------- 1 | 2 | #ifndef BOOST_MPL_ALIAS_HPP_INCLUDED 3 | #define BOOST_MPL_ALIAS_HPP_INCLUDED 4 | 5 | // Copyright Aleksey Gurtovoy 2000-2004 6 | // 7 | // Distributed under the Boost Software License, Version 1.0. 8 | // (See accompanying file LICENSE_1_0.txt or copy at 9 | // http://www.boost.org/LICENSE_1_0.txt) 10 | // 11 | // See http://www.boost.org/libs/mpl for documentation. 12 | 13 | // $Id$ 14 | // $Date$ 15 | // $Revision$ 16 | 17 | namespace { 18 | namespace mpl = boost::mpl; 19 | } 20 | 21 | #endif // BOOST_MPL_ALIAS_HPP_INCLUDED 22 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/detail/no_exceptions_support.hpp: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2014 Glen Fernandes 3 | * 4 | * Distributed under the Boost Software License, Version 1.0. (See 5 | * accompanying file LICENSE_1_0.txt or copy at 6 | * http://www.boost.org/LICENSE_1_0.txt) 7 | */ 8 | 9 | #ifndef BOOST_DETAIL_NO_EXCEPTIONS_SUPPORT_HPP 10 | #define BOOST_DETAIL_NO_EXCEPTIONS_SUPPORT_HPP 11 | 12 | // The header file at this path is deprecated; 13 | // use boost/core/no_exceptions_support.hpp instead. 14 | 15 | #include 16 | 17 | #endif 18 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/iterator.hpp: -------------------------------------------------------------------------------- 1 | // (C) Copyright Beman Dawes 2000. Distributed under the Boost 2 | // Software License, Version 1.0. (See accompanying file 3 | // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 4 | 5 | #ifndef BOOST_ITERATOR_HPP 6 | #define BOOST_ITERATOR_HPP 7 | 8 | // This header is obsolete and will be deprecated. 9 | 10 | #include 11 | #include // std::ptrdiff_t 12 | 13 | namespace boost 14 | { 15 | 16 | using std::iterator; 17 | 18 | } // namespace boost 19 | 20 | #endif // BOOST_ITERATOR_HPP 21 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/predef/library/c.h: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright Rene Rivera 2008-2012 3 | Distributed under the Boost Software License, Version 1.0. 4 | (See accompanying file LICENSE_1_0.txt or copy at 5 | http://www.boost.org/LICENSE_1_0.txt) 6 | */ 7 | 8 | #ifndef BOOST_PREDEF_LIBRARY_C_H 9 | #define BOOST_PREDEF_LIBRARY_C_H 10 | 11 | #include 12 | 13 | #include 14 | #include 15 | #include 16 | #include 17 | 18 | #endif 19 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/home/karma/char.hpp: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2001-2011 Hartmut Kaiser 2 | // 3 | // Distributed under the Boost Software License, Version 1.0. (See accompanying 4 | // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 5 | 6 | #if !defined(BOOST_SPIRIT_KARMA_CHAR_FEB_21_2007_0547PM) 7 | #define BOOST_SPIRIT_KARMA_CHAR_FEB_21_2007_0547PM 8 | 9 | #if defined(_MSC_VER) 10 | #pragma once 11 | #endif 12 | 13 | #include 14 | #include 15 | 16 | #endif 17 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/container/detail/config_end.hpp: -------------------------------------------------------------------------------- 1 | ////////////////////////////////////////////////////////////////////////////// 2 | // 3 | // (C) Copyright Ion Gaztanaga 2005-2013. Distributed under the Boost 4 | // Software License, Version 1.0. (See accompanying file 5 | // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 6 | // 7 | // See http://www.boost.org/libs/container for documentation. 8 | // 9 | ////////////////////////////////////////////////////////////////////////////// 10 | #if defined BOOST_MSVC 11 | #pragma warning (pop) 12 | #endif 13 | 14 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/home/karma/auto.hpp: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2001-2011 Hartmut Kaiser 2 | // 3 | // Distributed under the Boost Software License, Version 1.0. (See accompanying 4 | // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 5 | 6 | #if !defined(BOOST_SPIRIT_KARMA_AUTO_NOV_29_2009_0324PM) 7 | #define BOOST_SPIRIT_KARMA_AUTO_NOV_29_2009_0324PM 8 | 9 | #if defined(_MSC_VER) 10 | #pragma once 11 | #endif 12 | 13 | #include 14 | #include 15 | 16 | #endif 17 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/home/karma/string.hpp: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2001-2011 Hartmut Kaiser 2 | // 3 | // Distributed under the Boost Software License, Version 1.0. (See accompanying 4 | // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 5 | 6 | #if !defined(BOOST_SPIRIT_KARMA_STRING_FEB_23_2007_0156PM) 7 | #define BOOST_SPIRIT_KARMA_STRING_FEB_23_2007_0156PM 8 | 9 | #if defined(_MSC_VER) 10 | #pragma once 11 | #endif 12 | 13 | #include 14 | #include 15 | 16 | #endif 17 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/home/qi/match.hpp: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2001-2011 Hartmut Kaiser 2 | // 3 | // Distributed under the Boost Software License, Version 1.0. (See accompanying 4 | // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 5 | 6 | #if !defined(BOOST_SPIRIT_QI_MATCH_DEC_02_2009_0749PM) 7 | #define BOOST_SPIRIT_QI_MATCH_DEC_02_2009_0749PM 8 | 9 | #if defined(_MSC_VER) 10 | #pragma once 11 | #endif 12 | 13 | #include 14 | #include 15 | 16 | #endif 17 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/type.hpp: -------------------------------------------------------------------------------- 1 | // (C) Copyright David Abrahams 2001. 2 | // Distributed under the Boost Software License, Version 1.0. (See 3 | // accompanying file LICENSE_1_0.txt or copy at 4 | // http://www.boost.org/LICENSE_1_0.txt) 5 | 6 | #ifndef BOOST_TYPE_DWA20010120_HPP 7 | # define BOOST_TYPE_DWA20010120_HPP 8 | 9 | namespace boost { 10 | 11 | // Just a simple "type envelope". Useful in various contexts, mostly to work 12 | // around some MSVC deficiencies. 13 | template 14 | struct type {}; 15 | 16 | } 17 | 18 | #endif // BOOST_TYPE_DWA20010120_HPP 19 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/type_traits/transform_traits_spec.hpp: -------------------------------------------------------------------------------- 1 | 2 | // Copyright 2001 Aleksey Gurtovoy. 3 | // Use, modification and distribution are subject to the Boost Software License, 4 | // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at 5 | // http://www.boost.org/LICENSE_1_0.txt). 6 | // 7 | // See http://www.boost.org/libs/type_traits for most recent version including documentation. 8 | 9 | #ifndef BOOST_TT_TRANSFORM_TRAITS_HPP_INCLUDED 10 | #define BOOST_TT_TRANSFORM_TRAITS_HPP_INCLUDED 11 | 12 | #include 13 | 14 | #endif 15 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/typeof/std/utility.hpp: -------------------------------------------------------------------------------- 1 | // Copyright (C) 2005 Arkadiy Vertleyb, Peder Holt. 2 | // Use, modification and distribution is subject to the Boost Software 3 | // License, Version 1.0. (http://www.boost.org/LICENSE_1_0.txt) 4 | 5 | #ifndef BOOST_TYPEOF_STD_utility_hpp_INCLUDED 6 | #define BOOST_TYPEOF_STD_utility_hpp_INCLUDED 7 | 8 | #include 9 | #include 10 | 11 | #include BOOST_TYPEOF_INCREMENT_REGISTRATION_GROUP() 12 | 13 | BOOST_TYPEOF_REGISTER_TEMPLATE(std::pair, 2) 14 | 15 | #endif//BOOST_TYPEOF_STD_utility_hpp_INCLUDED 16 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/weak_ptr.hpp: -------------------------------------------------------------------------------- 1 | #ifndef BOOST_WEAK_PTR_HPP_INCLUDED 2 | #define BOOST_WEAK_PTR_HPP_INCLUDED 3 | 4 | // 5 | // weak_ptr.hpp 6 | // 7 | // Copyright (c) 2001, 2002, 2003 Peter Dimov 8 | // 9 | // Distributed under the Boost Software License, Version 1.0. 10 | // See accompanying file LICENSE_1_0.txt or copy at 11 | // http://www.boost.org/LICENSE_1_0.txt 12 | // 13 | // See http://www.boost.org/libs/smart_ptr/weak_ptr.htm for documentation. 14 | // 15 | 16 | #include 17 | 18 | #endif // #ifndef BOOST_WEAK_PTR_HPP_INCLUDED 19 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/predef.h: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright Rene Rivera 2008-2013 3 | Distributed under the Boost Software License, Version 1.0. 4 | (See accompanying file LICENSE_1_0.txt or copy at 5 | http://www.boost.org/LICENSE_1_0.txt) 6 | */ 7 | 8 | #ifndef BOOST_PREDEF_H 9 | #define BOOST_PREDEF_H 10 | 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | #include 17 | #include 18 | 19 | #endif 20 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/scoped_ptr.hpp: -------------------------------------------------------------------------------- 1 | #ifndef BOOST_SCOPED_PTR_HPP_INCLUDED 2 | #define BOOST_SCOPED_PTR_HPP_INCLUDED 3 | 4 | // (C) Copyright Greg Colvin and Beman Dawes 1998, 1999. 5 | // Copyright (c) 2001, 2002 Peter Dimov 6 | // 7 | // Distributed under the Boost Software License, Version 1.0. (See 8 | // accompanying file LICENSE_1_0.txt or copy at 9 | // http://www.boost.org/LICENSE_1_0.txt) 10 | // 11 | // http://www.boost.org/libs/smart_ptr/scoped_ptr.htm 12 | // 13 | 14 | #include 15 | 16 | #endif // #ifndef BOOST_SCOPED_PTR_HPP_INCLUDED 17 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/home/karma/binary.hpp: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2001-2011 Hartmut Kaiser 2 | // 3 | // Distributed under the Boost Software License, Version 1.0. (See accompanying 4 | // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 5 | 6 | #if !defined(BOOST_SPIRIT_KARMA_BINARY_MAY_04_2007_0859AM) 7 | #define BOOST_SPIRIT_KARMA_BINARY_MAY_04_2007_0859AM 8 | 9 | #if defined(_MSC_VER) 10 | #pragma once 11 | #endif 12 | 13 | #include 14 | #include 15 | 16 | #endif 17 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/typeof/std/complex.hpp: -------------------------------------------------------------------------------- 1 | // Copyright (C) 2005 Arkadiy Vertleyb, Peder Holt. 2 | // Use, modification and distribution is subject to the Boost Software 3 | // License, Version 1.0. (http://www.boost.org/LICENSE_1_0.txt) 4 | 5 | #ifndef BOOST_TYPEOF_STD_complex_hpp_INCLUDED 6 | #define BOOST_TYPEOF_STD_complex_hpp_INCLUDED 7 | 8 | #include 9 | #include 10 | 11 | #include BOOST_TYPEOF_INCREMENT_REGISTRATION_GROUP() 12 | 13 | BOOST_TYPEOF_REGISTER_TEMPLATE(std::complex, 1) 14 | 15 | #endif//BOOST_TYPEOF_STD_complex_hpp_INCLUDED 16 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/utility/explicit_operator_bool.hpp: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2014 Glen Fernandes 3 | * 4 | * Distributed under the Boost Software License, Version 1.0. (See 5 | * accompanying file LICENSE_1_0.txt or copy at 6 | * http://www.boost.org/LICENSE_1_0.txt) 7 | */ 8 | 9 | #ifndef BOOST_UTILITY_EXPLICIT_OPERATOR_BOOL_HPP 10 | #define BOOST_UTILITY_EXPLICIT_OPERATOR_BOOL_HPP 11 | 12 | // The header file at this path is deprecated; 13 | // use boost/core/explicit_operator_bool.hpp instead. 14 | 15 | #include 16 | 17 | #endif 18 | -------------------------------------------------------------------------------- /EasyProtocol/jsoncpp/include/json/version.h: -------------------------------------------------------------------------------- 1 | // DO NOT EDIT. This file (and "version") is generated by CMake. 2 | // Run CMake configure step to update it. 3 | #ifndef JSON_VERSION_H_INCLUDED 4 | # define JSON_VERSION_H_INCLUDED 5 | 6 | # define JSONCPP_VERSION_STRING "1.6.5" 7 | # define JSONCPP_VERSION_MAJOR 1 8 | # define JSONCPP_VERSION_MINOR 6 9 | # define JSONCPP_VERSION_PATCH 5 10 | # define JSONCPP_VERSION_QUALIFIER 11 | # define JSONCPP_VERSION_HEXA ((JSONCPP_VERSION_MAJOR << 24) | (JSONCPP_VERSION_MINOR << 16) | (JSONCPP_VERSION_PATCH << 8)) 12 | 13 | #endif // JSON_VERSION_H_INCLUDED 14 | -------------------------------------------------------------------------------- /EasyRMS/APIModules/EasyRecordModule/EasyRecordModule.h: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2013-2015 EasyDarwin.ORG. All rights reserved. 3 | Github: https://github.com/EasyDarwin 4 | WEChat: EasyDarwin 5 | Website: http://www.easydarwin.org 6 | */ 7 | /* 8 | File: EasyRecordModule.h 9 | Contains: EasyDarwin Record Module 10 | */ 11 | 12 | #ifndef _EASYHLSMODULE_H_ 13 | #define _EASYHLSMODULE_H_ 14 | 15 | #include "QTSS.h" 16 | 17 | extern "C" 18 | { 19 | EXPORT QTSS_Error EasyRecordModule_Main(void* inPrivateArgs); 20 | } 21 | 22 | #endif //_EASYHLSMODULE_H_ 23 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/home/karma/stream.hpp: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2001-2011 Hartmut Kaiser 2 | // 3 | // Distributed under the Boost Software License, Version 1.0. (See accompanying 4 | // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 5 | 6 | #if !defined(BOOST_SPIRIT_KARMA_STREAM_MAY_01_2007_1254AM) 7 | #define BOOST_SPIRIT_KARMA_STREAM_MAY_01_2007_1254AM 8 | 9 | #if defined(_MSC_VER) 10 | #pragma once 11 | #endif 12 | 13 | #include 14 | #include 15 | 16 | #endif 17 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/type_traits/broken_compiler_spec.hpp: -------------------------------------------------------------------------------- 1 | 2 | // Copyright 2001-2003 Aleksey Gurtovoy. 3 | // Use, modification and distribution are subject to the Boost Software License, 4 | // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at 5 | // http://www.boost.org/LICENSE_1_0.txt). 6 | // 7 | // See http://www.boost.org/libs/type_traits for most recent version including documentation. 8 | 9 | #ifndef BOOST_TT_BROKEN_COMPILER_SPEC_HPP_INCLUDED 10 | #define BOOST_TT_BROKEN_COMPILER_SPEC_HPP_INCLUDED 11 | 12 | #include 13 | 14 | #endif 15 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/home/karma/format.hpp: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2001-2011 Hartmut Kaiser 2 | // 3 | // Distributed under the Boost Software License, Version 1.0. (See accompanying 4 | // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 5 | 6 | #if !defined(BOOST_SPIRIT_KARMA_FORMAT_DEC_01_2009_0716AM) 7 | #define BOOST_SPIRIT_KARMA_FORMAT_DEC_01_2009_0716AM 8 | 9 | #if defined(_MSC_VER) 10 | #pragma once 11 | #endif 12 | 13 | #include 14 | #include 15 | 16 | #endif 17 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/home/qi/match_auto.hpp: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2001-2011 Hartmut Kaiser 2 | // 3 | // Distributed under the Boost Software License, Version 1.0. (See accompanying 4 | // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 5 | 6 | #if !defined(BOOST_SPIRIT_QI_MATCH_AUTO_DEC_02_2009_0750PM) 7 | #define BOOST_SPIRIT_QI_MATCH_AUTO_DEC_02_2009_0750PM 8 | 9 | #if defined(_MSC_VER) 10 | #pragma once 11 | #endif 12 | 13 | #include 14 | #include 15 | 16 | #endif 17 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/home/lex/primitives.hpp: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2001-2010 Hartmut Kaiser 2 | // 3 | // Distributed under the Boost Software License, Version 1.0. (See accompanying 4 | // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 5 | 6 | #if !defined(BOOST_SPIRIT_LEXER_PRIMITIVES_SEP_12_2009_0234PM) 7 | #define BOOST_SPIRIT_LEXER_PRIMITIVES_SEP_12_2009_0234PM 8 | 9 | #if defined(_MSC_VER) 10 | #pragma once 11 | #endif 12 | 13 | #include 14 | #include 15 | 16 | #endif 17 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/type_traits/aligned_storage.hpp: -------------------------------------------------------------------------------- 1 | 2 | // Copyright (C) John Maddock 2005. 3 | // Use, modification and distribution are subject to the Boost Software License, 4 | // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at 5 | // http://www.boost.org/LICENSE_1_0.txt). 6 | // 7 | // See http://www.boost.org/libs/type_traits for most recent version including documentation. 8 | 9 | #ifndef BOOST_TT_ALIGNED_STORAGE_HPP_INCLUDED 10 | # define BOOST_TT_ALIGNED_STORAGE_HPP_INCLUDED 11 | # include 12 | #endif // BOOST_TT_ALIGNED_STORAGE_HPP_INCLUDED 13 | 14 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/typeof/std/bitset.hpp: -------------------------------------------------------------------------------- 1 | // Copyright (C) 2005 Arkadiy Vertleyb, Peder Holt. 2 | // Use, modification and distribution is subject to the Boost Software 3 | // License, Version 1.0. (http://www.boost.org/LICENSE_1_0.txt) 4 | 5 | #ifndef BOOST_TYPEOF_STD_bitset_hpp_INCLUDED 6 | #define BOOST_TYPEOF_STD_bitset_hpp_INCLUDED 7 | 8 | #include 9 | #include 10 | 11 | #include BOOST_TYPEOF_INCREMENT_REGISTRATION_GROUP() 12 | 13 | BOOST_TYPEOF_REGISTER_TEMPLATE(std::bitset, (BOOST_TYPEOF_INTEGRAL(std::size_t))) 14 | 15 | #endif//BOOST_TYPEOF_STD_bitset_hpp_INCLUDED 16 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/home/karma/format_auto.hpp: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2001-2011 Hartmut Kaiser 2 | // 3 | // Distributed under the Boost Software License, Version 1.0. (See accompanying 4 | // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 5 | 6 | #if !defined(BOOST_SPIRIT_KARMA_FORMAT_AUTO_DEC_02_2009_1248PM) 7 | #define BOOST_SPIRIT_KARMA_FORMAT_AUTO_DEC_02_2009_1248PM 8 | 9 | #if defined(_MSC_VER) 10 | #pragma once 11 | #endif 12 | 13 | #include 14 | #include 15 | 16 | #endif 17 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/repository/home/karma/directive.hpp: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2001-2011 Hartmut Kaiser 2 | // Copyright (c) 2001-2011 Joel de Guzman 3 | // 4 | // Distributed under the Boost Software License, Version 1.0. (See accompanying 5 | // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 6 | 7 | #if !defined(SPIRIT_REPOSITORY_KARMA_DIRECTIVE_APR_28_2009_1258PM) 8 | #define SPIRIT_REPOSITORY_KARMA_DIRECTIVE_APR_28_2009_1258PM 9 | 10 | #if defined(_MSC_VER) 11 | #pragma once 12 | #endif 13 | 14 | #include 15 | 16 | #endif 17 | 18 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/mpl/aux_/config/workaround.hpp: -------------------------------------------------------------------------------- 1 | 2 | #ifndef BOOST_MPL_AUX_CONFIG_WORKAROUND_HPP_INCLUDED 3 | #define BOOST_MPL_AUX_CONFIG_WORKAROUND_HPP_INCLUDED 4 | 5 | // Copyright Aleksey Gurtovoy 2002-2004 6 | // 7 | // Distributed under the Boost Software License, Version 1.0. 8 | // (See accompanying file LICENSE_1_0.txt or copy at 9 | // http://www.boost.org/LICENSE_1_0.txt) 10 | // 11 | // See http://www.boost.org/libs/mpl for documentation. 12 | 13 | // $Id$ 14 | // $Date$ 15 | // $Revision$ 16 | 17 | #include 18 | 19 | #endif // BOOST_MPL_AUX_CONFIG_WORKAROUND_HPP_INCLUDED 20 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/mpl/logical.hpp: -------------------------------------------------------------------------------- 1 | 2 | #ifndef BOOST_MPL_LOGICAL_HPP_INCLUDED 3 | #define BOOST_MPL_LOGICAL_HPP_INCLUDED 4 | 5 | // Copyright Aleksey Gurtovoy 2000-2004 6 | // 7 | // Distributed under the Boost Software License, Version 1.0. 8 | // (See accompanying file LICENSE_1_0.txt or copy at 9 | // http://www.boost.org/LICENSE_1_0.txt) 10 | // 11 | // See http://www.boost.org/libs/mpl for documentation. 12 | 13 | // $Id$ 14 | // $Date$ 15 | // $Revision$ 16 | 17 | #include 18 | #include 19 | #include 20 | 21 | #endif // BOOST_MPL_LOGICAL_HPP_INCLUDED 22 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/config/compiler/compaq_cxx.hpp: -------------------------------------------------------------------------------- 1 | // (C) Copyright John Maddock 2001 - 2003. 2 | // Use, modification and distribution are subject to the 3 | // Boost Software License, Version 1.0. (See accompanying file 4 | // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 5 | 6 | // See http://www.boost.org for most recent version. 7 | 8 | // Tru64 C++ compiler setup (now HP): 9 | 10 | #define BOOST_COMPILER "HP Tru64 C++ " BOOST_STRINGIZE(__DECCXX_VER) 11 | 12 | #include "boost/config/compiler/common_edg.hpp" 13 | 14 | // 15 | // versions check: 16 | // Nothing to do here? 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/mpl/aux_/config/msvc.hpp: -------------------------------------------------------------------------------- 1 | 2 | #ifndef BOOST_MPL_AUX_CONFIG_MSVC_HPP_INCLUDED 3 | #define BOOST_MPL_AUX_CONFIG_MSVC_HPP_INCLUDED 4 | 5 | // Copyright Aleksey Gurtovoy 2002-2004 6 | // 7 | // Distributed under the Boost Software License, Version 1.0. 8 | // (See accompanying file LICENSE_1_0.txt or copy at 9 | // http://www.boost.org/LICENSE_1_0.txt) 10 | // 11 | // See http://www.boost.org/libs/mpl for documentation. 12 | 13 | // $Id$ 14 | // $Date$ 15 | // $Revision$ 16 | 17 | 18 | // BOOST_MSVC is defined here: 19 | #include 20 | 21 | #endif // BOOST_MPL_AUX_CONFIG_MSVC_HPP_INCLUDED 22 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/mpl/less.hpp: -------------------------------------------------------------------------------- 1 | 2 | #ifndef BOOST_MPL_LESS_HPP_INCLUDED 3 | #define BOOST_MPL_LESS_HPP_INCLUDED 4 | 5 | // Copyright Aleksey Gurtovoy 2000-2004 6 | // 7 | // Distributed under the Boost Software License, Version 1.0. 8 | // (See accompanying file LICENSE_1_0.txt or copy at 9 | // http://www.boost.org/LICENSE_1_0.txt) 10 | // 11 | // See http://www.boost.org/libs/mpl for documentation. 12 | 13 | // $Id$ 14 | // $Date$ 15 | // $Revision$ 16 | 17 | #define AUX778076_OP_NAME less 18 | #define AUX778076_OP_TOKEN < 19 | #include 20 | 21 | #endif // BOOST_MPL_LESS_HPP_INCLUDED 22 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/mpl/plus.hpp: -------------------------------------------------------------------------------- 1 | 2 | #ifndef BOOST_MPL_PLUS_HPP_INCLUDED 3 | #define BOOST_MPL_PLUS_HPP_INCLUDED 4 | 5 | // Copyright Aleksey Gurtovoy 2000-2004 6 | // 7 | // Distributed under the Boost Software License, Version 1.0. 8 | // (See accompanying file LICENSE_1_0.txt or copy at 9 | // http://www.boost.org/LICENSE_1_0.txt) 10 | // 11 | // See http://www.boost.org/libs/mpl for documentation. 12 | 13 | // $Id$ 14 | // $Date$ 15 | // $Revision$ 16 | 17 | #define AUX778076_OP_NAME plus 18 | #define AUX778076_OP_TOKEN + 19 | #include 20 | 21 | #endif // BOOST_MPL_PLUS_HPP_INCLUDED 22 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/optional.hpp: -------------------------------------------------------------------------------- 1 | // Copyright (C) 2003, Fernando Luis Cacciola Carballal. 2 | // 3 | // Use, modification, and distribution is subject to the Boost Software 4 | // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at 5 | // http://www.boost.org/LICENSE_1_0.txt) 6 | // 7 | // See http://www.boost.org/libs/optional for documentation. 8 | // 9 | // You are welcome to contact the author at: 10 | // fernando_cacciola@hotmail.com 11 | // 12 | #ifndef BOOST_OPTIONAL_FLC_19NOV2002_HPP 13 | #define BOOST_OPTIONAL_FLC_19NOV2002_HPP 14 | 15 | #include "boost/optional/optional.hpp" 16 | 17 | #endif 18 | 19 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/mpl/limits/map.hpp: -------------------------------------------------------------------------------- 1 | 2 | #ifndef BOOST_MPL_LIMITS_MAP_HPP_INCLUDED 3 | #define BOOST_MPL_LIMITS_MAP_HPP_INCLUDED 4 | 5 | // Copyright Aleksey Gurtovoy 2000-2004 6 | // 7 | // Distributed under the Boost Software License, Version 1.0. 8 | // (See accompanying file LICENSE_1_0.txt or copy at 9 | // http://www.boost.org/LICENSE_1_0.txt) 10 | // 11 | // See http://www.boost.org/libs/mpl for documentation. 12 | 13 | // $Id$ 14 | // $Date$ 15 | // $Revision$ 16 | 17 | #if !defined(BOOST_MPL_LIMIT_MAP_SIZE) 18 | # define BOOST_MPL_LIMIT_MAP_SIZE 20 19 | #endif 20 | 21 | #endif // BOOST_MPL_LIMITS_MAP_HPP_INCLUDED 22 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/mpl/limits/set.hpp: -------------------------------------------------------------------------------- 1 | 2 | #ifndef BOOST_MPL_LIMITS_SET_HPP_INCLUDED 3 | #define BOOST_MPL_LIMITS_SET_HPP_INCLUDED 4 | 5 | // Copyright Aleksey Gurtovoy 2000-2004 6 | // 7 | // Distributed under the Boost Software License, Version 1.0. 8 | // (See accompanying file LICENSE_1_0.txt or copy at 9 | // http://www.boost.org/LICENSE_1_0.txt) 10 | // 11 | // See http://www.boost.org/libs/mpl for documentation. 12 | 13 | // $Id$ 14 | // $Date$ 15 | // $Revision$ 16 | 17 | #if !defined(BOOST_MPL_LIMIT_SET_SIZE) 18 | # define BOOST_MPL_LIMIT_SET_SIZE 20 19 | #endif 20 | 21 | #endif // BOOST_MPL_LIMITS_SET_HPP_INCLUDED 22 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/mpl/minus.hpp: -------------------------------------------------------------------------------- 1 | 2 | #ifndef BOOST_MPL_MINUS_HPP_INCLUDED 3 | #define BOOST_MPL_MINUS_HPP_INCLUDED 4 | 5 | // Copyright Aleksey Gurtovoy 2000-2004 6 | // 7 | // Distributed under the Boost Software License, Version 1.0. 8 | // (See accompanying file LICENSE_1_0.txt or copy at 9 | // http://www.boost.org/LICENSE_1_0.txt) 10 | // 11 | // See http://www.boost.org/libs/mpl for documentation. 12 | 13 | // $Id$ 14 | // $Date$ 15 | // $Revision$ 16 | 17 | #define AUX778076_OP_NAME minus 18 | #define AUX778076_OP_TOKEN - 19 | #include 20 | 21 | #endif // BOOST_MPL_MINUS_HPP_INCLUDED 22 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/mpl/times.hpp: -------------------------------------------------------------------------------- 1 | 2 | #ifndef BOOST_MPL_TIMES_HPP_INCLUDED 3 | #define BOOST_MPL_TIMES_HPP_INCLUDED 4 | 5 | // Copyright Aleksey Gurtovoy 2000-2004 6 | // 7 | // Distributed under the Boost Software License, Version 1.0. 8 | // (See accompanying file LICENSE_1_0.txt or copy at 9 | // http://www.boost.org/LICENSE_1_0.txt) 10 | // 11 | // See http://www.boost.org/libs/mpl for documentation. 12 | 13 | // $Id$ 14 | // $Date$ 15 | // $Revision$ 16 | 17 | #define AUX778076_OP_NAME times 18 | #define AUX778076_OP_TOKEN * 19 | #include 20 | 21 | #endif // BOOST_MPL_TIMES_HPP_INCLUDED 22 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/range/iterator_range.hpp: -------------------------------------------------------------------------------- 1 | // Boost.Range library 2 | // 3 | // Copyright Neil Groves 2009. 4 | // Use, modification and distribution is subject to the Boost Software 5 | // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at 6 | // http://www.boost.org/LICENSE_1_0.txt) 7 | // 8 | // For more information, see http://www.boost.org/libs/range/ 9 | // 10 | #ifndef BOOST_RANGE_ITERATOR_RANGE_HPP_INCLUDED 11 | #define BOOST_RANGE_ITERATOR_RANGE_HPP_INCLUDED 12 | 13 | #include "boost/range/iterator_range_core.hpp" 14 | #include "boost/range/iterator_range_io.hpp" 15 | 16 | #endif // include guard 17 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/home/support/iterators/ostream_iterator.hpp: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2001-2011 Hartmut Kaiser 2 | // 3 | // Distributed under the Boost Software License, Version 1.0. (See accompanying 4 | // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 5 | 6 | #if !defined(BOOST_SPIRIT_OSTREAM_ITERATOR_JAN_13_2010_0211PM) 7 | #define BOOST_SPIRIT_OSTREAM_ITERATOR_JAN_13_2010_0211PM 8 | 9 | #include 10 | 11 | namespace boost { namespace spirit 12 | { 13 | typedef karma::ostream_iterator ostream_iterator; 14 | }} 15 | 16 | #endif 17 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/classic.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_CLASSIC 10 | #define BOOST_SPIRIT_INCLUDE_CLASSIC 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/phoenix.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2011 Joel de Guzman 3 | Copyright (c) 2001-2011 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_PHOENIX 10 | #define BOOST_SPIRIT_INCLUDE_PHOENIX 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/typeof/incr_registration_group.hpp: -------------------------------------------------------------------------------- 1 | // Copyright (C) 2004, 2005 Arkadiy Vertleyb 2 | // Use, modification and distribution is subject to the Boost Software 3 | // License, Version 1.0. (http://www.boost.org/LICENSE_1_0.txt) 4 | 5 | // Inclusion of this file increments BOOST_TYPEOF_REGISTRATION_GROUP 6 | // This method was suggested by Paul Mensonides 7 | 8 | #ifdef BOOST_TYPEOF_EMULATION 9 | # undef BOOST_TYPEOF_REGISTRATION_GROUP 10 | 11 | # include 12 | # include BOOST_PP_UPDATE_COUNTER() 13 | # define BOOST_TYPEOF_REGISTRATION_GROUP BOOST_PP_COUNTER 14 | #endif 15 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/mpl/limits/list.hpp: -------------------------------------------------------------------------------- 1 | 2 | #ifndef BOOST_MPL_LIMITS_LIST_HPP_INCLUDED 3 | #define BOOST_MPL_LIMITS_LIST_HPP_INCLUDED 4 | 5 | // Copyright Aleksey Gurtovoy 2000-2004 6 | // 7 | // Distributed under the Boost Software License, Version 1.0. 8 | // (See accompanying file LICENSE_1_0.txt or copy at 9 | // http://www.boost.org/LICENSE_1_0.txt) 10 | // 11 | // See http://www.boost.org/libs/mpl for documentation. 12 | 13 | // $Id$ 14 | // $Date$ 15 | // $Revision$ 16 | 17 | #if !defined(BOOST_MPL_LIMIT_LIST_SIZE) 18 | # define BOOST_MPL_LIMIT_LIST_SIZE 20 19 | #endif 20 | 21 | #endif // BOOST_MPL_LIMITS_LIST_HPP_INCLUDED 22 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/mpl/aux_/config/intel.hpp: -------------------------------------------------------------------------------- 1 | 2 | #ifndef BOOST_MPL_AUX_CONFIG_INTEL_HPP_INCLUDED 3 | #define BOOST_MPL_AUX_CONFIG_INTEL_HPP_INCLUDED 4 | 5 | // Copyright Aleksey Gurtovoy 2004 6 | // 7 | // Distributed under the Boost Software License, Version 1.0. 8 | // (See accompanying file LICENSE_1_0.txt or copy at 9 | // http://www.boost.org/LICENSE_1_0.txt) 10 | // 11 | // See http://www.boost.org/libs/mpl for documentation. 12 | 13 | // $Id$ 14 | // $Date$ 15 | // $Revision$ 16 | 17 | 18 | // BOOST_INTEL_CXX_VERSION is defined here: 19 | #include 20 | 21 | #endif // BOOST_MPL_AUX_CONFIG_INTEL_HPP_INCLUDED 22 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/mpl/divides.hpp: -------------------------------------------------------------------------------- 1 | 2 | #ifndef BOOST_MPL_DIVIDES_HPP_INCLUDED 3 | #define BOOST_MPL_DIVIDES_HPP_INCLUDED 4 | 5 | // Copyright Aleksey Gurtovoy 2000-2004 6 | // 7 | // Distributed under the Boost Software License, Version 1.0. 8 | // (See accompanying file LICENSE_1_0.txt or copy at 9 | // http://www.boost.org/LICENSE_1_0.txt) 10 | // 11 | // See http://www.boost.org/libs/mpl for documentation. 12 | 13 | // $Id$ 14 | // $Date$ 15 | // $Revision$ 16 | 17 | #define AUX778076_OP_NAME divides 18 | #define AUX778076_OP_TOKEN / 19 | #include 20 | 21 | #endif // BOOST_MPL_DIVIDES_HPP_INCLUDED 22 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/mpl/greater.hpp: -------------------------------------------------------------------------------- 1 | 2 | #ifndef BOOST_MPL_GREATER_HPP_INCLUDED 3 | #define BOOST_MPL_GREATER_HPP_INCLUDED 4 | 5 | // Copyright Aleksey Gurtovoy 2000-2004 6 | // 7 | // Distributed under the Boost Software License, Version 1.0. 8 | // (See accompanying file LICENSE_1_0.txt or copy at 9 | // http://www.boost.org/LICENSE_1_0.txt) 10 | // 11 | // See http://www.boost.org/libs/mpl for documentation. 12 | 13 | // $Id$ 14 | // $Date$ 15 | // $Revision$ 16 | 17 | #define AUX778076_OP_NAME greater 18 | #define AUX778076_OP_TOKEN > 19 | #include 20 | 21 | #endif // BOOST_MPL_GREATER_HPP_INCLUDED 22 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/mpl/int.hpp: -------------------------------------------------------------------------------- 1 | 2 | #ifndef BOOST_MPL_INT_HPP_INCLUDED 3 | #define BOOST_MPL_INT_HPP_INCLUDED 4 | 5 | // Copyright Aleksey Gurtovoy 2000-2004 6 | // 7 | // Distributed under the Boost Software License, Version 1.0. 8 | // (See accompanying file LICENSE_1_0.txt or copy at 9 | // http://www.boost.org/LICENSE_1_0.txt) 10 | // 11 | // See http://www.boost.org/libs/mpl for documentation. 12 | 13 | // $Id$ 14 | // $Date$ 15 | // $Revision$ 16 | 17 | #include 18 | 19 | #define AUX_WRAPPER_VALUE_TYPE int 20 | #include 21 | 22 | #endif // BOOST_MPL_INT_HPP_INCLUDED 23 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/repository/home/qi/operator.hpp: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2001-2011 Hartmut Kaiser 2 | // Copyright (c) 2001-2011 Joel de Guzman 3 | // Copyright (c) 2011 Thomas Bernard 4 | // 5 | // Distributed under the Boost Software License, Version 1.0. (See accompanying 6 | // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 7 | 8 | #if !defined(SPIRIT_REPOSITORY_QI_OPERATOR_OCT_20_2010_1258PM) 9 | #define SPIRIT_REPOSITORY_QI_OPERATOR_OCT_20_2010_1258PM 10 | 11 | #if defined(_MSC_VER) 12 | #pragma once 13 | #endif 14 | 15 | #include 16 | #endif 17 | 18 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/detail/iterator.hpp: -------------------------------------------------------------------------------- 1 | // (C) Copyright David Abrahams 2002. 2 | // Distributed under the Boost Software License, Version 1.0. (See 3 | // accompanying file LICENSE_1_0.txt or copy at 4 | // http://www.boost.org/LICENSE_1_0.txt) 5 | 6 | #ifndef ITERATOR_DWA122600_HPP_ 7 | #define ITERATOR_DWA122600_HPP_ 8 | 9 | // This header is obsolete and will be deprecated. 10 | 11 | #include 12 | 13 | namespace boost 14 | { 15 | 16 | namespace detail 17 | { 18 | 19 | using std::iterator_traits; 20 | using std::distance; 21 | 22 | } // namespace detail 23 | 24 | } // namespace boost 25 | 26 | #endif // ITERATOR_DWA122600_HPP_ 27 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/function/detail/function_iterate.hpp: -------------------------------------------------------------------------------- 1 | // Boost.Function library 2 | 3 | // Copyright Douglas Gregor 2003. Use, modification and 4 | // distribution is subject to the Boost Software License, Version 5 | // 1.0. (See accompanying file LICENSE_1_0.txt or copy at 6 | // http://www.boost.org/LICENSE_1_0.txt) 7 | 8 | // For more information, see http://www.boost.org 9 | #if !defined(BOOST_PP_IS_ITERATING) 10 | # error Boost.Function - do not include this file! 11 | #endif 12 | 13 | #define BOOST_FUNCTION_NUM_ARGS BOOST_PP_ITERATION() 14 | #include 15 | #undef BOOST_FUNCTION_NUM_ARGS 16 | 17 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/mpl/equal_to.hpp: -------------------------------------------------------------------------------- 1 | 2 | #ifndef BOOST_MPL_EQUAL_TO_HPP_INCLUDED 3 | #define BOOST_MPL_EQUAL_TO_HPP_INCLUDED 4 | 5 | // Copyright Aleksey Gurtovoy 2000-2004 6 | // 7 | // Distributed under the Boost Software License, Version 1.0. 8 | // (See accompanying file LICENSE_1_0.txt or copy at 9 | // http://www.boost.org/LICENSE_1_0.txt) 10 | // 11 | // See http://www.boost.org/libs/mpl for documentation. 12 | 13 | // $Id$ 14 | // $Date$ 15 | // $Revision$ 16 | 17 | #define AUX778076_OP_NAME equal_to 18 | #define AUX778076_OP_TOKEN == 19 | #include 20 | 21 | #endif // BOOST_MPL_EQUAL_TO_HPP_INCLUDED 22 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/mpl/long.hpp: -------------------------------------------------------------------------------- 1 | 2 | #ifndef BOOST_MPL_LONG_HPP_INCLUDED 3 | #define BOOST_MPL_LONG_HPP_INCLUDED 4 | 5 | // Copyright Aleksey Gurtovoy 2000-2004 6 | // 7 | // Distributed under the Boost Software License, Version 1.0. 8 | // (See accompanying file LICENSE_1_0.txt or copy at 9 | // http://www.boost.org/LICENSE_1_0.txt) 10 | // 11 | // See http://www.boost.org/libs/mpl for documentation. 12 | 13 | // $Id$ 14 | // $Date$ 15 | // $Revision$ 16 | 17 | #include 18 | 19 | #define AUX_WRAPPER_VALUE_TYPE long 20 | #include 21 | 22 | #endif // BOOST_MPL_LONG_HPP_INCLUDED 23 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/shared_ptr.hpp: -------------------------------------------------------------------------------- 1 | #ifndef BOOST_SHARED_PTR_HPP_INCLUDED 2 | #define BOOST_SHARED_PTR_HPP_INCLUDED 3 | 4 | // 5 | // shared_ptr.hpp 6 | // 7 | // (C) Copyright Greg Colvin and Beman Dawes 1998, 1999. 8 | // Copyright (c) 2001-2008 Peter Dimov 9 | // 10 | // Distributed under the Boost Software License, Version 1.0. (See 11 | // accompanying file LICENSE_1_0.txt or copy at 12 | // http://www.boost.org/LICENSE_1_0.txt) 13 | // 14 | // See http://www.boost.org/libs/smart_ptr/shared_ptr.htm for documentation. 15 | // 16 | 17 | #include 18 | 19 | #endif // #ifndef BOOST_SHARED_PTR_HPP_INCLUDED 20 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/phoenix1.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_PHOENIX1 10 | #define BOOST_SPIRIT_INCLUDE_PHOENIX1 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/phoenix_stl.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2011 Joel de Guzman 3 | Copyright (c) 2001-2011 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_PHOENIX_STL 10 | #define BOOST_SPIRIT_INCLUDE_PHOENIX_STL 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/repository/home/karma.hpp: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2001-2011 Hartmut Kaiser 2 | // Copyright (c) 2001-2011 Joel de Guzman 3 | // 4 | // Distributed under the Boost Software License, Version 1.0. (See accompanying 5 | // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 6 | 7 | #if !defined(SPIRIT_REPOSITORY_KARMA_APR_28_2009_1259PM) 8 | #define SPIRIT_REPOSITORY_KARMA_APR_28_2009_1259PM 9 | 10 | #if defined(_MSC_VER) 11 | #pragma once 12 | #endif 13 | 14 | #include 15 | #include 16 | 17 | #endif 18 | 19 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/mpl/limits/vector.hpp: -------------------------------------------------------------------------------- 1 | 2 | #ifndef BOOST_MPL_LIMITS_VECTOR_HPP_INCLUDED 3 | #define BOOST_MPL_LIMITS_VECTOR_HPP_INCLUDED 4 | 5 | // Copyright Aleksey Gurtovoy 2000-2004 6 | // 7 | // Distributed under the Boost Software License, Version 1.0. 8 | // (See accompanying file LICENSE_1_0.txt or copy at 9 | // http://www.boost.org/LICENSE_1_0.txt) 10 | // 11 | // See http://www.boost.org/libs/mpl for documentation. 12 | 13 | // $Id$ 14 | // $Date$ 15 | // $Revision$ 16 | 17 | #if !defined(BOOST_MPL_LIMIT_VECTOR_SIZE) 18 | # define BOOST_MPL_LIMIT_VECTOR_SIZE 20 19 | #endif 20 | 21 | #endif // BOOST_MPL_LIMITS_VECTOR_HPP_INCLUDED 22 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/random/detail/config.hpp: -------------------------------------------------------------------------------- 1 | /* boost random/detail/config.hpp header file 2 | * 3 | * Copyright Steven Watanabe 2009 4 | * Distributed under the Boost Software License, Version 1.0. (See 5 | * accompanying file LICENSE_1_0.txt or copy at 6 | * http://www.boost.org/LICENSE_1_0.txt) 7 | * 8 | * See http://www.boost.org for most recent version including documentation. 9 | * 10 | * $Id$ 11 | */ 12 | 13 | #include 14 | 15 | #if (defined(BOOST_NO_OPERATORS_IN_NAMESPACE) || defined(BOOST_NO_MEMBER_TEMPLATE_FRIENDS)) \ 16 | && !defined(BOOST_MSVC) 17 | #define BOOST_RANDOM_NO_STREAM_OPERATORS 18 | #endif 19 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/classic_core.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_CLASSIC_CORE 10 | #define BOOST_SPIRIT_INCLUDE_CLASSIC_CORE 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/classic_if.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_CLASSIC_IF 10 | #define BOOST_SPIRIT_INCLUDE_CLASSIC_IF 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/classic_meta.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_CLASSIC_META 10 | #define BOOST_SPIRIT_INCLUDE_CLASSIC_META 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/phoenix_bind.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2011 Joel de Guzman 3 | Copyright (c) 2001-2011 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_PHOENIX_BIND 10 | #define BOOST_SPIRIT_INCLUDE_PHOENIX_BIND 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/phoenix_core.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2011 Joel de Guzman 3 | Copyright (c) 2001-2011 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_PHOENIX_CORE 10 | #define BOOST_SPIRIT_INCLUDE_PHOENIX_CORE 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/mpl/aux_/config/use_preprocessed.hpp: -------------------------------------------------------------------------------- 1 | 2 | #ifndef BOOST_MPL_AUX_CONFIG_USE_PREPROCESSED_HPP_INCLUDED 3 | #define BOOST_MPL_AUX_CONFIG_USE_PREPROCESSED_HPP_INCLUDED 4 | 5 | // Copyright Aleksey Gurtovoy 2000-2004 6 | // 7 | // Distributed under the Boost Software License, Version 1.0. 8 | // (See accompanying file LICENSE_1_0.txt or copy at 9 | // http://www.boost.org/LICENSE_1_0.txt) 10 | // 11 | // See http://www.boost.org/libs/mpl for documentation. 12 | 13 | // $Id$ 14 | // $Date$ 15 | // $Revision$ 16 | 17 | // #define BOOST_MPL_CFG_NO_PREPROCESSED_HEADERS 18 | 19 | #endif // BOOST_MPL_AUX_CONFIG_USE_PREPROCESSED_HPP_INCLUDED 20 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/mpl/less_equal.hpp: -------------------------------------------------------------------------------- 1 | 2 | #ifndef BOOST_MPL_LESS_EQUAL_HPP_INCLUDED 3 | #define BOOST_MPL_LESS_EQUAL_HPP_INCLUDED 4 | 5 | // Copyright Aleksey Gurtovoy 2000-2004 6 | // 7 | // Distributed under the Boost Software License, Version 1.0. 8 | // (See accompanying file LICENSE_1_0.txt or copy at 9 | // http://www.boost.org/LICENSE_1_0.txt) 10 | // 11 | // See http://www.boost.org/libs/mpl for documentation. 12 | 13 | // $Id$ 14 | // $Date$ 15 | // $Revision$ 16 | 17 | #define AUX778076_OP_NAME less_equal 18 | #define AUX778076_OP_TOKEN <= 19 | #include 20 | 21 | #endif // BOOST_MPL_LESS_EQUAL_HPP_INCLUDED 22 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/mpl/limits/arity.hpp: -------------------------------------------------------------------------------- 1 | 2 | #ifndef BOOST_MPL_LIMITS_ARITY_HPP_INCLUDED 3 | #define BOOST_MPL_LIMITS_ARITY_HPP_INCLUDED 4 | 5 | // Copyright Aleksey Gurtovoy 2000-2004 6 | // 7 | // Distributed under the Boost Software License, Version 1.0. 8 | // (See accompanying file LICENSE_1_0.txt or copy at 9 | // http://www.boost.org/LICENSE_1_0.txt) 10 | // 11 | // See http://www.boost.org/libs/mpl for documentation. 12 | 13 | // $Id$ 14 | // $Date$ 15 | // $Revision$ 16 | 17 | #if !defined(BOOST_MPL_LIMIT_METAFUNCTION_ARITY) 18 | # define BOOST_MPL_LIMIT_METAFUNCTION_ARITY 5 19 | #endif 20 | 21 | #endif // BOOST_MPL_LIMITS_ARITY_HPP_INCLUDED 22 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/mpl/limits/unrolling.hpp: -------------------------------------------------------------------------------- 1 | 2 | #ifndef BOOST_MPL_LIMITS_UNROLLING_HPP_INCLUDED 3 | #define BOOST_MPL_LIMITS_UNROLLING_HPP_INCLUDED 4 | 5 | // Copyright Aleksey Gurtovoy 2000-2004 6 | // 7 | // Distributed under the Boost Software License, Version 1.0. 8 | // (See accompanying file LICENSE_1_0.txt or copy at 9 | // http://www.boost.org/LICENSE_1_0.txt) 10 | // 11 | // See http://www.boost.org/libs/mpl for documentation. 12 | 13 | // $Id$ 14 | // $Date$ 15 | // $Revision$ 16 | 17 | #if !defined(BOOST_MPL_LIMIT_UNROLLING) 18 | # define BOOST_MPL_LIMIT_UNROLLING 4 19 | #endif 20 | 21 | #endif // BOOST_MPL_LIMITS_UNROLLING_HPP_INCLUDED 22 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/mpl/multiset/aux_/tag.hpp: -------------------------------------------------------------------------------- 1 | 2 | #ifndef BOOST_MPL_MULTISET_AUX_TAG_HPP_INCLUDED 3 | #define BOOST_MPL_MULTISET_AUX_TAG_HPP_INCLUDED 4 | 5 | // Copyright Aleksey Gurtovoy 2003-2004 6 | // 7 | // Distributed under the Boost Software License, Version 1.0. 8 | // (See accompanying file LICENSE_1_0.txt or copy at 9 | // http://www.boost.org/LICENSE_1_0.txt) 10 | // 11 | // See http://www.boost.org/libs/mpl for documentation. 12 | 13 | // $Id$ 14 | // $Date$ 15 | // $Revision$ 16 | 17 | namespace boost { namespace mpl { namespace aux { 18 | 19 | struct multiset_tag; 20 | 21 | }}} 22 | 23 | #endif // BOOST_MPL_MULTISET_AUX_TAG_HPP_INCLUDED 24 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/pending/detail/property.hpp: -------------------------------------------------------------------------------- 1 | // (C) Copyright Jeremy Siek 2004 2 | // Distributed under the Boost Software License, Version 1.0. (See 3 | // accompanying file LICENSE_1_0.txt or copy at 4 | // http://www.boost.org/LICENSE_1_0.txt) 5 | 6 | #ifndef BOOST_DETAIL_PROPERTY_HPP 7 | #define BOOST_DETAIL_PROPERTY_HPP 8 | 9 | #include // for std::pair 10 | #include // for is_same 11 | 12 | namespace boost { 13 | 14 | namespace detail { 15 | 16 | struct error_property_not_found { }; 17 | 18 | } // namespace detail 19 | } // namespace boost 20 | 21 | #endif // BOOST_DETAIL_PROPERTY_HPP 22 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/preprocessor/punctuation/comma.hpp: -------------------------------------------------------------------------------- 1 | # /* Copyright (C) 2001 2 | # * Housemarque Oy 3 | # * http://www.housemarque.com 4 | # * 5 | # * Distributed under the Boost Software License, Version 1.0. (See 6 | # * accompanying file LICENSE_1_0.txt or copy at 7 | # * http://www.boost.org/LICENSE_1_0.txt) 8 | # */ 9 | # 10 | # /* Revised by Paul Mensonides (2002) */ 11 | # 12 | # /* See http://www.boost.org for most recent version. */ 13 | # 14 | # ifndef BOOST_PREPROCESSOR_PUNCTUATION_COMMA_HPP 15 | # define BOOST_PREPROCESSOR_PUNCTUATION_COMMA_HPP 16 | # 17 | # /* BOOST_PP_COMMA */ 18 | # 19 | # define BOOST_PP_COMMA() , 20 | # 21 | # endif 22 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/classic_actor.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_CLASSIC_ACTOR 10 | #define BOOST_SPIRIT_INCLUDE_CLASSIC_ACTOR 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/classic_ast.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_CLASSIC_AST 10 | #define BOOST_SPIRIT_INCLUDE_CLASSIC_AST 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/classic_debug.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_CLASSIC_DEBUG 10 | #define BOOST_SPIRIT_INCLUDE_CLASSIC_DEBUG 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/classic_for.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_CLASSIC_FOR 10 | #define BOOST_SPIRIT_INCLUDE_CLASSIC_FOR 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/classic_nil.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_CLASSIC_NIL 10 | #define BOOST_SPIRIT_INCLUDE_CLASSIC_NIL 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/phoenix_scope.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2011 Joel de Guzman 3 | Copyright (c) 2001-2011 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_PHOENIX_SCOPE 10 | #define BOOST_SPIRIT_INCLUDE_PHOENIX_SCOPE 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/repository/home/qi/nonterminal.hpp: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2001-2011 Hartmut Kaiser 2 | // Copyright (c) 2001-2011 Joel de Guzman 3 | // Copyright (c) 2009 Francois Barel 4 | // 5 | // Distributed under the Boost Software License, Version 1.0. (See accompanying 6 | // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 7 | 8 | #if !defined(SPIRIT_REPOSITORY_QI_NONTERMINAL_AUG_12_2009_1140AM) 9 | #define SPIRIT_REPOSITORY_QI_NONTERMINAL_AUG_12_2009_1140AM 10 | 11 | #if defined(_MSC_VER) 12 | #pragma once 13 | #endif 14 | 15 | #include 16 | 17 | #endif 18 | 19 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/typeof/std/list.hpp: -------------------------------------------------------------------------------- 1 | // Copyright (C) 2005 Arkadiy Vertleyb, Peder Holt. 2 | // Use, modification and distribution is subject to the Boost Software 3 | // License, Version 1.0. (http://www.boost.org/LICENSE_1_0.txt) 4 | 5 | #ifndef BOOST_TYPEOF_STD_list_hpp_INCLUDED 6 | #define BOOST_TYPEOF_STD_list_hpp_INCLUDED 7 | 8 | #include 9 | #include 10 | #include 11 | 12 | #include BOOST_TYPEOF_INCREMENT_REGISTRATION_GROUP() 13 | 14 | BOOST_TYPEOF_REGISTER_TEMPLATE(std::list, 1) 15 | BOOST_TYPEOF_REGISTER_TEMPLATE(std::list, 2) 16 | 17 | #endif//BOOST_TYPEOF_STD_list_hpp_INCLUDED 18 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/mpl/list/aux_/tag.hpp: -------------------------------------------------------------------------------- 1 | 2 | #ifndef BOOST_MPL_LIST_AUX_TAG_HPP_INCLUDED 3 | #define BOOST_MPL_LIST_AUX_TAG_HPP_INCLUDED 4 | 5 | // Copyright Aleksey Gurtovoy 2000-2004 6 | // 7 | // Distributed under the Boost Software License, Version 1.0. 8 | // (See accompanying file LICENSE_1_0.txt or copy at 9 | // http://www.boost.org/LICENSE_1_0.txt) 10 | // 11 | // See http://www.boost.org/libs/mpl for documentation. 12 | 13 | // $Id$ 14 | // $Date$ 15 | // $Revision$ 16 | 17 | namespace boost { namespace mpl { namespace aux { 18 | 19 | struct list_tag; 20 | struct l_iter_tag; 21 | 22 | }}} 23 | 24 | #endif // BOOST_MPL_LIST_AUX_TAG_HPP_INCLUDED 25 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/home/qi/action.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2011 Joel de Guzman 3 | 4 | Distributed under the Boost Software License, Version 1.0. (See accompanying 5 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 6 | ==============================================================================*/ 7 | #if !defined(SPIRIT_ACTION_JANUARY_07_2007_1233PM) 8 | #define SPIRIT_ACTION_JANUARY_07_2007_1233PM 9 | 10 | #if defined(_MSC_VER) 11 | #pragma once 12 | #endif 13 | 14 | #include 15 | 16 | #endif 17 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/classic_lazy.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_CLASSIC_LAZY 10 | #define BOOST_SPIRIT_INCLUDE_CLASSIC_LAZY 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/classic_match.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_CLASSIC_MATCH 10 | #define BOOST_SPIRIT_INCLUDE_CLASSIC_MATCH 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/phoenix1_new.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_PHOENIX1_NEW 10 | #define BOOST_SPIRIT_INCLUDE_PHOENIX1_NEW 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/phoenix_fusion.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2011 Joel de Guzman 3 | Copyright (c) 2001-2011 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_PHOENIX_FUSION 10 | #define BOOST_SPIRIT_INCLUDE_PHOENIX_FUSION 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/phoenix_object.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2011 Joel de Guzman 3 | Copyright (c) 2001-2011 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_PHOENIX_OBJECT 10 | #define BOOST_SPIRIT_INCLUDE_PHOENIX_OBJECT 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/phoenix_version.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2011 Joel de Guzman 3 | Copyright (c) 2001-2011 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_PHOENIX_VERSION 10 | #define BOOST_SPIRIT_INCLUDE_PHOENIX_VERSION 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/typeof/std/deque.hpp: -------------------------------------------------------------------------------- 1 | // Copyright (C) 2005 Arkadiy Vertleyb, Peder Holt. 2 | // Use, modification and distribution is subject to the Boost Software 3 | // License, Version 1.0. (http://www.boost.org/LICENSE_1_0.txt) 4 | 5 | #ifndef BOOST_TYPEOF_STD_deque_hpp_INCLUDED 6 | #define BOOST_TYPEOF_STD_deque_hpp_INCLUDED 7 | 8 | #include 9 | #include 10 | #include 11 | 12 | #include BOOST_TYPEOF_INCREMENT_REGISTRATION_GROUP() 13 | 14 | BOOST_TYPEOF_REGISTER_TEMPLATE(std::deque, 1) 15 | BOOST_TYPEOF_REGISTER_TEMPLATE(std::deque, 2) 16 | 17 | #endif//BOOST_TYPEOF_STD_deque_hpp_INCLUDED 18 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/typeof/std/queue.hpp: -------------------------------------------------------------------------------- 1 | // Copyright (C) 2005 Arkadiy Vertleyb, Peder Holt. 2 | // Use, modification and distribution is subject to the Boost Software 3 | // License, Version 1.0. (http://www.boost.org/LICENSE_1_0.txt) 4 | 5 | #ifndef BOOST_TYPEOF_STD_queue_hpp_INCLUDED 6 | #define BOOST_TYPEOF_STD_queue_hpp_INCLUDED 7 | 8 | #include 9 | #include 10 | #include 11 | 12 | #include BOOST_TYPEOF_INCREMENT_REGISTRATION_GROUP() 13 | 14 | BOOST_TYPEOF_REGISTER_TEMPLATE(std::queue, 1) 15 | BOOST_TYPEOF_REGISTER_TEMPLATE(std::queue, 2) 16 | 17 | #endif//BOOST_TYPEOF_STD_queue_hpp_INCLUDED 18 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/typeof/std/stack.hpp: -------------------------------------------------------------------------------- 1 | // Copyright (C) 2005 Arkadiy Vertleyb, Peder Holt. 2 | // Use, modification and distribution is subject to the Boost Software 3 | // License, Version 1.0. (http://www.boost.org/LICENSE_1_0.txt) 4 | 5 | #ifndef BOOST_TYPEOF_STD_stack_hpp_INCLUDED 6 | #define BOOST_TYPEOF_STD_stack_hpp_INCLUDED 7 | 8 | #include 9 | #include 10 | #include 11 | 12 | #include BOOST_TYPEOF_INCREMENT_REGISTRATION_GROUP() 13 | 14 | BOOST_TYPEOF_REGISTER_TEMPLATE(std::stack, 1) 15 | BOOST_TYPEOF_REGISTER_TEMPLATE(std::stack, 2) 16 | 17 | #endif//BOOST_TYPEOF_STD_stack_hpp_INCLUDED 18 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/exception/errinfo_at_line.hpp: -------------------------------------------------------------------------------- 1 | //Copyright (c) 2006-2009 Emil Dotchevski and Reverge Studios, Inc. 2 | 3 | //Distributed under the Boost Software License, Version 1.0. (See accompanying 4 | //file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 5 | 6 | #ifndef UUID_E7255CE26C1211DE85800C9155D89593 7 | #define UUID_E7255CE26C1211DE85800C9155D89593 8 | 9 | namespace 10 | boost 11 | { 12 | template class error_info; 13 | 14 | //Use with parsing errors exceptions, for example in a XML file parser. 15 | typedef error_info errinfo_at_line; 16 | } 17 | 18 | #endif 19 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/math/common_factor.hpp: -------------------------------------------------------------------------------- 1 | // Boost common_factor.hpp header file -------------------------------------// 2 | 3 | // (C) Copyright Daryle Walker 2001-2002. 4 | // Distributed under the Boost Software License, Version 1.0. (See 5 | // accompanying file LICENSE_1_0.txt or copy at 6 | // http://www.boost.org/LICENSE_1_0.txt) 7 | 8 | // See http://www.boost.org for updates, documentation, and revision history. 9 | 10 | #ifndef BOOST_MATH_COMMON_FACTOR_HPP 11 | #define BOOST_MATH_COMMON_FACTOR_HPP 12 | 13 | #include 14 | #include 15 | 16 | #endif // BOOST_MATH_COMMON_FACTOR_HPP 17 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/mpl/not_equal_to.hpp: -------------------------------------------------------------------------------- 1 | 2 | #ifndef BOOST_MPL_NOT_EQUAL_TO_HPP_INCLUDED 3 | #define BOOST_MPL_NOT_EQUAL_TO_HPP_INCLUDED 4 | 5 | // Copyright Aleksey Gurtovoy 2000-2004 6 | // 7 | // Distributed under the Boost Software License, Version 1.0. 8 | // (See accompanying file LICENSE_1_0.txt or copy at 9 | // http://www.boost.org/LICENSE_1_0.txt) 10 | // 11 | // See http://www.boost.org/libs/mpl for documentation. 12 | 13 | // $Id$ 14 | // $Date$ 15 | // $Revision$ 16 | 17 | #define AUX778076_OP_NAME not_equal_to 18 | #define AUX778076_OP_TOKEN != 19 | #include 20 | 21 | #endif // BOOST_MPL_NOT_EQUAL_TO_HPP_INCLUDED 22 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/home/lex.hpp: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2001-2011 Hartmut Kaiser 2 | // 3 | // Distributed under the Boost Software License, Version 1.0. (See accompanying 4 | // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 5 | 6 | #if !defined(BOOST_SPIRIT_LEXER_MARCH_22_2007_0929PM) 7 | #define BOOST_SPIRIT_LEXER_MARCH_22_2007_0929PM 8 | 9 | #if defined(_MSC_VER) 10 | #pragma once 11 | #endif 12 | 13 | #include 14 | #include 15 | #include 16 | #include 17 | 18 | #endif 19 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/home/qi/binary.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2011 Hartmut Kaiser 3 | 4 | Distributed under the Boost Software License, Version 1.0. (See accompanying 5 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 6 | ==============================================================================*/ 7 | #if !defined(BOOST_SPIRIT_BINARY_MAY_08_2007_0906AM) 8 | #define BOOST_SPIRIT_BINARY_MAY_08_2007_0906AM 9 | 10 | #if defined(_MSC_VER) 11 | #pragma once 12 | #endif 13 | 14 | #include 15 | 16 | #endif 17 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/classic_assert.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_CLASSIC_ASSERT 10 | #define BOOST_SPIRIT_INCLUDE_CLASSIC_ASSERT 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/classic_chset.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_CLASSIC_CHSET 10 | #define BOOST_SPIRIT_INCLUDE_CLASSIC_CHSET 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/classic_common.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_CLASSIC_COMMON 10 | #define BOOST_SPIRIT_INCLUDE_CLASSIC_COMMON 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/classic_config.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_CLASSIC_CONFIG 10 | #define BOOST_SPIRIT_INCLUDE_CLASSIC_CONFIG 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/classic_dynamic.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_CLASSIC_DYNAMIC 10 | #define BOOST_SPIRIT_INCLUDE_CLASSIC_DYNAMIC 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/classic_list.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_CLASSIC_LIST 10 | #define BOOST_SPIRIT_INCLUDE_CLASSIC_LIST 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/classic_lists.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_CLASSIC_LISTS 10 | #define BOOST_SPIRIT_INCLUDE_CLASSIC_LISTS 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/classic_loops.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_CLASSIC_LOOPS 10 | #define BOOST_SPIRIT_INCLUDE_CLASSIC_LOOPS 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/classic_parser.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_CLASSIC_PARSER 10 | #define BOOST_SPIRIT_INCLUDE_CLASSIC_PARSER 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/classic_regex.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_CLASSIC_REGEX 10 | #define BOOST_SPIRIT_INCLUDE_CLASSIC_REGEX 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/classic_symbols.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_CLASSIC_SYMBOLS 10 | #define BOOST_SPIRIT_INCLUDE_CLASSIC_SYMBOLS 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/classic_typeof.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_CLASSIC_TYPEOF 10 | #define BOOST_SPIRIT_INCLUDE_CLASSIC_TYPEOF 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/classic_utility.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_CLASSIC_UTILITY 10 | #define BOOST_SPIRIT_INCLUDE_CLASSIC_UTILITY 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/classic_version.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_CLASSIC_VERSION 10 | #define BOOST_SPIRIT_INCLUDE_CLASSIC_VERSION 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/classic_while.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_CLASSIC_WHILE 10 | #define BOOST_SPIRIT_INCLUDE_CLASSIC_WHILE 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/phoenix1_actor.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_PHOENIX1_ACTOR 10 | #define BOOST_SPIRIT_INCLUDE_PHOENIX1_ACTOR 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/phoenix1_casts.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_PHOENIX1_CASTS 10 | #define BOOST_SPIRIT_INCLUDE_PHOENIX1_CASTS 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/phoenix_function.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2011 Joel de Guzman 3 | Copyright (c) 2001-2011 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_PHOENIX_FUNCTION 10 | #define BOOST_SPIRIT_INCLUDE_PHOENIX_FUNCTION 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/phoenix_limits.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2011 Joel de Guzman 3 | Copyright (c) 2001-2011 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_PHOENIX_LIMITS 10 | #define BOOST_SPIRIT_INCLUDE_PHOENIX_LIMITS 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/phoenix_operator.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2011 Joel de Guzman 3 | Copyright (c) 2001-2011 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_PHOENIX_OPERATOR 10 | #define BOOST_SPIRIT_INCLUDE_PHOENIX_OPERATOR 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/qi_parse_attr.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2011 Joel de Guzman 3 | Copyright (c) 2001-2011 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_QI_PARSE_ATTR 10 | #define BOOST_SPIRIT_INCLUDE_QI_PARSE_ATTR 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/version.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2011 Joel de Guzman 3 | Copyright (c) 2001-2011 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #if !defined(SPIRIT_VERSION_NOVEMBER_13_2008_0834AM) 10 | #define SPIRIT_VERSION_NOVEMBER_13_2008_0834AM 11 | 12 | #include 13 | 14 | #endif 15 | -------------------------------------------------------------------------------- /EasyProtocol/jsoncpp/src/lib_json/version.h.in: -------------------------------------------------------------------------------- 1 | // DO NOT EDIT. This file (and "version") is generated by CMake. 2 | // Run CMake configure step to update it. 3 | #ifndef JSON_VERSION_H_INCLUDED 4 | # define JSON_VERSION_H_INCLUDED 5 | 6 | # define JSONCPP_VERSION_STRING "@JSONCPP_VERSION@" 7 | # define JSONCPP_VERSION_MAJOR @JSONCPP_VERSION_MAJOR@ 8 | # define JSONCPP_VERSION_MINOR @JSONCPP_VERSION_MINOR@ 9 | # define JSONCPP_VERSION_PATCH @JSONCPP_VERSION_PATCH@ 10 | # define JSONCPP_VERSION_QUALIFIER 11 | # define JSONCPP_VERSION_HEXA ((JSONCPP_VERSION_MAJOR << 24) | (JSONCPP_VERSION_MINOR << 16) | (JSONCPP_VERSION_PATCH << 8)) 12 | 13 | #endif // JSON_VERSION_H_INCLUDED 14 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/mpl/greater_equal.hpp: -------------------------------------------------------------------------------- 1 | 2 | #ifndef BOOST_MPL_GREATER_EQUAL_HPP_INCLUDED 3 | #define BOOST_MPL_GREATER_EQUAL_HPP_INCLUDED 4 | 5 | // Copyright Aleksey Gurtovoy 2000-2004 6 | // 7 | // Distributed under the Boost Software License, Version 1.0. 8 | // (See accompanying file LICENSE_1_0.txt or copy at 9 | // http://www.boost.org/LICENSE_1_0.txt) 10 | // 11 | // See http://www.boost.org/libs/mpl for documentation. 12 | 13 | // $Id$ 14 | // $Date$ 15 | // $Revision$ 16 | 17 | #define AUX778076_OP_NAME greater_equal 18 | #define AUX778076_OP_TOKEN >= 19 | #include 20 | 21 | #endif // BOOST_MPL_GREATER_EQUAL_HPP_INCLUDED 22 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/home/qi/stream.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2011 Hartmut Kaiser 3 | 4 | Distributed under the Boost Software License, Version 1.0. (See accompanying 5 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 6 | ==============================================================================*/ 7 | 8 | #if !defined(BOOST_SPIRIT_STREAM_MAY_05_2007_1227PM) 9 | #define BOOST_SPIRIT_STREAM_MAY_05_2007_1227PM 10 | 11 | #if defined(_MSC_VER) 12 | #pragma once 13 | #endif 14 | 15 | #include 16 | 17 | #endif 18 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/classic_ast_fwd.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_CLASSIC_AST_FWD 10 | #define BOOST_SPIRIT_INCLUDE_CLASSIC_AST_FWD 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/classic_attribute.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_CLASSIC_ATTRIBUTE 10 | #define BOOST_SPIRIT_INCLUDE_CLASSIC_ATTRIBUTE 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/classic_confix.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_CLASSIC_CONFIX 10 | #define BOOST_SPIRIT_INCLUDE_CLASSIC_CONFIX 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/classic_iterator.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_CLASSIC_ITERATOR 10 | #define BOOST_SPIRIT_INCLUDE_CLASSIC_ITERATOR 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/classic_minimal.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_CLASSIC_MINIMAL 10 | #define BOOST_SPIRIT_INCLUDE_CLASSIC_MINIMAL 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/classic_rule.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_CLASSIC_RULE 10 | #define BOOST_SPIRIT_INCLUDE_CLASSIC_RULE 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/classic_select.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_CLASSIC_SELECT 10 | #define BOOST_SPIRIT_INCLUDE_CLASSIC_SELECT 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/classic_switch.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_CLASSIC_SWITCH 10 | #define BOOST_SPIRIT_INCLUDE_CLASSIC_SWITCH 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/phoenix1_tuples.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_PHOENIX1_TUPLES 10 | #define BOOST_SPIRIT_INCLUDE_PHOENIX1_TUPLES 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/phoenix_statement.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2011 Joel de Guzman 3 | Copyright (c) 2001-2011 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_PHOENIX_STATEMENT 10 | #define BOOST_SPIRIT_INCLUDE_PHOENIX_STATEMENT 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/repository/home/karma/nonterminal.hpp: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2001-2011 Hartmut Kaiser 2 | // Copyright (c) 2001-2011 Joel de Guzman 3 | // Copyright (c) 2009 Francois Barel 4 | // 5 | // Distributed under the Boost Software License, Version 1.0. (See accompanying 6 | // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 7 | 8 | #if !defined(SPIRIT_REPOSITORY_KARMA_NONTERMINAL_AUG_12_2009_0807PM) 9 | #define SPIRIT_REPOSITORY_KARMA_NONTERMINAL_AUG_12_2009_0807PM 10 | 11 | #if defined(_MSC_VER) 12 | #pragma once 13 | #endif 14 | 15 | #include 16 | 17 | #endif 18 | 19 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/type_traits/array_traits.hpp: -------------------------------------------------------------------------------- 1 | // (C) Copyright Dave Abrahams, Steve Cleary, Beman Dawes, Howard 2 | // Hinnant & John Maddock 2000. 3 | // Use, modification and distribution are subject to the Boost Software License, 4 | // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at 5 | // http://www.boost.org/LICENSE_1_0.txt). 6 | // 7 | // See http://www.boost.org/libs/type_traits for most recent version including documentation. 8 | 9 | 10 | #ifndef BOOST_TT_ARRAY_TRAITS_HPP_INCLUDED 11 | #define BOOST_TT_ARRAY_TRAITS_HPP_INCLUDED 12 | 13 | #include 14 | 15 | #endif // BOOST_TT_ARRAY_TRAITS_HPP_INCLUDED 16 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/typeof/std/vector.hpp: -------------------------------------------------------------------------------- 1 | // Copyright (C) 2005 Arkadiy Vertleyb, Peder Holt. 2 | // Use, modification and distribution is subject to the Boost Software 3 | // License, Version 1.0. (http://www.boost.org/LICENSE_1_0.txt) 4 | 5 | #ifndef BOOST_TYPEOF_STD_vector_hpp_INCLUDED 6 | #define BOOST_TYPEOF_STD_vector_hpp_INCLUDED 7 | 8 | #include 9 | #include 10 | #include 11 | 12 | #include BOOST_TYPEOF_INCREMENT_REGISTRATION_GROUP() 13 | 14 | BOOST_TYPEOF_REGISTER_TEMPLATE(std::vector, 1) 15 | BOOST_TYPEOF_REGISTER_TEMPLATE(std::vector, 2) 16 | 17 | #endif//BOOST_TYPEOF_STD_vector_hpp_INCLUDED 18 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/mpl/at_fwd.hpp: -------------------------------------------------------------------------------- 1 | 2 | #ifndef BOOST_MPL_AT_FWD_HPP_INCLUDED 3 | #define BOOST_MPL_AT_FWD_HPP_INCLUDED 4 | 5 | // Copyright Aleksey Gurtovoy 2000-2004 6 | // 7 | // Distributed under the Boost Software License, Version 1.0. 8 | // (See accompanying file LICENSE_1_0.txt or copy at 9 | // http://www.boost.org/LICENSE_1_0.txt) 10 | // 11 | // See http://www.boost.org/libs/mpl for documentation. 12 | 13 | // $Id$ 14 | // $Date$ 15 | // $Revision$ 16 | 17 | namespace boost { namespace mpl { 18 | 19 | template< typename Tag > struct at_impl; 20 | template< typename Sequence, typename N > struct at; 21 | 22 | }} 23 | 24 | #endif // BOOST_MPL_AT_FWD_HPP_INCLUDED 25 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/mpl/aux_/basic_bind.hpp: -------------------------------------------------------------------------------- 1 | 2 | #ifndef BOOST_MPL_AUX_BASIC_BIND_HPP_INCLUDED 3 | #define BOOST_MPL_AUX_BASIC_BIND_HPP_INCLUDED 4 | 5 | // Copyright Peter Dimov 2001 6 | // Copyright Aleksey Gurtovoy 2001-2004 7 | // 8 | // Distributed under the Boost Software License, Version 1.0. 9 | // (See accompanying file LICENSE_1_0.txt or copy at 10 | // http://www.boost.org/LICENSE_1_0.txt) 11 | // 12 | // See http://www.boost.org/libs/mpl for documentation. 13 | 14 | // $Id$ 15 | // $Date$ 16 | // $Revision$ 17 | 18 | #define BOOST_MPL_CFG_NO_UNNAMED_PLACEHOLDER_SUPPORT 19 | #include 20 | 21 | #endif // BOOST_MPL_AUX_BASIC_BIND_HPP_INCLUDED 22 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/mpl/aux_/test/test_case.hpp: -------------------------------------------------------------------------------- 1 | 2 | #ifndef BOOST_MPL_AUX_TEST_TEST_CASE_HPP_INCLUDED 3 | #define BOOST_MPL_AUX_TEST_TEST_CASE_HPP_INCLUDED 4 | 5 | // Copyright Aleksey Gurtovoy 2002-2004 6 | // 7 | // Distributed under the Boost Software License, Version 1.0. 8 | // (See accompanying file LICENSE_1_0.txt or copy at 9 | // http://www.boost.org/LICENSE_1_0.txt) 10 | // 11 | // See http://www.boost.org/libs/mpl for documentation. 12 | 13 | // $Id$ 14 | // $Date$ 15 | // $Revision$ 16 | 17 | #include 18 | 19 | #define MPL_TEST_CASE() void BOOST_PP_CAT(test,__LINE__)() 20 | 21 | #endif // BOOST_MPL_AUX_TEST_TEST_CASE_HPP_INCLUDED 22 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/mpl/back_fwd.hpp: -------------------------------------------------------------------------------- 1 | 2 | #ifndef BOOST_MPL_BACK_FWD_HPP_INCLUDED 3 | #define BOOST_MPL_BACK_FWD_HPP_INCLUDED 4 | 5 | // Copyright Aleksey Gurtovoy 2000-2004 6 | // 7 | // Distributed under the Boost Software License, Version 1.0. 8 | // (See accompanying file LICENSE_1_0.txt or copy at 9 | // http://www.boost.org/LICENSE_1_0.txt) 10 | // 11 | // See http://www.boost.org/libs/mpl for documentation. 12 | 13 | // $Id$ 14 | // $Date$ 15 | // $Revision$ 16 | 17 | namespace boost { namespace mpl { 18 | 19 | template< typename Tag > struct back_impl; 20 | template< typename Sequence > struct back; 21 | 22 | }} 23 | 24 | #endif // BOOST_MPL_BACK_FWD_HPP_INCLUDED 25 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/mpl/map/aux_/tag.hpp: -------------------------------------------------------------------------------- 1 | 2 | #ifndef BOOST_MPL_MAP_AUX_TAG_HPP_INCLUDED 3 | #define BOOST_MPL_MAP_AUX_TAG_HPP_INCLUDED 4 | 5 | // Copyright Aleksey Gurtovoy 2003-2004 6 | // Copyright David Abrahams 2003-2004 7 | // 8 | // Distributed under the Boost Software License, Version 1.0. 9 | // (See accompanying file LICENSE_1_0.txt or copy at 10 | // http://www.boost.org/LICENSE_1_0.txt) 11 | // 12 | // See http://www.boost.org/libs/mpl for documentation. 13 | 14 | // $Id$ 15 | // $Date$ 16 | // $Revision$ 17 | 18 | namespace boost { namespace mpl { namespace aux { 19 | 20 | struct map_tag; 21 | 22 | }}} 23 | 24 | #endif // BOOST_MPL_MAP_AUX_TAG_HPP_INCLUDED 25 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/mpl/modulus.hpp: -------------------------------------------------------------------------------- 1 | 2 | #ifndef BOOST_MPL_MODULUS_HPP_INCLUDED 3 | #define BOOST_MPL_MODULUS_HPP_INCLUDED 4 | 5 | // Copyright Aleksey Gurtovoy 2000-2004 6 | // 7 | // Distributed under the Boost Software License, Version 1.0. 8 | // (See accompanying file LICENSE_1_0.txt or copy at 9 | // http://www.boost.org/LICENSE_1_0.txt) 10 | // 11 | // See http://www.boost.org/libs/mpl for documentation. 12 | 13 | // $Id$ 14 | // $Date$ 15 | // $Revision$ 16 | 17 | #define AUX778076_OP_NAME modulus 18 | #define AUX778076_OP_TOKEN % 19 | #define AUX778076_OP_ARITY 2 20 | #include 21 | 22 | #endif // BOOST_MPL_MODULUS_HPP_INCLUDED 23 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/mpl/set/aux_/tag.hpp: -------------------------------------------------------------------------------- 1 | 2 | #ifndef BOOST_MPL_SET_AUX_TAG_HPP_INCLUDED 3 | #define BOOST_MPL_SET_AUX_TAG_HPP_INCLUDED 4 | 5 | // Copyright Aleksey Gurtovoy 2003-2004 6 | // Copyright David Abrahams 2003-2004 7 | // 8 | // Distributed under the Boost Software License, Version 1.0. 9 | // (See accompanying file LICENSE_1_0.txt or copy at 10 | // http://www.boost.org/LICENSE_1_0.txt) 11 | // 12 | // See http://www.boost.org/libs/mpl for documentation. 13 | 14 | // $Id$ 15 | // $Date$ 16 | // $Revision$ 17 | 18 | namespace boost { namespace mpl { namespace aux { 19 | 20 | struct set_tag; 21 | 22 | }}} 23 | 24 | #endif // BOOST_MPL_SET_AUX_TAG_HPP_INCLUDED 25 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/mpl/size_fwd.hpp: -------------------------------------------------------------------------------- 1 | 2 | #ifndef BOOST_MPL_SIZE_FWD_HPP_INCLUDED 3 | #define BOOST_MPL_SIZE_FWD_HPP_INCLUDED 4 | 5 | // Copyright Aleksey Gurtovoy 2000-2004 6 | // 7 | // Distributed under the Boost Software License, Version 1.0. 8 | // (See accompanying file LICENSE_1_0.txt or copy at 9 | // http://www.boost.org/LICENSE_1_0.txt) 10 | // 11 | // See http://www.boost.org/libs/mpl for documentation. 12 | 13 | // $Id$ 14 | // $Date$ 15 | // $Revision$ 16 | 17 | namespace boost { namespace mpl { 18 | 19 | template< typename Tag > struct size_impl; 20 | template< typename Sequence > struct size; 21 | 22 | }} 23 | 24 | #endif // BOOST_MPL_SIZE_FWD_HPP_INCLUDED 25 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/classic_as_parser.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_CLASSIC_AS_PARSER 10 | #define BOOST_SPIRIT_INCLUDE_CLASSIC_AS_PARSER 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/classic_closure.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_CLASSIC_CLOSURE 10 | #define BOOST_SPIRIT_INCLUDE_CLASSIC_CLOSURE 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/classic_distinct.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_CLASSIC_DISTINCT 10 | #define BOOST_SPIRIT_INCLUDE_CLASSIC_DISTINCT 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/classic_safe_bool.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_CLASSIC_SAFE_BOOL 10 | #define BOOST_SPIRIT_INCLUDE_CLASSIC_SAFE_BOOL 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/classic_scanner.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_CLASSIC_SCANNER 10 | #define BOOST_SPIRIT_INCLUDE_CLASSIC_SCANNER 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/classic_skipper.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_CLASSIC_SKIPPER 10 | #define BOOST_SPIRIT_INCLUDE_CLASSIC_SKIPPER 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/classic_spirit.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 1998-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | 5 | Distributed under the Boost Software License, Version 1.0. (See accompanying 6 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 7 | =============================================================================*/ 8 | #if !defined(BOOST_SPIRIT_CLASSIC_APR_12_2008_0949AM) 9 | #define BOOST_SPIRIT_CLASSIC_APR_12_2008_0949AM 10 | 11 | #include 12 | 13 | #endif // !defined(SPIRIT_CLASSIC_HPP) 14 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/classic_traverse.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_CLASSIC_TRAVERSE 10 | #define BOOST_SPIRIT_INCLUDE_CLASSIC_TRAVERSE 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/phoenix1_binders.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_PHOENIX1_BINDERS 10 | #define BOOST_SPIRIT_INCLUDE_PHOENIX1_BINDERS 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/phoenix_algorithm.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2011 Joel de Guzman 3 | Copyright (c) 2001-2011 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_PHOENIX_ALGORITHM 10 | #define BOOST_SPIRIT_INCLUDE_PHOENIX_ALGORITHM 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/phoenix_container.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2011 Joel de Guzman 3 | Copyright (c) 2001-2011 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_PHOENIX_CONTAINER 10 | #define BOOST_SPIRIT_INCLUDE_PHOENIX_CONTAINER 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/repository/include/qi_seek.hpp: -------------------------------------------------------------------------------- 1 | /*////////////////////////////////////////////////////////////////////////////// 2 | Copyright (c) 2011 Jamboree 3 | 4 | Distributed under the Boost Software License, Version 1.0. (See accompanying 5 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 6 | //////////////////////////////////////////////////////////////////////////////*/ 7 | #ifndef BOOST_SPIRIT_INCLUDE_QI_REPOSITORY_SEEK 8 | #define BOOST_SPIRIT_INCLUDE_QI_REPOSITORY_SEEK 9 | 10 | #if defined(_MSC_VER) 11 | #pragma once 12 | #endif 13 | 14 | #include 15 | 16 | #endif 17 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/type_traits/alignment_traits.hpp: -------------------------------------------------------------------------------- 1 | 2 | // (C) Copyright John Maddock 2000. 3 | // Use, modification and distribution are subject to the Boost Software License, 4 | // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at 5 | // http://www.boost.org/LICENSE_1_0.txt). 6 | // 7 | // See http://www.boost.org/libs/type_traits for most recent version including documentation. 8 | 9 | #ifndef BOOST_TT_ALIGNMENT_TRAITS_HPP_INCLUDED 10 | #define BOOST_TT_ALIGNMENT_TRAITS_HPP_INCLUDED 11 | 12 | #include 13 | #include 14 | 15 | #endif // BOOST_TT_ALIGNMENT_TRAITS_HPP_INCLUDED 16 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/concept/detail/backward_compatibility.hpp: -------------------------------------------------------------------------------- 1 | // Copyright David Abrahams 2009. Distributed under the Boost 2 | // Software License, Version 1.0. (See accompanying 3 | // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 4 | #ifndef BOOST_CONCEPT_BACKWARD_COMPATIBILITY_DWA200968_HPP 5 | # define BOOST_CONCEPT_BACKWARD_COMPATIBILITY_DWA200968_HPP 6 | 7 | namespace boost 8 | { 9 | namespace concepts {} 10 | 11 | # if defined(BOOST_HAS_CONCEPTS) && !defined(BOOST_CONCEPT_NO_BACKWARD_KEYWORD) 12 | namespace concept = concepts; 13 | # endif 14 | } // namespace boost::concept 15 | 16 | #endif // BOOST_CONCEPT_BACKWARD_COMPATIBILITY_DWA200968_HPP 17 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/exception/errinfo_file_handle.hpp: -------------------------------------------------------------------------------- 1 | //Copyright (c) 2006-2009 Emil Dotchevski and Reverge Studios, Inc. 2 | 3 | //Distributed under the Boost Software License, Version 1.0. (See accompanying 4 | //file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 5 | 6 | #ifndef UUID_F79E6EE26C1211DEB26E929155D89593 7 | #define UUID_F79E6EE26C1211DEB26E929155D89593 8 | 9 | #include 10 | 11 | namespace 12 | boost 13 | { 14 | template class weak_ptr; 15 | template class error_info; 16 | 17 | typedef error_info > errinfo_file_handle; 18 | } 19 | 20 | #endif 21 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/classic_common_fwd.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_CLASSIC_COMMON_FWD 10 | #define BOOST_SPIRIT_INCLUDE_CLASSIC_COMMON_FWD 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/classic_debug_node.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_CLASSIC_DEBUG_NODE 10 | #define BOOST_SPIRIT_INCLUDE_CLASSIC_DEBUG_NODE 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/classic_epsilon.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_CLASSIC_EPSILON 10 | #define BOOST_SPIRIT_INCLUDE_CLASSIC_EPSILON 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/classic_grammar.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_CLASSIC_GRAMMAR 10 | #define BOOST_SPIRIT_INCLUDE_CLASSIC_GRAMMAR 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/classic_lists_fwd.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_CLASSIC_LISTS_FWD 10 | #define BOOST_SPIRIT_INCLUDE_CLASSIC_LISTS_FWD 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/classic_parse_tree.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_CLASSIC_PARSE_TREE 10 | #define BOOST_SPIRIT_INCLUDE_CLASSIC_PARSE_TREE 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/classic_ref_actor.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_CLASSIC_REF_ACTOR 10 | #define BOOST_SPIRIT_INCLUDE_CLASSIC_REF_ACTOR 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/classic_subrule.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_CLASSIC_SUBRULE 10 | #define BOOST_SPIRIT_INCLUDE_CLASSIC_SUBRULE 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/classic_swap_actor.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_CLASSIC_SWAP_ACTOR 10 | #define BOOST_SPIRIT_INCLUDE_CLASSIC_SWAP_ACTOR 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/phoenix1_closures.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_PHOENIX1_CLOSURES 10 | #define BOOST_SPIRIT_INCLUDE_PHOENIX1_CLOSURES 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/qi_copy.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2012 Joel de Guzman 3 | http://spirit.sourceforge.net/ 4 | 5 | Distributed under the Boost Software License, Version 1.0. (See accompanying 6 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 7 | =============================================================================*/ 8 | #ifndef BOOST_SPIRIT_INCLUDE_SUPPORT_COPY 9 | #define BOOST_SPIRIT_INCLUDE_SUPPORT_COPY 10 | 11 | #if defined(_MSC_VER) 12 | #pragma once 13 | #endif 14 | 15 | #include 16 | 17 | #endif 18 | -------------------------------------------------------------------------------- /SafeStdLib/SafeInternalStdLib.dsw: -------------------------------------------------------------------------------- 1 | Microsoft Developer Studio Workspace File, Format Version 6.00 2 | # WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! 3 | 4 | ############################################################################### 5 | 6 | Project: "SafeInternalStdLib"=".\SafeInternalStdLib.dsp" - Package Owner=<4> 7 | 8 | Package=<5> 9 | {{{ 10 | }}} 11 | 12 | Package=<4> 13 | {{{ 14 | }}} 15 | 16 | ############################################################################### 17 | 18 | Global: 19 | 20 | Package=<5> 21 | {{{ 22 | }}} 23 | 24 | Package=<3> 25 | {{{ 26 | }}} 27 | 28 | ############################################################################### 29 | 30 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/config/compiler/nvcc.hpp: -------------------------------------------------------------------------------- 1 | // (C) Copyright Eric Jourdanneau, Joel Falcou 2010 2 | // Use, modification and distribution are subject to the 3 | // Boost Software License, Version 1.0. (See accompanying file 4 | // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 5 | 6 | // See http://www.boost.org for most recent version. 7 | 8 | // NVIDIA CUDA C++ compiler setup 9 | 10 | #ifndef BOOST_COMPILER 11 | # define BOOST_COMPILER "NVIDIA CUDA C++ Compiler" 12 | #endif 13 | 14 | // NVIDIA Specific support 15 | // BOOST_GPU_ENABLED : Flag a function or a method as being enabled on the host and device 16 | #define BOOST_GPU_ENABLED __host__ __device__ 17 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/mpl/aux_/has_size.hpp: -------------------------------------------------------------------------------- 1 | 2 | #ifndef BOOST_MPL_AUX_HAS_SIZE_HPP_INCLUDED 3 | #define BOOST_MPL_AUX_HAS_SIZE_HPP_INCLUDED 4 | 5 | // Copyright Aleksey Gurtovoy 2002-2004 6 | // 7 | // Distributed under the Boost Software License, Version 1.0. 8 | // (See accompanying file LICENSE_1_0.txt or copy at 9 | // http://www.boost.org/LICENSE_1_0.txt) 10 | // 11 | // See http://www.boost.org/libs/mpl for documentation. 12 | 13 | // $Id$ 14 | // $Date$ 15 | // $Revision$ 16 | 17 | #include 18 | 19 | namespace boost { namespace mpl { namespace aux { 20 | BOOST_MPL_HAS_XXX_TRAIT_DEF(size) 21 | }}} 22 | 23 | #endif // BOOST_MPL_AUX_HAS_SIZE_HPP_INCLUDED 24 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/mpl/aux_/range_c/tag.hpp: -------------------------------------------------------------------------------- 1 | 2 | #ifndef BOOST_MPL_AUX_RANGE_C_TAG_HPP_INCLUDED 3 | #define BOOST_MPL_AUX_RANGE_C_TAG_HPP_INCLUDED 4 | 5 | // Copyright Aleksey Gurtovoy 2000-2004 6 | // 7 | // Distributed under the Boost Software License, Version 1.0. 8 | // (See accompanying file LICENSE_1_0.txt or copy at 9 | // http://www.boost.org/LICENSE_1_0.txt) 10 | // 11 | // See http://www.boost.org/libs/mpl for documentation. 12 | 13 | // $Id$ 14 | // $Date$ 15 | // $Revision$ 16 | 17 | namespace boost { namespace mpl { namespace aux { 18 | 19 | struct half_open_range_tag; 20 | struct r_iter_tag; 21 | 22 | }}} 23 | 24 | #endif // BOOST_MPL_AUX_RANGE_C_TAG_HPP_INCLUDED 25 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/mpl/clear_fwd.hpp: -------------------------------------------------------------------------------- 1 | 2 | #ifndef BOOST_MPL_CLEAR_FWD_HPP_INCLUDED 3 | #define BOOST_MPL_CLEAR_FWD_HPP_INCLUDED 4 | 5 | // Copyright Aleksey Gurtovoy 2000-2004 6 | // 7 | // Distributed under the Boost Software License, Version 1.0. 8 | // (See accompanying file LICENSE_1_0.txt or copy at 9 | // http://www.boost.org/LICENSE_1_0.txt) 10 | // 11 | // See http://www.boost.org/libs/mpl for documentation. 12 | 13 | // $Id$ 14 | // $Date$ 15 | // $Revision$ 16 | 17 | namespace boost { namespace mpl { 18 | 19 | template< typename Tag > struct clear_impl; 20 | template< typename Sequence > struct clear; 21 | 22 | }} 23 | 24 | #endif // BOOST_MPL_CLEAR_FWD_HPP_INCLUDED 25 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/mpl/empty_fwd.hpp: -------------------------------------------------------------------------------- 1 | 2 | #ifndef BOOST_MPL_EMPTY_FWD_HPP_INCLUDED 3 | #define BOOST_MPL_EMPTY_FWD_HPP_INCLUDED 4 | 5 | // Copyright Aleksey Gurtovoy 2000-2004 6 | // 7 | // Distributed under the Boost Software License, Version 1.0. 8 | // (See accompanying file LICENSE_1_0.txt or copy at 9 | // http://www.boost.org/LICENSE_1_0.txt) 10 | // 11 | // See http://www.boost.org/libs/mpl for documentation. 12 | 13 | // $Id$ 14 | // $Date$ 15 | // $Revision$ 16 | 17 | namespace boost { namespace mpl { 18 | 19 | template< typename Tag > struct empty_impl; 20 | template< typename Sequence > struct empty; 21 | 22 | }} 23 | 24 | #endif // BOOST_MPL_EMPTY_FWD_HPP_INCLUDED 25 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/mpl/front_fwd.hpp: -------------------------------------------------------------------------------- 1 | 2 | #ifndef BOOST_MPL_FRONT_FWD_HPP_INCLUDED 3 | #define BOOST_MPL_FRONT_FWD_HPP_INCLUDED 4 | 5 | // Copyright Aleksey Gurtovoy 2000-2004 6 | // 7 | // Distributed under the Boost Software License, Version 1.0. 8 | // (See accompanying file LICENSE_1_0.txt or copy at 9 | // http://www.boost.org/LICENSE_1_0.txt) 10 | // 11 | // See http://www.boost.org/libs/mpl for documentation. 12 | 13 | // $Id$ 14 | // $Date$ 15 | // $Revision$ 16 | 17 | namespace boost { namespace mpl { 18 | 19 | template< typename Tag > struct front_impl; 20 | template< typename Sequence > struct front; 21 | 22 | }} 23 | 24 | #endif // BOOST_MPL_FRONT_FWD_HPP_INCLUDED 25 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/mpl/shift_left.hpp: -------------------------------------------------------------------------------- 1 | 2 | #ifndef BOOST_MPL_SHIFT_LEFT_HPP_INCLUDED 3 | #define BOOST_MPL_SHIFT_LEFT_HPP_INCLUDED 4 | 5 | // Copyright Aleksey Gurtovoy 2000-2004 6 | // Copyright Jaap Suter 2003 7 | // 8 | // Distributed under the Boost Software License, Version 1.0. 9 | // (See accompanying file LICENSE_1_0.txt or copy at 10 | // http://www.boost.org/LICENSE_1_0.txt) 11 | // 12 | // See http://www.boost.org/libs/mpl for documentation. 13 | 14 | // $Id$ 15 | // $Date$ 16 | // $Revision$ 17 | 18 | #define AUX778076_OP_NAME shift_left 19 | #define AUX778076_OP_TOKEN << 20 | #include 21 | 22 | #endif // BOOST_MPL_SHIFT_LEFT_HPP_INCLUDED 23 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/predef/platform.h: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright Rene Rivera 2013 3 | Copyright (c) Microsoft Corporation 2014 4 | Distributed under the Boost Software License, Version 1.0. 5 | (See accompanying file LICENSE_1_0.txt or copy at 6 | http://www.boost.org/LICENSE_1_0.txt) 7 | */ 8 | 9 | #ifndef BOOST_PREDEF_PLATFORM_H 10 | #define BOOST_PREDEF_PLATFORM_H 11 | 12 | #include 13 | #include 14 | #include 15 | #include 16 | #include 17 | /*#include */ 18 | 19 | #endif 20 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/home/support/terminal_expression.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2011 Joel de Guzman 3 | Copyright (c) 2001-2011 Hartmut Kaiser 4 | Copyright (c) 2011 Thomas Heller 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | ==============================================================================*/ 9 | #if !defined(BOOST_SPIRIT_TERMINAL_EXPRESSION_MARCH_24_2011_1210AM) 10 | #define BOOST_SPIRIT_TERMINAL_EXPRESSION_MARCH_24_2011_1210AM 11 | 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/classic_clear_actor.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_CLASSIC_CLEAR_ACTOR 10 | #define BOOST_SPIRIT_INCLUDE_CLASSIC_CLEAR_ACTOR 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/classic_composite.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_CLASSIC_COMPOSITE 10 | #define BOOST_SPIRIT_INCLUDE_CLASSIC_COMPOSITE 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/classic_confix_fwd.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_CLASSIC_CONFIX_FWD 10 | #define BOOST_SPIRIT_INCLUDE_CLASSIC_CONFIX_FWD 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/classic_erase_actor.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_CLASSIC_ERASE_ACTOR 10 | #define BOOST_SPIRIT_INCLUDE_CLASSIC_ERASE_ACTOR 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/classic_fundamental.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_CLASSIC_FUNDAMENTAL 10 | #define BOOST_SPIRIT_INCLUDE_CLASSIC_FUNDAMENTAL 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/classic_multi_pass.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_CLASSIC_MULTI_PASS 10 | #define BOOST_SPIRIT_INCLUDE_CLASSIC_MULTI_PASS 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/classic_numerics.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_CLASSIC_NUMERICS 10 | #define BOOST_SPIRIT_INCLUDE_CLASSIC_NUMERICS 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/classic_operators.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_CLASSIC_OPERATORS 10 | #define BOOST_SPIRIT_INCLUDE_CLASSIC_OPERATORS 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/classic_optional.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_CLASSIC_OPTIONAL 10 | #define BOOST_SPIRIT_INCLUDE_CLASSIC_OPTIONAL 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/classic_parametric.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_CLASSIC_PARAMETRIC 10 | #define BOOST_SPIRIT_INCLUDE_CLASSIC_PARAMETRIC 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/classic_positive.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_CLASSIC_POSITIVE 10 | #define BOOST_SPIRIT_INCLUDE_CLASSIC_POSITIVE 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/classic_refactoring.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_CLASSIC_REFACTORING 10 | #define BOOST_SPIRIT_INCLUDE_CLASSIC_REFACTORING 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/classic_rule_alias.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_CLASSIC_RULE_ALIAS 10 | #define BOOST_SPIRIT_INCLUDE_CLASSIC_RULE_ALIAS 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/classic_sequence.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_CLASSIC_SEQUENCE 10 | #define BOOST_SPIRIT_INCLUDE_CLASSIC_SEQUENCE 11 | #include 12 | #endif 13 | -------------------------------------------------------------------------------- /EasyProtocol/Include/boost/spirit/include/classic_static.hpp: -------------------------------------------------------------------------------- 1 | /*============================================================================= 2 | Copyright (c) 2001-2008 Joel de Guzman 3 | Copyright (c) 2001-2008 Hartmut Kaiser 4 | http://spirit.sourceforge.net/ 5 | 6 | Distributed under the Boost Software License, Version 1.0. (See accompanying 7 | file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 8 | =============================================================================*/ 9 | #ifndef BOOST_SPIRIT_INCLUDE_CLASSIC_STATIC 10 | #define BOOST_SPIRIT_INCLUDE_CLASSIC_STATIC 11 | #include 12 | #endif 13 | --------------------------------------------------------------------------------