mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
44 lines
786 B
C++
44 lines
786 B
C++
#include "function.h"
|
|
|
|
Graph::Function::Function() :
|
|
m_text(nullptr),
|
|
m_expression(nullptr),
|
|
m_layout(nullptr)
|
|
{
|
|
}
|
|
|
|
Graph::Function::Function(const char * text) :
|
|
m_text(text), // FIXME: Copy !!
|
|
m_expression(nullptr),
|
|
m_layout(nullptr)
|
|
{
|
|
}
|
|
|
|
Graph::Function::~Function() {
|
|
//FIXME: Free m_text!
|
|
if (m_layout != nullptr) {
|
|
delete m_layout;
|
|
}
|
|
if (m_expression != nullptr) {
|
|
delete m_expression;
|
|
}
|
|
}
|
|
|
|
const char * Graph::Function::text() {
|
|
return m_text;
|
|
}
|
|
|
|
Expression * Graph::Function::expression() {
|
|
if (m_expression == nullptr) {
|
|
m_expression = Expression::parse(m_text);
|
|
}
|
|
return m_expression;
|
|
}
|
|
|
|
ExpressionLayout * Graph::Function::layout() {
|
|
if (m_layout == nullptr) {
|
|
m_layout = expression()->createLayout();
|
|
}
|
|
return m_layout;
|
|
}
|