├── .gitignore ├── DebuggingTipsSamples ├── DebugTrace │ ├── DebugTrace.cpp │ ├── DebugTrace.vcxproj │ └── DebugTrace.vcxproj.filters ├── DebuggingTipsSamples.cpp ├── DebuggingTipsSamples.sln ├── DebuggingTipsSamples.vcxproj ├── NatvisFile.natvis └── debuggingSamplesBF.zip ├── README.md ├── cpp11samples ├── README.md ├── cpp11samples.cpp ├── cpp11samples.sln └── cpp11samples.vcxproj ├── cpp17 ├── CSV Reader │ ├── README.md │ ├── csv_reader.cpp │ ├── csv_reader_par.cpp │ ├── reader_data.zip │ └── scope_timer.h ├── README.md ├── VariantTests │ ├── VariantTests.cpp │ └── VariantTests.vcxproj ├── cpp17.sln ├── filesystemTest.cpp ├── filesystemTest.vcxproj └── searchers │ ├── searchers.cpp │ ├── searchers.vcxproj │ ├── searchers.vcxproj.filters │ └── simpleperf.h ├── cpp20 ├── Calendar │ ├── Calendar.cpp │ ├── Calendar.vcxproj │ ├── Calendar.vcxproj.filters │ └── roll with holidays.cpp ├── CoroutineTest │ ├── CoroutineTest.cpp │ ├── CoroutineTest.vcxproj │ └── CoroutineTest.vcxproj.filters ├── Cpp20Ex.sln ├── ModulesTest │ ├── HelloWorld.ixx │ ├── ModulesTest.cpp │ ├── ModulesTest.vcxproj │ ├── ModulesTest.vcxproj.filters │ ├── MyClass.cpp │ └── MyClass.h ├── Ranges │ ├── Ranges.cpp │ ├── Ranges.vcxproj │ └── Ranges.vcxproj.filters ├── RomanConversionModules │ ├── checker.ixx │ ├── main.cpp │ ├── roman.ixx │ ├── romanConversionModules.filters │ ├── romanConversionModules.sln │ └── romanConversionModules.vcxproj ├── constexpr │ ├── constexpr.cpp │ ├── constexpr.vcxproj │ ├── constexpr.vcxproj.filters │ └── parens.cpp └── stateMachine │ ├── helper.ixx │ ├── newGame.ixx │ ├── newGameImpl.cpp │ ├── oldGame.ixx │ ├── oldGameImpl.cpp │ ├── shopping.ixx │ ├── shoppingImpl.cpp │ ├── stateMachine.cpp │ ├── stateMachine.vcxproj │ └── stateMachine.vcxproj.filters ├── file_attribs_test └── FileAttribsTest.cpp ├── filterElements ├── README.md ├── all_combined │ ├── all_combined.cpp │ ├── all_combined.vcxproj │ └── all_combined.vcxproj.filters ├── filters.cpp ├── filters.sln ├── filters.vcxproj └── simpleperf.h ├── float_double ├── float_double.cpp ├── float_double.sln ├── float_double.vcxproj └── float_double.vcxproj.filters ├── includeTest ├── .gitignore ├── docs │ ├── 1_experiment_full_mat.md │ └── 1_experiment_full_mat.xlsx ├── generator │ ├── ClassGenerator.cpp │ ├── ClassGenerator.h │ ├── SourceFile.cpp │ ├── SourceFile.h │ ├── generator.cpp │ ├── generator.vcxproj │ ├── generator.vcxproj.filters │ ├── generator.vcxproj.user │ ├── generator_v1.cpp │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── includeTestOutput │ ├── includeTest.vcxproj │ ├── includeTest.vcxproj.filters │ ├── includeTest.vcxproj.user │ └── includeTestGcc.dev ├── inludeTest.sln └── readme.md ├── lazy_init ├── start_employee.cpp └── with_optional.cpp ├── ogl_picking_old ├── material_point.cpp ├── picking_only.7z ├── picking_test.7z ├── picking_test.cpp └── readme.md ├── temp └── lazymj.md ├── tmp.md └── trie ├── Perf ├── simpleperf.h ├── trie-perf.vcxproj ├── trie-perf.vcxproj.filters └── trieperf.cpp ├── Tests ├── Tests.vcxproj ├── packages.config └── test.cpp ├── trie.cpp ├── trie.h ├── trie.sln ├── trie.vcxproj ├── trie.vcxproj.filters └── trietest.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/.gitignore -------------------------------------------------------------------------------- /DebuggingTipsSamples/DebugTrace/DebugTrace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/DebuggingTipsSamples/DebugTrace/DebugTrace.cpp -------------------------------------------------------------------------------- /DebuggingTipsSamples/DebugTrace/DebugTrace.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/DebuggingTipsSamples/DebugTrace/DebugTrace.vcxproj -------------------------------------------------------------------------------- /DebuggingTipsSamples/DebugTrace/DebugTrace.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/DebuggingTipsSamples/DebugTrace/DebugTrace.vcxproj.filters -------------------------------------------------------------------------------- /DebuggingTipsSamples/DebuggingTipsSamples.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/DebuggingTipsSamples/DebuggingTipsSamples.cpp -------------------------------------------------------------------------------- /DebuggingTipsSamples/DebuggingTipsSamples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/DebuggingTipsSamples/DebuggingTipsSamples.sln -------------------------------------------------------------------------------- /DebuggingTipsSamples/DebuggingTipsSamples.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/DebuggingTipsSamples/DebuggingTipsSamples.vcxproj -------------------------------------------------------------------------------- /DebuggingTipsSamples/NatvisFile.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/DebuggingTipsSamples/NatvisFile.natvis -------------------------------------------------------------------------------- /DebuggingTipsSamples/debuggingSamplesBF.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/DebuggingTipsSamples/debuggingSamplesBF.zip -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/README.md -------------------------------------------------------------------------------- /cpp11samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/cpp11samples/README.md -------------------------------------------------------------------------------- /cpp11samples/cpp11samples.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/cpp11samples/cpp11samples.cpp -------------------------------------------------------------------------------- /cpp11samples/cpp11samples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/cpp11samples/cpp11samples.sln -------------------------------------------------------------------------------- /cpp11samples/cpp11samples.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/cpp11samples/cpp11samples.vcxproj -------------------------------------------------------------------------------- /cpp17/CSV Reader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/cpp17/CSV Reader/README.md -------------------------------------------------------------------------------- /cpp17/CSV Reader/csv_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/cpp17/CSV Reader/csv_reader.cpp -------------------------------------------------------------------------------- /cpp17/CSV Reader/csv_reader_par.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/cpp17/CSV Reader/csv_reader_par.cpp -------------------------------------------------------------------------------- /cpp17/CSV Reader/reader_data.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/cpp17/CSV Reader/reader_data.zip -------------------------------------------------------------------------------- /cpp17/CSV Reader/scope_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/cpp17/CSV Reader/scope_timer.h -------------------------------------------------------------------------------- /cpp17/README.md: -------------------------------------------------------------------------------- 1 | #cpp17# 2 | samples for C++17 series 3 | -------------------------------------------------------------------------------- /cpp17/VariantTests/VariantTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/cpp17/VariantTests/VariantTests.cpp -------------------------------------------------------------------------------- /cpp17/VariantTests/VariantTests.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/cpp17/VariantTests/VariantTests.vcxproj -------------------------------------------------------------------------------- /cpp17/cpp17.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/cpp17/cpp17.sln -------------------------------------------------------------------------------- /cpp17/filesystemTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/cpp17/filesystemTest.cpp -------------------------------------------------------------------------------- /cpp17/filesystemTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/cpp17/filesystemTest.vcxproj -------------------------------------------------------------------------------- /cpp17/searchers/searchers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/cpp17/searchers/searchers.cpp -------------------------------------------------------------------------------- /cpp17/searchers/searchers.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/cpp17/searchers/searchers.vcxproj -------------------------------------------------------------------------------- /cpp17/searchers/searchers.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/cpp17/searchers/searchers.vcxproj.filters -------------------------------------------------------------------------------- /cpp17/searchers/simpleperf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/cpp17/searchers/simpleperf.h -------------------------------------------------------------------------------- /cpp20/Calendar/Calendar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/cpp20/Calendar/Calendar.cpp -------------------------------------------------------------------------------- /cpp20/Calendar/Calendar.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/cpp20/Calendar/Calendar.vcxproj -------------------------------------------------------------------------------- /cpp20/Calendar/Calendar.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/cpp20/Calendar/Calendar.vcxproj.filters -------------------------------------------------------------------------------- /cpp20/Calendar/roll with holidays.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/cpp20/Calendar/roll with holidays.cpp -------------------------------------------------------------------------------- /cpp20/CoroutineTest/CoroutineTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/cpp20/CoroutineTest/CoroutineTest.cpp -------------------------------------------------------------------------------- /cpp20/CoroutineTest/CoroutineTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/cpp20/CoroutineTest/CoroutineTest.vcxproj -------------------------------------------------------------------------------- /cpp20/CoroutineTest/CoroutineTest.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/cpp20/CoroutineTest/CoroutineTest.vcxproj.filters -------------------------------------------------------------------------------- /cpp20/Cpp20Ex.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/cpp20/Cpp20Ex.sln -------------------------------------------------------------------------------- /cpp20/ModulesTest/HelloWorld.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/cpp20/ModulesTest/HelloWorld.ixx -------------------------------------------------------------------------------- /cpp20/ModulesTest/ModulesTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/cpp20/ModulesTest/ModulesTest.cpp -------------------------------------------------------------------------------- /cpp20/ModulesTest/ModulesTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/cpp20/ModulesTest/ModulesTest.vcxproj -------------------------------------------------------------------------------- /cpp20/ModulesTest/ModulesTest.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/cpp20/ModulesTest/ModulesTest.vcxproj.filters -------------------------------------------------------------------------------- /cpp20/ModulesTest/MyClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/cpp20/ModulesTest/MyClass.cpp -------------------------------------------------------------------------------- /cpp20/ModulesTest/MyClass.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | struct MyClass 3 | { 4 | void DoSomething(); 5 | }; 6 | 7 | -------------------------------------------------------------------------------- /cpp20/Ranges/Ranges.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/cpp20/Ranges/Ranges.cpp -------------------------------------------------------------------------------- /cpp20/Ranges/Ranges.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/cpp20/Ranges/Ranges.vcxproj -------------------------------------------------------------------------------- /cpp20/Ranges/Ranges.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/cpp20/Ranges/Ranges.vcxproj.filters -------------------------------------------------------------------------------- /cpp20/RomanConversionModules/checker.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/cpp20/RomanConversionModules/checker.ixx -------------------------------------------------------------------------------- /cpp20/RomanConversionModules/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/cpp20/RomanConversionModules/main.cpp -------------------------------------------------------------------------------- /cpp20/RomanConversionModules/roman.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/cpp20/RomanConversionModules/roman.ixx -------------------------------------------------------------------------------- /cpp20/RomanConversionModules/romanConversionModules.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/cpp20/RomanConversionModules/romanConversionModules.filters -------------------------------------------------------------------------------- /cpp20/RomanConversionModules/romanConversionModules.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/cpp20/RomanConversionModules/romanConversionModules.sln -------------------------------------------------------------------------------- /cpp20/RomanConversionModules/romanConversionModules.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/cpp20/RomanConversionModules/romanConversionModules.vcxproj -------------------------------------------------------------------------------- /cpp20/constexpr/constexpr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/cpp20/constexpr/constexpr.cpp -------------------------------------------------------------------------------- /cpp20/constexpr/constexpr.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/cpp20/constexpr/constexpr.vcxproj -------------------------------------------------------------------------------- /cpp20/constexpr/constexpr.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/cpp20/constexpr/constexpr.vcxproj.filters -------------------------------------------------------------------------------- /cpp20/constexpr/parens.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/cpp20/constexpr/parens.cpp -------------------------------------------------------------------------------- /cpp20/stateMachine/helper.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/cpp20/stateMachine/helper.ixx -------------------------------------------------------------------------------- /cpp20/stateMachine/newGame.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/cpp20/stateMachine/newGame.ixx -------------------------------------------------------------------------------- /cpp20/stateMachine/newGameImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/cpp20/stateMachine/newGameImpl.cpp -------------------------------------------------------------------------------- /cpp20/stateMachine/oldGame.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/cpp20/stateMachine/oldGame.ixx -------------------------------------------------------------------------------- /cpp20/stateMachine/oldGameImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/cpp20/stateMachine/oldGameImpl.cpp -------------------------------------------------------------------------------- /cpp20/stateMachine/shopping.ixx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/cpp20/stateMachine/shopping.ixx -------------------------------------------------------------------------------- /cpp20/stateMachine/shoppingImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/cpp20/stateMachine/shoppingImpl.cpp -------------------------------------------------------------------------------- /cpp20/stateMachine/stateMachine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/cpp20/stateMachine/stateMachine.cpp -------------------------------------------------------------------------------- /cpp20/stateMachine/stateMachine.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/cpp20/stateMachine/stateMachine.vcxproj -------------------------------------------------------------------------------- /cpp20/stateMachine/stateMachine.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/cpp20/stateMachine/stateMachine.vcxproj.filters -------------------------------------------------------------------------------- /file_attribs_test/FileAttribsTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/file_attribs_test/FileAttribsTest.cpp -------------------------------------------------------------------------------- /filterElements/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/filterElements/README.md -------------------------------------------------------------------------------- /filterElements/all_combined/all_combined.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/filterElements/all_combined/all_combined.cpp -------------------------------------------------------------------------------- /filterElements/all_combined/all_combined.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/filterElements/all_combined/all_combined.vcxproj -------------------------------------------------------------------------------- /filterElements/all_combined/all_combined.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/filterElements/all_combined/all_combined.vcxproj.filters -------------------------------------------------------------------------------- /filterElements/filters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/filterElements/filters.cpp -------------------------------------------------------------------------------- /filterElements/filters.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/filterElements/filters.sln -------------------------------------------------------------------------------- /filterElements/filters.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/filterElements/filters.vcxproj -------------------------------------------------------------------------------- /filterElements/simpleperf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/filterElements/simpleperf.h -------------------------------------------------------------------------------- /float_double/float_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/float_double/float_double.cpp -------------------------------------------------------------------------------- /float_double/float_double.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/float_double/float_double.sln -------------------------------------------------------------------------------- /float_double/float_double.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/float_double/float_double.vcxproj -------------------------------------------------------------------------------- /float_double/float_double.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/float_double/float_double.vcxproj.filters -------------------------------------------------------------------------------- /includeTest/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/includeTest/.gitignore -------------------------------------------------------------------------------- /includeTest/docs/1_experiment_full_mat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/includeTest/docs/1_experiment_full_mat.md -------------------------------------------------------------------------------- /includeTest/docs/1_experiment_full_mat.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/includeTest/docs/1_experiment_full_mat.xlsx -------------------------------------------------------------------------------- /includeTest/generator/ClassGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/includeTest/generator/ClassGenerator.cpp -------------------------------------------------------------------------------- /includeTest/generator/ClassGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/includeTest/generator/ClassGenerator.h -------------------------------------------------------------------------------- /includeTest/generator/SourceFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/includeTest/generator/SourceFile.cpp -------------------------------------------------------------------------------- /includeTest/generator/SourceFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/includeTest/generator/SourceFile.h -------------------------------------------------------------------------------- /includeTest/generator/generator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/includeTest/generator/generator.cpp -------------------------------------------------------------------------------- /includeTest/generator/generator.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/includeTest/generator/generator.vcxproj -------------------------------------------------------------------------------- /includeTest/generator/generator.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/includeTest/generator/generator.vcxproj.filters -------------------------------------------------------------------------------- /includeTest/generator/generator.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/includeTest/generator/generator.vcxproj.user -------------------------------------------------------------------------------- /includeTest/generator/generator_v1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/includeTest/generator/generator_v1.cpp -------------------------------------------------------------------------------- /includeTest/generator/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/includeTest/generator/stdafx.cpp -------------------------------------------------------------------------------- /includeTest/generator/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/includeTest/generator/stdafx.h -------------------------------------------------------------------------------- /includeTest/generator/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/includeTest/generator/targetver.h -------------------------------------------------------------------------------- /includeTest/includeTestOutput/includeTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/includeTest/includeTestOutput/includeTest.vcxproj -------------------------------------------------------------------------------- /includeTest/includeTestOutput/includeTest.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/includeTest/includeTestOutput/includeTest.vcxproj.filters -------------------------------------------------------------------------------- /includeTest/includeTestOutput/includeTest.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/includeTest/includeTestOutput/includeTest.vcxproj.user -------------------------------------------------------------------------------- /includeTest/includeTestOutput/includeTestGcc.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/includeTest/includeTestOutput/includeTestGcc.dev -------------------------------------------------------------------------------- /includeTest/inludeTest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/includeTest/inludeTest.sln -------------------------------------------------------------------------------- /includeTest/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/includeTest/readme.md -------------------------------------------------------------------------------- /lazy_init/start_employee.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/lazy_init/start_employee.cpp -------------------------------------------------------------------------------- /lazy_init/with_optional.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/lazy_init/with_optional.cpp -------------------------------------------------------------------------------- /ogl_picking_old/material_point.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/ogl_picking_old/material_point.cpp -------------------------------------------------------------------------------- /ogl_picking_old/picking_only.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/ogl_picking_old/picking_only.7z -------------------------------------------------------------------------------- /ogl_picking_old/picking_test.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/ogl_picking_old/picking_test.7z -------------------------------------------------------------------------------- /ogl_picking_old/picking_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/ogl_picking_old/picking_test.cpp -------------------------------------------------------------------------------- /ogl_picking_old/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/ogl_picking_old/readme.md -------------------------------------------------------------------------------- /temp/lazymj.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/temp/lazymj.md -------------------------------------------------------------------------------- /tmp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/tmp.md -------------------------------------------------------------------------------- /trie/Perf/simpleperf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/trie/Perf/simpleperf.h -------------------------------------------------------------------------------- /trie/Perf/trie-perf.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/trie/Perf/trie-perf.vcxproj -------------------------------------------------------------------------------- /trie/Perf/trie-perf.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/trie/Perf/trie-perf.vcxproj.filters -------------------------------------------------------------------------------- /trie/Perf/trieperf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/trie/Perf/trieperf.cpp -------------------------------------------------------------------------------- /trie/Tests/Tests.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/trie/Tests/Tests.vcxproj -------------------------------------------------------------------------------- /trie/Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/trie/Tests/packages.config -------------------------------------------------------------------------------- /trie/Tests/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/trie/Tests/test.cpp -------------------------------------------------------------------------------- /trie/trie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/trie/trie.cpp -------------------------------------------------------------------------------- /trie/trie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/trie/trie.h -------------------------------------------------------------------------------- /trie/trie.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/trie/trie.sln -------------------------------------------------------------------------------- /trie/trie.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/trie/trie.vcxproj -------------------------------------------------------------------------------- /trie/trie.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/trie/trie.vcxproj.filters -------------------------------------------------------------------------------- /trie/trietest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenbf/articles/HEAD/trie/trietest.cpp --------------------------------------------------------------------------------