changed class names

generall reorganization
This commit is contained in:
Luis Stanglmeier 2022-06-23 17:09:20 +02:00
parent 5f6abf300e
commit 03338fa8a6
31 changed files with 1002 additions and 636 deletions

View file

@ -1,6 +1,6 @@
###########################################################################################
#
# (c) Technical Software Engineering Plazotta 2021
# (c) Luis Stanglmeier
#
# CMAKE project file / @Add your project name@
#
@ -20,8 +20,14 @@ set(PROJECT_DESCRIPTION "LSFramework")
# SOURCE FILES
#
set(SOURCE_FILES
src/Timer.cpp
src/LSString.cpp
src/CString.cpp
src/CTimer.cpp
src/CVariant.cpp
src/CJsonDocument.cpp
src/CJsonNode.cpp
src/CJsonArray.cpp
src/CJsonObject.cpp
src/main.cpp
)
#
# HEADER FILES
@ -29,15 +35,17 @@ set(SOURCE_FILES
set(HEADER_FILES
src/LSFramework.Exports.h
src/LSMacros.h
src/Timer.h
src/CString.h
src/CTimer.h
src/CList.h
src/CListItem.h
src/CVector.h
src/CJsonDocument.h
src/CJsonNode.h
src/CJsonArray.h
src/CJsonObject.h
src/LSString.h
src/LSList.h
src/LSListItem.h
src/LSVector.h
src/CVariant.h
)
#
#-----------------------------------------------------------------------------------------