From c14b8be3a74d2d0a10e0d7aa21957221ae69b6b3 Mon Sep 17 00:00:00 2001 From: lukemartinlogan Date: Thu, 12 Dec 2024 23:12:12 -0600 Subject: [PATCH] Begin changing repo structure --- {3.1.hello_world => cpp/01-cpp-hello-world}/hello_world.cc | 0 .../02-cpp-build-manually}/include/database_lib.h | 0 .../02-cpp-build-manually}/src/database_lib.cc | 0 {3.2.building_cpp => cpp/02-cpp-build-manually}/src/grocery_db.cc | 0 {3.2.building_cpp => cpp/02-cpp-build-manually}/src/movies_db.cc | 0 .../03-cpp-build-with-cmake}/CMakeLists.txt | 0 .../03-cpp-build-with-cmake}/include/database_lib.h | 0 .../03-cpp-build-with-cmake}/src/CMakeLists.txt | 0 .../03-cpp-build-with-cmake}/src/database_lib.cc | 0 .../03-cpp-build-with-cmake}/src/grocery_db.cc | 0 .../03-cpp-build-with-cmake}/src/movies_db.cc | 0 .../03-cpp-build-with-cmake}/test/CMakeLists.txt | 0 {3.4.basics => cpp/04-cpp-basic-syntax}/CMakeLists.txt | 0 {3.4.basics => cpp/04-cpp-basic-syntax}/CPPLINT.cfg | 0 {3.4.basics => cpp/04-cpp-basic-syntax}/src/CMakeLists.txt | 0 .../04-cpp-basic-syntax}/src/analyze_kitchen_fire.cc | 0 {3.4.basics => cpp/04-cpp-basic-syntax}/src/basic_class.cc | 0 {3.4.basics => cpp/04-cpp-basic-syntax}/src/config_manager.cc | 0 {3.4.basics => cpp/04-cpp-basic-syntax}/src/cpplint_test.h | 0 {3.4.basics => cpp/04-cpp-basic-syntax}/src/data_structures.cc | 0 {3.4.basics => cpp/04-cpp-basic-syntax}/src/easy_singleton.h | 0 {3.4.basics => cpp/04-cpp-basic-syntax}/src/iosched_factory.cc | 0 {3.4.basics => cpp/04-cpp-basic-syntax}/src/libstd.cc | 0 {3.4.basics => cpp/04-cpp-basic-syntax}/src/make_kitchen_fire.cc | 0 {3.4.basics => cpp/04-cpp-basic-syntax}/src/mixins.cc | 0 {3.4.basics => cpp/04-cpp-basic-syntax}/src/parameter_pass.cc | 0 {3.4.basics => cpp/04-cpp-basic-syntax}/src/posix.cc | 0 {3.4.basics => cpp/04-cpp-basic-syntax}/src/singleton.cc | 0 {3.4.basics => cpp/04-cpp-basic-syntax}/src/singleton.h | 0 {3.4.basics => cpp/04-cpp-basic-syntax}/src/stdio.cc | 0 {3.4.basics => cpp/04-cpp-basic-syntax}/src/timer.h | 0 31 files changed, 0 insertions(+), 0 deletions(-) rename {3.1.hello_world => cpp/01-cpp-hello-world}/hello_world.cc (100%) rename {3.2.building_cpp => cpp/02-cpp-build-manually}/include/database_lib.h (100%) rename {3.2.building_cpp => cpp/02-cpp-build-manually}/src/database_lib.cc (100%) rename {3.2.building_cpp => cpp/02-cpp-build-manually}/src/grocery_db.cc (100%) rename {3.2.building_cpp => cpp/02-cpp-build-manually}/src/movies_db.cc (100%) rename {3.3.building_cpp_cmake => cpp/03-cpp-build-with-cmake}/CMakeLists.txt (100%) rename {3.3.building_cpp_cmake => cpp/03-cpp-build-with-cmake}/include/database_lib.h (100%) rename {3.3.building_cpp_cmake => cpp/03-cpp-build-with-cmake}/src/CMakeLists.txt (100%) rename {3.3.building_cpp_cmake => cpp/03-cpp-build-with-cmake}/src/database_lib.cc (100%) rename {3.3.building_cpp_cmake => cpp/03-cpp-build-with-cmake}/src/grocery_db.cc (100%) rename {3.3.building_cpp_cmake => cpp/03-cpp-build-with-cmake}/src/movies_db.cc (100%) rename {3.3.building_cpp_cmake => cpp/03-cpp-build-with-cmake}/test/CMakeLists.txt (100%) rename {3.4.basics => cpp/04-cpp-basic-syntax}/CMakeLists.txt (100%) rename {3.4.basics => cpp/04-cpp-basic-syntax}/CPPLINT.cfg (100%) rename {3.4.basics => cpp/04-cpp-basic-syntax}/src/CMakeLists.txt (100%) rename {3.4.basics => cpp/04-cpp-basic-syntax}/src/analyze_kitchen_fire.cc (100%) rename {3.4.basics => cpp/04-cpp-basic-syntax}/src/basic_class.cc (100%) rename {3.4.basics => cpp/04-cpp-basic-syntax}/src/config_manager.cc (100%) rename {3.4.basics => cpp/04-cpp-basic-syntax}/src/cpplint_test.h (100%) rename {3.4.basics => cpp/04-cpp-basic-syntax}/src/data_structures.cc (100%) rename {3.4.basics => cpp/04-cpp-basic-syntax}/src/easy_singleton.h (100%) rename {3.4.basics => cpp/04-cpp-basic-syntax}/src/iosched_factory.cc (100%) rename {3.4.basics => cpp/04-cpp-basic-syntax}/src/libstd.cc (100%) rename {3.4.basics => cpp/04-cpp-basic-syntax}/src/make_kitchen_fire.cc (100%) rename {3.4.basics => cpp/04-cpp-basic-syntax}/src/mixins.cc (100%) rename {3.4.basics => cpp/04-cpp-basic-syntax}/src/parameter_pass.cc (100%) rename {3.4.basics => cpp/04-cpp-basic-syntax}/src/posix.cc (100%) rename {3.4.basics => cpp/04-cpp-basic-syntax}/src/singleton.cc (100%) rename {3.4.basics => cpp/04-cpp-basic-syntax}/src/singleton.h (100%) rename {3.4.basics => cpp/04-cpp-basic-syntax}/src/stdio.cc (100%) rename {3.4.basics => cpp/04-cpp-basic-syntax}/src/timer.h (100%) diff --git a/3.1.hello_world/hello_world.cc b/cpp/01-cpp-hello-world/hello_world.cc similarity index 100% rename from 3.1.hello_world/hello_world.cc rename to cpp/01-cpp-hello-world/hello_world.cc diff --git a/3.2.building_cpp/include/database_lib.h b/cpp/02-cpp-build-manually/include/database_lib.h similarity index 100% rename from 3.2.building_cpp/include/database_lib.h rename to cpp/02-cpp-build-manually/include/database_lib.h diff --git a/3.2.building_cpp/src/database_lib.cc b/cpp/02-cpp-build-manually/src/database_lib.cc similarity index 100% rename from 3.2.building_cpp/src/database_lib.cc rename to cpp/02-cpp-build-manually/src/database_lib.cc diff --git a/3.2.building_cpp/src/grocery_db.cc b/cpp/02-cpp-build-manually/src/grocery_db.cc similarity index 100% rename from 3.2.building_cpp/src/grocery_db.cc rename to cpp/02-cpp-build-manually/src/grocery_db.cc diff --git a/3.2.building_cpp/src/movies_db.cc b/cpp/02-cpp-build-manually/src/movies_db.cc similarity index 100% rename from 3.2.building_cpp/src/movies_db.cc rename to cpp/02-cpp-build-manually/src/movies_db.cc diff --git a/3.3.building_cpp_cmake/CMakeLists.txt b/cpp/03-cpp-build-with-cmake/CMakeLists.txt similarity index 100% rename from 3.3.building_cpp_cmake/CMakeLists.txt rename to cpp/03-cpp-build-with-cmake/CMakeLists.txt diff --git a/3.3.building_cpp_cmake/include/database_lib.h b/cpp/03-cpp-build-with-cmake/include/database_lib.h similarity index 100% rename from 3.3.building_cpp_cmake/include/database_lib.h rename to cpp/03-cpp-build-with-cmake/include/database_lib.h diff --git a/3.3.building_cpp_cmake/src/CMakeLists.txt b/cpp/03-cpp-build-with-cmake/src/CMakeLists.txt similarity index 100% rename from 3.3.building_cpp_cmake/src/CMakeLists.txt rename to cpp/03-cpp-build-with-cmake/src/CMakeLists.txt diff --git a/3.3.building_cpp_cmake/src/database_lib.cc b/cpp/03-cpp-build-with-cmake/src/database_lib.cc similarity index 100% rename from 3.3.building_cpp_cmake/src/database_lib.cc rename to cpp/03-cpp-build-with-cmake/src/database_lib.cc diff --git a/3.3.building_cpp_cmake/src/grocery_db.cc b/cpp/03-cpp-build-with-cmake/src/grocery_db.cc similarity index 100% rename from 3.3.building_cpp_cmake/src/grocery_db.cc rename to cpp/03-cpp-build-with-cmake/src/grocery_db.cc diff --git a/3.3.building_cpp_cmake/src/movies_db.cc b/cpp/03-cpp-build-with-cmake/src/movies_db.cc similarity index 100% rename from 3.3.building_cpp_cmake/src/movies_db.cc rename to cpp/03-cpp-build-with-cmake/src/movies_db.cc diff --git a/3.3.building_cpp_cmake/test/CMakeLists.txt b/cpp/03-cpp-build-with-cmake/test/CMakeLists.txt similarity index 100% rename from 3.3.building_cpp_cmake/test/CMakeLists.txt rename to cpp/03-cpp-build-with-cmake/test/CMakeLists.txt diff --git a/3.4.basics/CMakeLists.txt b/cpp/04-cpp-basic-syntax/CMakeLists.txt similarity index 100% rename from 3.4.basics/CMakeLists.txt rename to cpp/04-cpp-basic-syntax/CMakeLists.txt diff --git a/3.4.basics/CPPLINT.cfg b/cpp/04-cpp-basic-syntax/CPPLINT.cfg similarity index 100% rename from 3.4.basics/CPPLINT.cfg rename to cpp/04-cpp-basic-syntax/CPPLINT.cfg diff --git a/3.4.basics/src/CMakeLists.txt b/cpp/04-cpp-basic-syntax/src/CMakeLists.txt similarity index 100% rename from 3.4.basics/src/CMakeLists.txt rename to cpp/04-cpp-basic-syntax/src/CMakeLists.txt diff --git a/3.4.basics/src/analyze_kitchen_fire.cc b/cpp/04-cpp-basic-syntax/src/analyze_kitchen_fire.cc similarity index 100% rename from 3.4.basics/src/analyze_kitchen_fire.cc rename to cpp/04-cpp-basic-syntax/src/analyze_kitchen_fire.cc diff --git a/3.4.basics/src/basic_class.cc b/cpp/04-cpp-basic-syntax/src/basic_class.cc similarity index 100% rename from 3.4.basics/src/basic_class.cc rename to cpp/04-cpp-basic-syntax/src/basic_class.cc diff --git a/3.4.basics/src/config_manager.cc b/cpp/04-cpp-basic-syntax/src/config_manager.cc similarity index 100% rename from 3.4.basics/src/config_manager.cc rename to cpp/04-cpp-basic-syntax/src/config_manager.cc diff --git a/3.4.basics/src/cpplint_test.h b/cpp/04-cpp-basic-syntax/src/cpplint_test.h similarity index 100% rename from 3.4.basics/src/cpplint_test.h rename to cpp/04-cpp-basic-syntax/src/cpplint_test.h diff --git a/3.4.basics/src/data_structures.cc b/cpp/04-cpp-basic-syntax/src/data_structures.cc similarity index 100% rename from 3.4.basics/src/data_structures.cc rename to cpp/04-cpp-basic-syntax/src/data_structures.cc diff --git a/3.4.basics/src/easy_singleton.h b/cpp/04-cpp-basic-syntax/src/easy_singleton.h similarity index 100% rename from 3.4.basics/src/easy_singleton.h rename to cpp/04-cpp-basic-syntax/src/easy_singleton.h diff --git a/3.4.basics/src/iosched_factory.cc b/cpp/04-cpp-basic-syntax/src/iosched_factory.cc similarity index 100% rename from 3.4.basics/src/iosched_factory.cc rename to cpp/04-cpp-basic-syntax/src/iosched_factory.cc diff --git a/3.4.basics/src/libstd.cc b/cpp/04-cpp-basic-syntax/src/libstd.cc similarity index 100% rename from 3.4.basics/src/libstd.cc rename to cpp/04-cpp-basic-syntax/src/libstd.cc diff --git a/3.4.basics/src/make_kitchen_fire.cc b/cpp/04-cpp-basic-syntax/src/make_kitchen_fire.cc similarity index 100% rename from 3.4.basics/src/make_kitchen_fire.cc rename to cpp/04-cpp-basic-syntax/src/make_kitchen_fire.cc diff --git a/3.4.basics/src/mixins.cc b/cpp/04-cpp-basic-syntax/src/mixins.cc similarity index 100% rename from 3.4.basics/src/mixins.cc rename to cpp/04-cpp-basic-syntax/src/mixins.cc diff --git a/3.4.basics/src/parameter_pass.cc b/cpp/04-cpp-basic-syntax/src/parameter_pass.cc similarity index 100% rename from 3.4.basics/src/parameter_pass.cc rename to cpp/04-cpp-basic-syntax/src/parameter_pass.cc diff --git a/3.4.basics/src/posix.cc b/cpp/04-cpp-basic-syntax/src/posix.cc similarity index 100% rename from 3.4.basics/src/posix.cc rename to cpp/04-cpp-basic-syntax/src/posix.cc diff --git a/3.4.basics/src/singleton.cc b/cpp/04-cpp-basic-syntax/src/singleton.cc similarity index 100% rename from 3.4.basics/src/singleton.cc rename to cpp/04-cpp-basic-syntax/src/singleton.cc diff --git a/3.4.basics/src/singleton.h b/cpp/04-cpp-basic-syntax/src/singleton.h similarity index 100% rename from 3.4.basics/src/singleton.h rename to cpp/04-cpp-basic-syntax/src/singleton.h diff --git a/3.4.basics/src/stdio.cc b/cpp/04-cpp-basic-syntax/src/stdio.cc similarity index 100% rename from 3.4.basics/src/stdio.cc rename to cpp/04-cpp-basic-syntax/src/stdio.cc diff --git a/3.4.basics/src/timer.h b/cpp/04-cpp-basic-syntax/src/timer.h similarity index 100% rename from 3.4.basics/src/timer.h rename to cpp/04-cpp-basic-syntax/src/timer.h