mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 16:57:31 +01:00
33 lines
694 B
C++
33 lines
694 B
C++
#include "storage_cartesian_function_store.h"
|
|
extern "C" {
|
|
#include <assert.h>
|
|
#include <stddef.h>
|
|
}
|
|
#include <ion.h>
|
|
|
|
namespace Graph {
|
|
|
|
//constexpr const char * StorageCartesianFunctionStore::k_functionNames[k_maxNumberOfFunctions];
|
|
|
|
StorageCartesianFunction StorageCartesianFunctionStore::NullModel() {
|
|
return StorageCartesianFunction("", KDColorBlack);
|
|
}
|
|
|
|
StorageCartesianFunctionStore::StorageCartesianFunctionStore() :
|
|
Shared::StorageFunctionStore<StorageCartesianFunction>()
|
|
{
|
|
//addEmptyModel();
|
|
}
|
|
|
|
char StorageCartesianFunctionStore::symbol() const {
|
|
return 'x';
|
|
}
|
|
|
|
void StorageCartesianFunctionStore::removeAll() {
|
|
StorageFunctionStore::removeAll();
|
|
addEmptyModel();
|
|
}
|
|
|
|
|
|
}
|