[apps] In Shared, move cartesian_function.* to continuous_function.*

This commit is contained in:
Ruben Dashyan
2019-09-09 16:25:32 +02:00
committed by LeaNumworks
parent df2897925b
commit 5f9464a548
9 changed files with 10 additions and 12 deletions

View File

@@ -1,10 +1,8 @@
#ifndef GRAPH_CONTINUOUS_FUNCTION_STORE_H
#define GRAPH_CONTINUOUS_FUNCTION_STORE_H
#include "../shared/cartesian_function.h"
#include "../shared/function_store.h"
#include <stdint.h>
#include <escher.h>
#include "../shared/continuous_function.h"
namespace Graph {

View File

@@ -3,7 +3,7 @@
#include <escher/message_table_cell_with_expression.h>
#include <ion/storage.h>
#include "../../shared/cartesian_function.h"
#include "../../shared/continuous_function.h"
#include "../../shared/expiring_pointer.h"
#include "../../shared/float_parameter_controller.h"

View File

@@ -2,7 +2,7 @@
#define GRAPH_FUNCTION_PARAM_CONTROLLER_H
#include "../../shared/expiring_pointer.h"
#include "../../shared/cartesian_function.h"
#include "../../shared/continuous_function.h"
#include "../../shared/values_function_parameter_controller.h"
namespace Graph {

View File

@@ -2,8 +2,8 @@
#define GRAPH_INTERVAL_PARAMETER_SELECTOR_CONTROLLER
#include <escher.h>
#include "../../shared/cartesian_function.h"
#include <apps/shared/interval_parameter_controller.h>
#include "../../shared/continuous_function.h"
namespace Graph {

View File

@@ -1,5 +1,5 @@
app_shared_test_src = $(addprefix apps/shared/,\
cartesian_function.cpp\
continuous_function.cpp\
curve_view_range.cpp \
double_pair_store.cpp \
expression_model.cpp \

View File

@@ -1,4 +1,4 @@
#include "cartesian_function.h"
#include "continuous_function.h"
#include "poincare_helpers.h"
#include <apps/constant.h>
#include <poincare/derivative.h>

View File

@@ -1,5 +1,5 @@
#ifndef SHARED_CARTESIAN_FUNCTION_H
#define SHARED_CARTESIAN_FUNCTION_H
#ifndef SHARED_CONTINUOUS_FUNCTION_H
#define SHARED_CONTINUOUS_FUNCTION_H
/* Although the considered functions are not generally continuous
* mathematically speaking, the present class is named ContinuousFunction to

View File

@@ -1,5 +1,5 @@
#include "global_context.h"
#include "cartesian_function.h"
#include "continuous_function.h"
#include "poincare_helpers.h"
#include <poincare/undefined.h>
#include <assert.h>

View File

@@ -1,6 +1,6 @@
#include "variable_box_controller.h"
#include "shared/global_context.h"
#include "shared/cartesian_function.h"
#include "shared/continuous_function.h"
#include <escher/metric.h>
#include <ion/unicode/utf8_decoder.h>
#include <poincare/layout_helper.h>