-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* pipeline tests * pipeline tests * pipeline tests * pipeline tests * diagrams; system -> SYS * diagrams; system -> SYS * diagrams; system -> SYS * diagrams; system -> SYS * mainly code reduction * mainly code reduction * modules -> components * some re-arrangements * some re-arrangements * some re-arrangements * some re-arrangements * some re-arrangements * some re-arrangements
- Loading branch information
Showing
76 changed files
with
544 additions
and
484 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...ation/components/baselib/InstanceMacros.h → application/components/BAS/InstanceMacros.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
## directory content | ||
|
||
**BaseTypes.h** | ||
``` | ||
basic integral types and limits | ||
``` | ||
|
||
**I_Searchable.h** | ||
``` | ||
defintion of interface I_Searchable to apply: | ||
- bubble sort | ||
- b-tree search | ||
- uniqueness check / duplicates count | ||
``` | ||
|
||
**InstanceMacros.h** | ||
``` | ||
instance declaration & definiton macros | ||
``` | ||
|
||
**Mem.h** | ||
``` | ||
type safe memset & memcpy | ||
``` | ||
|
||
**NtpArray.h** | ||
``` | ||
Storage of Name Type Position | ||
``` | ||
|
||
**StackArray.h** | ||
``` | ||
the core of static memory allocation | ||
StackArrays | ||
- act like arrays of pre-defined size | ||
- can be filled with objects at runtime | ||
- do not provide any overflow protection | ||
SimpleStackArray | ||
keeps objects in the same order as they were added. | ||
StackArray | ||
- can be sorted | ||
- can search for elements | ||
Derived classes have to provide | ||
the isGreater method for objects of their type | ||
See interface I_Searchable | ||
class CRef | ||
enables to store references as objects | ||
StackArrayIndex | ||
provides search for unsorted SimpleStackArray. | ||
Derived classes have to provide | ||
the isGreater method for objects of their type | ||
See interface I_Searchable | ||
``` | ||
|
||
**coding.h** | ||
``` | ||
misc coding enhancers | ||
``` | ||
|
||
**packBegin.h** | ||
``` | ||
begin of packed alignment for data structs | ||
``` | ||
|
||
**packEnd.h** | ||
``` | ||
end of packed alignment for data structs | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...ation/components/baselib/src/NtpArray.cpp → application/components/BAS/src/NtpArray.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#include <baselib/NtpArray.h> | ||
#include <BAS/NtpArray.h> | ||
|
||
const Ntp& genNtp( | ||
const ElementName& name, | ||
|
2 changes: 1 addition & 1 deletion
2
...ion/components/baselib/src/StackArray.cpp → ...ication/components/BAS/src/StackArray.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#include <baselib/StackArray.h> | ||
#include <BAS/StackArray.h> | ||
|
||
#include <cstring> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.