blob: a7df88984f2b3c8439ddff4af2fd7886da7ba709 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
#pragma once
// EvaluatedValue.hpp
class BaseValue;
class NumericValue;
class TextValue;
class DateTimeValue;
// Filter.hpp
class TableRowsFilter;
// GlobalStates.hpp
class GlobalStates;
// Items.hpp
template <class T>
class ItemList;
template <class TSelf>
class ItemBase;
class ProductItem;
class FactoryItem;
class CustomerItem;
// Project.hpp
class Project;
// TransactionDatabase.hpp
class SalesTable;
class PurchasesTable;
class DeliveryTable;
class TransactionModel;
// Workflow.hpp
class WorkflowConnection;
class WorkflowNode;
class Workflow;
class WorkflowEvaluationError;
class WorkflowEvaluationContext;
// WorkflowSteps.hpp
class NumericOperationNode;
class NumericExpressionNode;
class FormatTextNode;
class DocumentTemplateExpansionNode;
class FormInputNode;
class DatabaseRowsInputNode;
|