[apps/shared] Add a method symbol in function store

Change-Id: I9f85f815d3ab28425d4df77b6ff4880efde17909
This commit is contained in:
Émilie Feral
2017-02-22 18:02:36 +01:00
parent 7df76d91d9
commit 6d47bc0073
8 changed files with 13 additions and 3 deletions

View File

@@ -63,6 +63,10 @@ int CartesianFunctionStore::maxNumberOfFunctions() {
return k_maxNumberOfFunctions;
}
char CartesianFunctionStore::symbol() const {
return 'x';
}
const char * CartesianFunctionStore::firstAvailableName() {
for (int k = 0; k < k_maxNumberOfFunctions; k++) {
int j = 0;