[apps/graph] Move cartesian_function_store.* to continuous_function_store.*

This commit is contained in:
Ruben Dashyan
2019-09-09 14:57:46 +02:00
committed by LeaNumworks
parent 3172992e11
commit be019cd5cf
9 changed files with 10 additions and 10 deletions

View File

@@ -3,7 +3,7 @@ app_headers += apps/graph/app.h
app_graph_src = $(addprefix apps/graph/,\
app.cpp \
cartesian_function_store.cpp \
continuous_function_store.cpp \
graph/banner_view.cpp \
graph/calculation_graph_controller.cpp \
graph/calculation_parameter_controller.cpp \

View File

@@ -2,7 +2,7 @@
#define GRAPH_APP_H
#include <escher.h>
#include "cartesian_function_store.h"
#include "continuous_function_store.h"
#include "graph/graph_controller.h"
#include "list/list_controller.h"
#include "values/values_controller.h"

View File

@@ -1,4 +1,4 @@
#include "cartesian_function_store.h"
#include "continuous_function_store.h"
extern "C" {
#include <assert.h>
#include <stddef.h>

View File

@@ -1,5 +1,5 @@
#ifndef GRAPH_CARTESIAN_FUNCTION_STORE_H
#define GRAPH_CARTESIAN_FUNCTION_STORE_H
#ifndef GRAPH_CONTINUOUS_FUNCTION_STORE_H
#define GRAPH_CONTINUOUS_FUNCTION_STORE_H
#include "../shared/cartesian_function.h"
#include "../shared/function_store.h"

View File

@@ -5,7 +5,7 @@
#include "banner_view.h"
#include "../../shared/simple_interactive_curve_view_controller.h"
#include "../../shared/function_banner_delegate.h"
#include "../cartesian_function_store.h"
#include "../continuous_function_store.h"
namespace Graph {

View File

@@ -9,7 +9,7 @@
#include "../../shared/curve_view_cursor.h"
#include "../../shared/round_cursor_view.h"
#include "../../shared/interactive_curve_view_range.h"
#include "../cartesian_function_store.h"
#include "../continuous_function_store.h"
namespace Graph {

View File

@@ -4,7 +4,7 @@
#include <escher.h>
#include "list_parameter_controller.h"
#include "text_field_function_title_cell.h"
#include "../cartesian_function_store.h"
#include "../continuous_function_store.h"
#include <apps/shared/function_expression_cell.h>
#include <apps/shared/function_list_controller.h>
#include <apps/shared/text_field_delegate.h>

View File

@@ -2,7 +2,7 @@
#define GRAPH_DERIVATIVE_PARAM_CONTROLLER_H
#include <escher.h>
#include "../cartesian_function_store.h"
#include "../continuous_function_store.h"
namespace Graph {

View File

@@ -1,7 +1,7 @@
#ifndef GRAPH_VALUES_CONTROLLER_H
#define GRAPH_VALUES_CONTROLLER_H
#include "../cartesian_function_store.h"
#include "../continuous_function_store.h"
#include "../../shared/buffer_function_title_cell.h"
#include "../../shared/hideable_even_odd_buffer_text_cell.h"
#include "../../shared/values_controller.h"