Adding 4th assignment - Simple Search

This commit is contained in:
Christopher Sanden
2025-11-01 17:29:11 +01:00
parent 48a478acac
commit 4c6e3d0905
10 changed files with 5982 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
cmake_minimum_required(VERSION 4.0)
project(SimpleSearch)
set(CMAKE_CXX_STANDARD 20)
add_executable(SimpleSearch main.cpp
EBankAccountType.h
TBankAccount.cpp
TBankAccount.h
TLinkedList.h
SearchSummary.h
FCompareAccount.h
)