├── .gitattributes ├── .gitignore ├── Chapter01 ├── 01_A_program_options_base │ ├── 01_A_program_options_base.pro │ ├── 01_A_program_options_base.pro.user │ └── main.cpp ├── 01_B_program_options_short │ ├── 01_B_program_options_short.pro │ ├── apples_oranges.cfg │ └── main.cpp ├── 02_any │ ├── 02_any.pro │ └── main.cpp ├── 03_variant │ ├── 03_variant.pro │ └── main.cpp ├── 04_A_any_db_example │ ├── 04_A_any_db_example.pro │ └── main.cpp ├── 04_B_variant_db_example │ ├── 04_B_variant_db_example.pro │ └── main.cpp ├── 05_optional │ ├── 05_optional.pro │ └── main.cpp ├── 06_array │ ├── 06_array.pro │ └── main.cpp ├── 07_A_tuple │ ├── 07_A_tuple.pro │ └── main.cpp ├── 07_B_tuple_construction_order │ ├── 07_B_tuple_construction_order.pro │ └── main.cpp ├── 08_bind │ ├── 08_bind.pro │ └── main.cpp ├── 09_type_index │ ├── 09_type_index.pro │ └── main.cpp ├── 10_A_move │ ├── 10_A_move.pro │ └── main.cpp ├── 10_B_move_c++11 │ └── 10_B_move_c++11.pro ├── 11_noncopyable │ ├── 11_noncopyable.pro │ └── main.cpp ├── 12_A_noncopyable_movable │ ├── 12_A_noncopyable_movable.pro │ └── main.cpp ├── 12_B_noncopyable_movable_c++11 │ └── 12_B_noncopyable_movable_c++11.pro ├── 13_algorithm │ ├── 13_algorithm.pro │ └── main.cpp ├── Chapter01.pro └── build-01_A_program_options_base-Desktop_Qt_5_9_1_MinGW_32bit-Debug │ ├── .qmake.stash │ ├── Makefile │ ├── Makefile.Debug │ └── Makefile.Release ├── Chapter02 ├── 01_scoped_ptr │ ├── 01_scoped_ptr.pro │ └── main.cpp ├── 02_shared_ptr │ ├── 02_shared_ptr.pro │ └── main.cpp ├── 03_scoped_array │ ├── 03_scoped_array.pro │ └── main.cpp ├── 04_shared_array │ ├── 04_shared_array.pro │ └── main.cpp ├── 05_function_fobject │ ├── 05_function_fobject.pro │ └── main.cpp ├── 06_function_fpointer │ ├── 06_function_fpointer.pro │ └── main.cpp ├── 07_function_lambda_c++11 │ ├── 07_function_lambda_c++11.pro │ └── main.cpp ├── 08_ptr_container_c++11 │ ├── 08_ptr_container_c++11.pro │ └── main.cpp ├── 09_scope_exit │ ├── 09_scope_exit.pro │ └── main.cpp ├── 10_base_from_member │ ├── 10_base_from_member.pro │ └── main.cpp └── Chapter02.pro ├── Chapter03 ├── 01_lexical_to_number │ ├── 01_lexical_to_number.pro │ └── main.cpp ├── 02_lexical_to_string │ ├── 02_lexical_to_string.pro │ └── main.cpp ├── 03_numeric_cast │ ├── 03_numeric_cast.pro │ └── main.cpp ├── 04_lexical_user_defined │ ├── 04_lexical_user_defined.pro │ └── main.cpp ├── 05_polymorphic_cast │ ├── 05_polymorphic_cast.pro │ └── main.cpp ├── 06_spirit │ ├── 06_spirit.pro │ └── main.cpp ├── 07_spirit_rules │ ├── 07_spirit_rules.pro │ └── main.cpp └── Chapter03.pro ├── Chapter04 ├── Chapter04.pro ├── conditional │ ├── 8341_Article.html │ ├── 8341_Article.xml │ ├── conditional.pro │ └── main.cpp ├── disable_if_c │ ├── disable_if_c.pro │ └── main.cpp ├── enable_if_c │ ├── enable_if_c.pro │ └── main.cpp ├── is_stdvector │ ├── is_stdvector.pro │ └── main.cpp ├── mpl_int_ │ ├── main.cpp │ └── mpl_int_.pro ├── static_assert │ ├── main.cpp │ └── static_assert.pro └── typeof │ ├── main.cpp │ └── typeof.pro ├── Chapter05 ├── Chapter05.pro ├── atomics │ ├── atomics.pro │ └── main.cpp ├── interruptions │ ├── interruptions.pro │ └── main.cpp ├── mutex │ ├── main.cpp │ └── mutex.pro ├── shared_lock │ ├── main.cpp │ └── shared_lock.pro ├── thread │ ├── main.cpp │ └── thread.pro ├── thread_group │ ├── main.cpp │ └── thread_group.pro ├── thread_specific_ptr │ ├── main.cpp │ └── thread_specific_ptr.pro └── work_queue │ ├── main.cpp │ └── work_queue.pro ├── Chapter06 ├── Chapter06.pro ├── conveyor │ ├── conveyor.pro │ └── main.cpp ├── exception_ptr │ ├── exception_ptr.pro │ └── main.cpp ├── nonblocking_barrier │ ├── main.cpp │ └── nonblocking_barrier.pro ├── tasks_processor_base │ ├── main.cpp │ ├── tasks_processor_base.hpp │ └── tasks_processor_base.pro ├── tasks_processor_multithread │ ├── main.cpp │ ├── tasks_processor_multithread.hpp │ └── tasks_processor_multithread.pro ├── tasks_processor_network │ ├── main.cpp │ ├── tasks_processor_network.hpp │ └── tasks_processor_network.pro ├── tasks_processor_signals │ ├── main.cpp │ ├── tasks_processor_signals.hpp │ └── tasks_processor_signals.pro └── tasks_processor_timers │ ├── main.cpp │ ├── tasks_processor_timers.hpp │ └── tasks_processor_timers.pro ├── Chapter07 ├── Chapter07.pro ├── case_conv │ ├── case_conv.pro │ └── main.cpp ├── format │ ├── format.pro │ └── main.cpp ├── iterator_range │ ├── iterator_range.pro │ └── main.cpp ├── regex_match │ ├── main.cpp │ └── regex_match.pro ├── regex_replace │ ├── main.cpp │ └── regex_replace.pro ├── string_algo │ ├── main.cpp │ └── string_algo.pro └── string_ref │ ├── main.cpp │ └── string_ref.pro ├── Chapter08 ├── Chapter08.pro ├── higher_order_metafunctions │ ├── higher_order_metafunctions.pro │ └── main.cpp ├── lazy │ ├── lazy.pro │ └── main.cpp ├── manipulating_vector_of_types │ ├── main.cpp │ └── manipulating_vector_of_types.pro ├── result_of_c++11 │ ├── main.cpp │ └── result_of_c++11.pro ├── splitting_tuple │ ├── main.cpp │ └── splitting_tuple.pro ├── tuple_to_string │ ├── main.cpp │ └── tuple_to_string.pro └── vector_of_types │ ├── main.cpp │ └── vector_of_types.pro ├── Chapter09 ├── Chapter09.pro ├── bimap │ ├── bimap.pro │ └── main.cpp ├── flat │ ├── flat.pro │ └── main.cpp ├── hash │ ├── hash.pro │ └── main.cpp ├── multiindex │ ├── main.cpp │ └── multiindex.pro ├── slist_and_pool │ ├── main.cpp │ └── slist_and_pool.pro └── unordered │ ├── main.cpp │ └── unordered.pro ├── Chapter10 ├── Chapter10.pro ├── constexpr_c++11 │ ├── constexpr_c++11.pro │ └── main.cpp ├── export_import │ ├── export_import.pro │ └── main.cpp ├── extern_template │ ├── extern_template.pro │ ├── header.hpp │ ├── main.cpp │ └── source.cpp ├── int128 │ ├── int128.pro │ └── main.cpp ├── my_library │ ├── my_library.cpp │ ├── my_library.hpp │ └── my_library.pro ├── no_rtti │ ├── main.cpp │ └── no_rtti.pro ├── noexcept_c++11 │ ├── main.cpp │ └── noexcept_c++11.pro └── version │ ├── main.cpp │ └── version.pro ├── Chapter11 ├── Chapter11.pro ├── coroutines │ ├── coroutines.pro │ └── main.cpp ├── erasing_files │ ├── erasing_files.pro │ └── main.cpp ├── interprocess_basics │ ├── interprocess_basics.pro │ └── main.cpp ├── interprocess_pointers │ ├── interprocess_pointers.pro │ └── main.cpp ├── interprocess_queue │ ├── interprocess_queue.pro │ └── main.cpp ├── listing_files │ ├── listing_files.pro │ └── main.cpp └── reading_files │ ├── main.cpp │ └── reading_files.pro ├── Chapter12 ├── Chapter12.pro ├── gil │ ├── gil.pro │ └── main.cpp ├── graph │ ├── graph.pro │ └── main.cpp ├── graph_vis │ ├── graph_vis.pro │ └── main.cpp ├── math │ ├── main.cpp │ └── math.pro ├── random │ ├── main.cpp │ └── random.pro ├── testing │ ├── main.cpp │ └── testing.pro └── testing_advanced │ ├── developer1.cpp │ ├── developer2.cpp │ ├── foo.cpp │ ├── foo.hpp │ ├── main.cpp │ └── testing_advanced.pro ├── LICENSE └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/.gitignore -------------------------------------------------------------------------------- /Chapter01/01_A_program_options_base/01_A_program_options_base.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter01/01_A_program_options_base/01_A_program_options_base.pro -------------------------------------------------------------------------------- /Chapter01/01_A_program_options_base/01_A_program_options_base.pro.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter01/01_A_program_options_base/01_A_program_options_base.pro.user -------------------------------------------------------------------------------- /Chapter01/01_A_program_options_base/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter01/01_A_program_options_base/main.cpp -------------------------------------------------------------------------------- /Chapter01/01_B_program_options_short/01_B_program_options_short.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter01/01_B_program_options_short/01_B_program_options_short.pro -------------------------------------------------------------------------------- /Chapter01/01_B_program_options_short/apples_oranges.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter01/01_B_program_options_short/apples_oranges.cfg -------------------------------------------------------------------------------- /Chapter01/01_B_program_options_short/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter01/01_B_program_options_short/main.cpp -------------------------------------------------------------------------------- /Chapter01/02_any/02_any.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter01/02_any/02_any.pro -------------------------------------------------------------------------------- /Chapter01/02_any/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter01/02_any/main.cpp -------------------------------------------------------------------------------- /Chapter01/03_variant/03_variant.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter01/03_variant/03_variant.pro -------------------------------------------------------------------------------- /Chapter01/03_variant/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter01/03_variant/main.cpp -------------------------------------------------------------------------------- /Chapter01/04_A_any_db_example/04_A_any_db_example.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter01/04_A_any_db_example/04_A_any_db_example.pro -------------------------------------------------------------------------------- /Chapter01/04_A_any_db_example/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter01/04_A_any_db_example/main.cpp -------------------------------------------------------------------------------- /Chapter01/04_B_variant_db_example/04_B_variant_db_example.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter01/04_B_variant_db_example/04_B_variant_db_example.pro -------------------------------------------------------------------------------- /Chapter01/04_B_variant_db_example/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter01/04_B_variant_db_example/main.cpp -------------------------------------------------------------------------------- /Chapter01/05_optional/05_optional.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter01/05_optional/05_optional.pro -------------------------------------------------------------------------------- /Chapter01/05_optional/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter01/05_optional/main.cpp -------------------------------------------------------------------------------- /Chapter01/06_array/06_array.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter01/06_array/06_array.pro -------------------------------------------------------------------------------- /Chapter01/06_array/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter01/06_array/main.cpp -------------------------------------------------------------------------------- /Chapter01/07_A_tuple/07_A_tuple.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter01/07_A_tuple/07_A_tuple.pro -------------------------------------------------------------------------------- /Chapter01/07_A_tuple/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter01/07_A_tuple/main.cpp -------------------------------------------------------------------------------- /Chapter01/07_B_tuple_construction_order/07_B_tuple_construction_order.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter01/07_B_tuple_construction_order/07_B_tuple_construction_order.pro -------------------------------------------------------------------------------- /Chapter01/07_B_tuple_construction_order/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter01/07_B_tuple_construction_order/main.cpp -------------------------------------------------------------------------------- /Chapter01/08_bind/08_bind.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter01/08_bind/08_bind.pro -------------------------------------------------------------------------------- /Chapter01/08_bind/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter01/08_bind/main.cpp -------------------------------------------------------------------------------- /Chapter01/09_type_index/09_type_index.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter01/09_type_index/09_type_index.pro -------------------------------------------------------------------------------- /Chapter01/09_type_index/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter01/09_type_index/main.cpp -------------------------------------------------------------------------------- /Chapter01/10_A_move/10_A_move.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter01/10_A_move/10_A_move.pro -------------------------------------------------------------------------------- /Chapter01/10_A_move/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter01/10_A_move/main.cpp -------------------------------------------------------------------------------- /Chapter01/10_B_move_c++11/10_B_move_c++11.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter01/10_B_move_c++11/10_B_move_c++11.pro -------------------------------------------------------------------------------- /Chapter01/11_noncopyable/11_noncopyable.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter01/11_noncopyable/11_noncopyable.pro -------------------------------------------------------------------------------- /Chapter01/11_noncopyable/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter01/11_noncopyable/main.cpp -------------------------------------------------------------------------------- /Chapter01/12_A_noncopyable_movable/12_A_noncopyable_movable.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter01/12_A_noncopyable_movable/12_A_noncopyable_movable.pro -------------------------------------------------------------------------------- /Chapter01/12_A_noncopyable_movable/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter01/12_A_noncopyable_movable/main.cpp -------------------------------------------------------------------------------- /Chapter01/12_B_noncopyable_movable_c++11/12_B_noncopyable_movable_c++11.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter01/12_B_noncopyable_movable_c++11/12_B_noncopyable_movable_c++11.pro -------------------------------------------------------------------------------- /Chapter01/13_algorithm/13_algorithm.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter01/13_algorithm/13_algorithm.pro -------------------------------------------------------------------------------- /Chapter01/13_algorithm/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter01/13_algorithm/main.cpp -------------------------------------------------------------------------------- /Chapter01/Chapter01.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter01/Chapter01.pro -------------------------------------------------------------------------------- /Chapter01/build-01_A_program_options_base-Desktop_Qt_5_9_1_MinGW_32bit-Debug/.qmake.stash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter01/build-01_A_program_options_base-Desktop_Qt_5_9_1_MinGW_32bit-Debug/.qmake.stash -------------------------------------------------------------------------------- /Chapter01/build-01_A_program_options_base-Desktop_Qt_5_9_1_MinGW_32bit-Debug/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter01/build-01_A_program_options_base-Desktop_Qt_5_9_1_MinGW_32bit-Debug/Makefile -------------------------------------------------------------------------------- /Chapter01/build-01_A_program_options_base-Desktop_Qt_5_9_1_MinGW_32bit-Debug/Makefile.Debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter01/build-01_A_program_options_base-Desktop_Qt_5_9_1_MinGW_32bit-Debug/Makefile.Debug -------------------------------------------------------------------------------- /Chapter01/build-01_A_program_options_base-Desktop_Qt_5_9_1_MinGW_32bit-Debug/Makefile.Release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter01/build-01_A_program_options_base-Desktop_Qt_5_9_1_MinGW_32bit-Debug/Makefile.Release -------------------------------------------------------------------------------- /Chapter02/01_scoped_ptr/01_scoped_ptr.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter02/01_scoped_ptr/01_scoped_ptr.pro -------------------------------------------------------------------------------- /Chapter02/01_scoped_ptr/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter02/01_scoped_ptr/main.cpp -------------------------------------------------------------------------------- /Chapter02/02_shared_ptr/02_shared_ptr.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter02/02_shared_ptr/02_shared_ptr.pro -------------------------------------------------------------------------------- /Chapter02/02_shared_ptr/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter02/02_shared_ptr/main.cpp -------------------------------------------------------------------------------- /Chapter02/03_scoped_array/03_scoped_array.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter02/03_scoped_array/03_scoped_array.pro -------------------------------------------------------------------------------- /Chapter02/03_scoped_array/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter02/03_scoped_array/main.cpp -------------------------------------------------------------------------------- /Chapter02/04_shared_array/04_shared_array.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter02/04_shared_array/04_shared_array.pro -------------------------------------------------------------------------------- /Chapter02/04_shared_array/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter02/04_shared_array/main.cpp -------------------------------------------------------------------------------- /Chapter02/05_function_fobject/05_function_fobject.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter02/05_function_fobject/05_function_fobject.pro -------------------------------------------------------------------------------- /Chapter02/05_function_fobject/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter02/05_function_fobject/main.cpp -------------------------------------------------------------------------------- /Chapter02/06_function_fpointer/06_function_fpointer.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter02/06_function_fpointer/06_function_fpointer.pro -------------------------------------------------------------------------------- /Chapter02/06_function_fpointer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter02/06_function_fpointer/main.cpp -------------------------------------------------------------------------------- /Chapter02/07_function_lambda_c++11/07_function_lambda_c++11.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter02/07_function_lambda_c++11/07_function_lambda_c++11.pro -------------------------------------------------------------------------------- /Chapter02/07_function_lambda_c++11/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter02/07_function_lambda_c++11/main.cpp -------------------------------------------------------------------------------- /Chapter02/08_ptr_container_c++11/08_ptr_container_c++11.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter02/08_ptr_container_c++11/08_ptr_container_c++11.pro -------------------------------------------------------------------------------- /Chapter02/08_ptr_container_c++11/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter02/08_ptr_container_c++11/main.cpp -------------------------------------------------------------------------------- /Chapter02/09_scope_exit/09_scope_exit.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter02/09_scope_exit/09_scope_exit.pro -------------------------------------------------------------------------------- /Chapter02/09_scope_exit/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter02/09_scope_exit/main.cpp -------------------------------------------------------------------------------- /Chapter02/10_base_from_member/10_base_from_member.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter02/10_base_from_member/10_base_from_member.pro -------------------------------------------------------------------------------- /Chapter02/10_base_from_member/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter02/10_base_from_member/main.cpp -------------------------------------------------------------------------------- /Chapter02/Chapter02.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter02/Chapter02.pro -------------------------------------------------------------------------------- /Chapter03/01_lexical_to_number/01_lexical_to_number.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter03/01_lexical_to_number/01_lexical_to_number.pro -------------------------------------------------------------------------------- /Chapter03/01_lexical_to_number/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter03/01_lexical_to_number/main.cpp -------------------------------------------------------------------------------- /Chapter03/02_lexical_to_string/02_lexical_to_string.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter03/02_lexical_to_string/02_lexical_to_string.pro -------------------------------------------------------------------------------- /Chapter03/02_lexical_to_string/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter03/02_lexical_to_string/main.cpp -------------------------------------------------------------------------------- /Chapter03/03_numeric_cast/03_numeric_cast.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter03/03_numeric_cast/03_numeric_cast.pro -------------------------------------------------------------------------------- /Chapter03/03_numeric_cast/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter03/03_numeric_cast/main.cpp -------------------------------------------------------------------------------- /Chapter03/04_lexical_user_defined/04_lexical_user_defined.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter03/04_lexical_user_defined/04_lexical_user_defined.pro -------------------------------------------------------------------------------- /Chapter03/04_lexical_user_defined/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter03/04_lexical_user_defined/main.cpp -------------------------------------------------------------------------------- /Chapter03/05_polymorphic_cast/05_polymorphic_cast.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter03/05_polymorphic_cast/05_polymorphic_cast.pro -------------------------------------------------------------------------------- /Chapter03/05_polymorphic_cast/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter03/05_polymorphic_cast/main.cpp -------------------------------------------------------------------------------- /Chapter03/06_spirit/06_spirit.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter03/06_spirit/06_spirit.pro -------------------------------------------------------------------------------- /Chapter03/06_spirit/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter03/06_spirit/main.cpp -------------------------------------------------------------------------------- /Chapter03/07_spirit_rules/07_spirit_rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter03/07_spirit_rules/07_spirit_rules.pro -------------------------------------------------------------------------------- /Chapter03/07_spirit_rules/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter03/07_spirit_rules/main.cpp -------------------------------------------------------------------------------- /Chapter03/Chapter03.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter03/Chapter03.pro -------------------------------------------------------------------------------- /Chapter04/Chapter04.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter04/Chapter04.pro -------------------------------------------------------------------------------- /Chapter04/conditional/8341_Article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter04/conditional/8341_Article.html -------------------------------------------------------------------------------- /Chapter04/conditional/8341_Article.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter04/conditional/8341_Article.xml -------------------------------------------------------------------------------- /Chapter04/conditional/conditional.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter04/conditional/conditional.pro -------------------------------------------------------------------------------- /Chapter04/conditional/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter04/conditional/main.cpp -------------------------------------------------------------------------------- /Chapter04/disable_if_c/disable_if_c.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter04/disable_if_c/disable_if_c.pro -------------------------------------------------------------------------------- /Chapter04/disable_if_c/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter04/disable_if_c/main.cpp -------------------------------------------------------------------------------- /Chapter04/enable_if_c/enable_if_c.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter04/enable_if_c/enable_if_c.pro -------------------------------------------------------------------------------- /Chapter04/enable_if_c/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter04/enable_if_c/main.cpp -------------------------------------------------------------------------------- /Chapter04/is_stdvector/is_stdvector.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter04/is_stdvector/is_stdvector.pro -------------------------------------------------------------------------------- /Chapter04/is_stdvector/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter04/is_stdvector/main.cpp -------------------------------------------------------------------------------- /Chapter04/mpl_int_/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter04/mpl_int_/main.cpp -------------------------------------------------------------------------------- /Chapter04/mpl_int_/mpl_int_.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter04/mpl_int_/mpl_int_.pro -------------------------------------------------------------------------------- /Chapter04/static_assert/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter04/static_assert/main.cpp -------------------------------------------------------------------------------- /Chapter04/static_assert/static_assert.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter04/static_assert/static_assert.pro -------------------------------------------------------------------------------- /Chapter04/typeof/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter04/typeof/main.cpp -------------------------------------------------------------------------------- /Chapter04/typeof/typeof.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter04/typeof/typeof.pro -------------------------------------------------------------------------------- /Chapter05/Chapter05.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter05/Chapter05.pro -------------------------------------------------------------------------------- /Chapter05/atomics/atomics.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter05/atomics/atomics.pro -------------------------------------------------------------------------------- /Chapter05/atomics/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter05/atomics/main.cpp -------------------------------------------------------------------------------- /Chapter05/interruptions/interruptions.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter05/interruptions/interruptions.pro -------------------------------------------------------------------------------- /Chapter05/interruptions/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter05/interruptions/main.cpp -------------------------------------------------------------------------------- /Chapter05/mutex/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter05/mutex/main.cpp -------------------------------------------------------------------------------- /Chapter05/mutex/mutex.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter05/mutex/mutex.pro -------------------------------------------------------------------------------- /Chapter05/shared_lock/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter05/shared_lock/main.cpp -------------------------------------------------------------------------------- /Chapter05/shared_lock/shared_lock.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter05/shared_lock/shared_lock.pro -------------------------------------------------------------------------------- /Chapter05/thread/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter05/thread/main.cpp -------------------------------------------------------------------------------- /Chapter05/thread/thread.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter05/thread/thread.pro -------------------------------------------------------------------------------- /Chapter05/thread_group/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter05/thread_group/main.cpp -------------------------------------------------------------------------------- /Chapter05/thread_group/thread_group.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter05/thread_group/thread_group.pro -------------------------------------------------------------------------------- /Chapter05/thread_specific_ptr/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter05/thread_specific_ptr/main.cpp -------------------------------------------------------------------------------- /Chapter05/thread_specific_ptr/thread_specific_ptr.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter05/thread_specific_ptr/thread_specific_ptr.pro -------------------------------------------------------------------------------- /Chapter05/work_queue/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter05/work_queue/main.cpp -------------------------------------------------------------------------------- /Chapter05/work_queue/work_queue.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter05/work_queue/work_queue.pro -------------------------------------------------------------------------------- /Chapter06/Chapter06.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter06/Chapter06.pro -------------------------------------------------------------------------------- /Chapter06/conveyor/conveyor.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter06/conveyor/conveyor.pro -------------------------------------------------------------------------------- /Chapter06/conveyor/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter06/conveyor/main.cpp -------------------------------------------------------------------------------- /Chapter06/exception_ptr/exception_ptr.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter06/exception_ptr/exception_ptr.pro -------------------------------------------------------------------------------- /Chapter06/exception_ptr/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter06/exception_ptr/main.cpp -------------------------------------------------------------------------------- /Chapter06/nonblocking_barrier/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter06/nonblocking_barrier/main.cpp -------------------------------------------------------------------------------- /Chapter06/nonblocking_barrier/nonblocking_barrier.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter06/nonblocking_barrier/nonblocking_barrier.pro -------------------------------------------------------------------------------- /Chapter06/tasks_processor_base/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter06/tasks_processor_base/main.cpp -------------------------------------------------------------------------------- /Chapter06/tasks_processor_base/tasks_processor_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter06/tasks_processor_base/tasks_processor_base.hpp -------------------------------------------------------------------------------- /Chapter06/tasks_processor_base/tasks_processor_base.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter06/tasks_processor_base/tasks_processor_base.pro -------------------------------------------------------------------------------- /Chapter06/tasks_processor_multithread/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter06/tasks_processor_multithread/main.cpp -------------------------------------------------------------------------------- /Chapter06/tasks_processor_multithread/tasks_processor_multithread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter06/tasks_processor_multithread/tasks_processor_multithread.hpp -------------------------------------------------------------------------------- /Chapter06/tasks_processor_multithread/tasks_processor_multithread.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter06/tasks_processor_multithread/tasks_processor_multithread.pro -------------------------------------------------------------------------------- /Chapter06/tasks_processor_network/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter06/tasks_processor_network/main.cpp -------------------------------------------------------------------------------- /Chapter06/tasks_processor_network/tasks_processor_network.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter06/tasks_processor_network/tasks_processor_network.hpp -------------------------------------------------------------------------------- /Chapter06/tasks_processor_network/tasks_processor_network.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter06/tasks_processor_network/tasks_processor_network.pro -------------------------------------------------------------------------------- /Chapter06/tasks_processor_signals/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter06/tasks_processor_signals/main.cpp -------------------------------------------------------------------------------- /Chapter06/tasks_processor_signals/tasks_processor_signals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter06/tasks_processor_signals/tasks_processor_signals.hpp -------------------------------------------------------------------------------- /Chapter06/tasks_processor_signals/tasks_processor_signals.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter06/tasks_processor_signals/tasks_processor_signals.pro -------------------------------------------------------------------------------- /Chapter06/tasks_processor_timers/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter06/tasks_processor_timers/main.cpp -------------------------------------------------------------------------------- /Chapter06/tasks_processor_timers/tasks_processor_timers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter06/tasks_processor_timers/tasks_processor_timers.hpp -------------------------------------------------------------------------------- /Chapter06/tasks_processor_timers/tasks_processor_timers.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter06/tasks_processor_timers/tasks_processor_timers.pro -------------------------------------------------------------------------------- /Chapter07/Chapter07.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter07/Chapter07.pro -------------------------------------------------------------------------------- /Chapter07/case_conv/case_conv.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter07/case_conv/case_conv.pro -------------------------------------------------------------------------------- /Chapter07/case_conv/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter07/case_conv/main.cpp -------------------------------------------------------------------------------- /Chapter07/format/format.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter07/format/format.pro -------------------------------------------------------------------------------- /Chapter07/format/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter07/format/main.cpp -------------------------------------------------------------------------------- /Chapter07/iterator_range/iterator_range.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter07/iterator_range/iterator_range.pro -------------------------------------------------------------------------------- /Chapter07/iterator_range/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter07/iterator_range/main.cpp -------------------------------------------------------------------------------- /Chapter07/regex_match/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter07/regex_match/main.cpp -------------------------------------------------------------------------------- /Chapter07/regex_match/regex_match.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter07/regex_match/regex_match.pro -------------------------------------------------------------------------------- /Chapter07/regex_replace/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter07/regex_replace/main.cpp -------------------------------------------------------------------------------- /Chapter07/regex_replace/regex_replace.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter07/regex_replace/regex_replace.pro -------------------------------------------------------------------------------- /Chapter07/string_algo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter07/string_algo/main.cpp -------------------------------------------------------------------------------- /Chapter07/string_algo/string_algo.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter07/string_algo/string_algo.pro -------------------------------------------------------------------------------- /Chapter07/string_ref/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter07/string_ref/main.cpp -------------------------------------------------------------------------------- /Chapter07/string_ref/string_ref.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter07/string_ref/string_ref.pro -------------------------------------------------------------------------------- /Chapter08/Chapter08.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter08/Chapter08.pro -------------------------------------------------------------------------------- /Chapter08/higher_order_metafunctions/higher_order_metafunctions.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter08/higher_order_metafunctions/higher_order_metafunctions.pro -------------------------------------------------------------------------------- /Chapter08/higher_order_metafunctions/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter08/higher_order_metafunctions/main.cpp -------------------------------------------------------------------------------- /Chapter08/lazy/lazy.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter08/lazy/lazy.pro -------------------------------------------------------------------------------- /Chapter08/lazy/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter08/lazy/main.cpp -------------------------------------------------------------------------------- /Chapter08/manipulating_vector_of_types/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter08/manipulating_vector_of_types/main.cpp -------------------------------------------------------------------------------- /Chapter08/manipulating_vector_of_types/manipulating_vector_of_types.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter08/manipulating_vector_of_types/manipulating_vector_of_types.pro -------------------------------------------------------------------------------- /Chapter08/result_of_c++11/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter08/result_of_c++11/main.cpp -------------------------------------------------------------------------------- /Chapter08/result_of_c++11/result_of_c++11.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter08/result_of_c++11/result_of_c++11.pro -------------------------------------------------------------------------------- /Chapter08/splitting_tuple/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter08/splitting_tuple/main.cpp -------------------------------------------------------------------------------- /Chapter08/splitting_tuple/splitting_tuple.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter08/splitting_tuple/splitting_tuple.pro -------------------------------------------------------------------------------- /Chapter08/tuple_to_string/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter08/tuple_to_string/main.cpp -------------------------------------------------------------------------------- /Chapter08/tuple_to_string/tuple_to_string.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter08/tuple_to_string/tuple_to_string.pro -------------------------------------------------------------------------------- /Chapter08/vector_of_types/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter08/vector_of_types/main.cpp -------------------------------------------------------------------------------- /Chapter08/vector_of_types/vector_of_types.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter08/vector_of_types/vector_of_types.pro -------------------------------------------------------------------------------- /Chapter09/Chapter09.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter09/Chapter09.pro -------------------------------------------------------------------------------- /Chapter09/bimap/bimap.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter09/bimap/bimap.pro -------------------------------------------------------------------------------- /Chapter09/bimap/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter09/bimap/main.cpp -------------------------------------------------------------------------------- /Chapter09/flat/flat.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter09/flat/flat.pro -------------------------------------------------------------------------------- /Chapter09/flat/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter09/flat/main.cpp -------------------------------------------------------------------------------- /Chapter09/hash/hash.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter09/hash/hash.pro -------------------------------------------------------------------------------- /Chapter09/hash/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter09/hash/main.cpp -------------------------------------------------------------------------------- /Chapter09/multiindex/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter09/multiindex/main.cpp -------------------------------------------------------------------------------- /Chapter09/multiindex/multiindex.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter09/multiindex/multiindex.pro -------------------------------------------------------------------------------- /Chapter09/slist_and_pool/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter09/slist_and_pool/main.cpp -------------------------------------------------------------------------------- /Chapter09/slist_and_pool/slist_and_pool.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter09/slist_and_pool/slist_and_pool.pro -------------------------------------------------------------------------------- /Chapter09/unordered/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter09/unordered/main.cpp -------------------------------------------------------------------------------- /Chapter09/unordered/unordered.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter09/unordered/unordered.pro -------------------------------------------------------------------------------- /Chapter10/Chapter10.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter10/Chapter10.pro -------------------------------------------------------------------------------- /Chapter10/constexpr_c++11/constexpr_c++11.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter10/constexpr_c++11/constexpr_c++11.pro -------------------------------------------------------------------------------- /Chapter10/constexpr_c++11/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter10/constexpr_c++11/main.cpp -------------------------------------------------------------------------------- /Chapter10/export_import/export_import.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter10/export_import/export_import.pro -------------------------------------------------------------------------------- /Chapter10/export_import/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter10/export_import/main.cpp -------------------------------------------------------------------------------- /Chapter10/extern_template/extern_template.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter10/extern_template/extern_template.pro -------------------------------------------------------------------------------- /Chapter10/extern_template/header.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter10/extern_template/header.hpp -------------------------------------------------------------------------------- /Chapter10/extern_template/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter10/extern_template/main.cpp -------------------------------------------------------------------------------- /Chapter10/extern_template/source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter10/extern_template/source.cpp -------------------------------------------------------------------------------- /Chapter10/int128/int128.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter10/int128/int128.pro -------------------------------------------------------------------------------- /Chapter10/int128/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter10/int128/main.cpp -------------------------------------------------------------------------------- /Chapter10/my_library/my_library.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter10/my_library/my_library.cpp -------------------------------------------------------------------------------- /Chapter10/my_library/my_library.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter10/my_library/my_library.hpp -------------------------------------------------------------------------------- /Chapter10/my_library/my_library.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter10/my_library/my_library.pro -------------------------------------------------------------------------------- /Chapter10/no_rtti/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter10/no_rtti/main.cpp -------------------------------------------------------------------------------- /Chapter10/no_rtti/no_rtti.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter10/no_rtti/no_rtti.pro -------------------------------------------------------------------------------- /Chapter10/noexcept_c++11/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter10/noexcept_c++11/main.cpp -------------------------------------------------------------------------------- /Chapter10/noexcept_c++11/noexcept_c++11.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter10/noexcept_c++11/noexcept_c++11.pro -------------------------------------------------------------------------------- /Chapter10/version/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter10/version/main.cpp -------------------------------------------------------------------------------- /Chapter10/version/version.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter10/version/version.pro -------------------------------------------------------------------------------- /Chapter11/Chapter11.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter11/Chapter11.pro -------------------------------------------------------------------------------- /Chapter11/coroutines/coroutines.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter11/coroutines/coroutines.pro -------------------------------------------------------------------------------- /Chapter11/coroutines/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter11/coroutines/main.cpp -------------------------------------------------------------------------------- /Chapter11/erasing_files/erasing_files.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter11/erasing_files/erasing_files.pro -------------------------------------------------------------------------------- /Chapter11/erasing_files/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter11/erasing_files/main.cpp -------------------------------------------------------------------------------- /Chapter11/interprocess_basics/interprocess_basics.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter11/interprocess_basics/interprocess_basics.pro -------------------------------------------------------------------------------- /Chapter11/interprocess_basics/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter11/interprocess_basics/main.cpp -------------------------------------------------------------------------------- /Chapter11/interprocess_pointers/interprocess_pointers.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter11/interprocess_pointers/interprocess_pointers.pro -------------------------------------------------------------------------------- /Chapter11/interprocess_pointers/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter11/interprocess_pointers/main.cpp -------------------------------------------------------------------------------- /Chapter11/interprocess_queue/interprocess_queue.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter11/interprocess_queue/interprocess_queue.pro -------------------------------------------------------------------------------- /Chapter11/interprocess_queue/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter11/interprocess_queue/main.cpp -------------------------------------------------------------------------------- /Chapter11/listing_files/listing_files.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter11/listing_files/listing_files.pro -------------------------------------------------------------------------------- /Chapter11/listing_files/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter11/listing_files/main.cpp -------------------------------------------------------------------------------- /Chapter11/reading_files/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter11/reading_files/main.cpp -------------------------------------------------------------------------------- /Chapter11/reading_files/reading_files.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter11/reading_files/reading_files.pro -------------------------------------------------------------------------------- /Chapter12/Chapter12.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter12/Chapter12.pro -------------------------------------------------------------------------------- /Chapter12/gil/gil.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter12/gil/gil.pro -------------------------------------------------------------------------------- /Chapter12/gil/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter12/gil/main.cpp -------------------------------------------------------------------------------- /Chapter12/graph/graph.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter12/graph/graph.pro -------------------------------------------------------------------------------- /Chapter12/graph/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter12/graph/main.cpp -------------------------------------------------------------------------------- /Chapter12/graph_vis/graph_vis.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter12/graph_vis/graph_vis.pro -------------------------------------------------------------------------------- /Chapter12/graph_vis/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter12/graph_vis/main.cpp -------------------------------------------------------------------------------- /Chapter12/math/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter12/math/main.cpp -------------------------------------------------------------------------------- /Chapter12/math/math.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter12/math/math.pro -------------------------------------------------------------------------------- /Chapter12/random/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter12/random/main.cpp -------------------------------------------------------------------------------- /Chapter12/random/random.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter12/random/random.pro -------------------------------------------------------------------------------- /Chapter12/testing/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter12/testing/main.cpp -------------------------------------------------------------------------------- /Chapter12/testing/testing.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter12/testing/testing.pro -------------------------------------------------------------------------------- /Chapter12/testing_advanced/developer1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter12/testing_advanced/developer1.cpp -------------------------------------------------------------------------------- /Chapter12/testing_advanced/developer2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter12/testing_advanced/developer2.cpp -------------------------------------------------------------------------------- /Chapter12/testing_advanced/foo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter12/testing_advanced/foo.cpp -------------------------------------------------------------------------------- /Chapter12/testing_advanced/foo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter12/testing_advanced/foo.hpp -------------------------------------------------------------------------------- /Chapter12/testing_advanced/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter12/testing_advanced/main.cpp -------------------------------------------------------------------------------- /Chapter12/testing_advanced/testing_advanced.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/Chapter12/testing_advanced/testing_advanced.pro -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Boost-Cpp-Application-Development-Cookbook-Second-Edition/HEAD/README.md --------------------------------------------------------------------------------