PDI 1.7.0-alpha.2023-10-26

the PDI data interface

pdi_fwd.h
1/*******************************************************************************
2 * Copyright (C) 2015-2021 Commissariat a l'energie atomique et aux energies alternatives (CEA)
3 * Copyright (C) 2021 Institute of Bioorganic Chemistry Polish Academy of Science (PSNC)
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are met:
8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * * Neither the name of CEA nor the names of its contributors may be used to
14 * endorse or promote products derived from this software without specific
15 * prior written permission.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23 * THE SOFTWARE.
24 ******************************************************************************/
25
30#ifndef PDI_PDI_FWD_H_
31#define PDI_PDI_FWD_H_
32
33#include <memory>
34
35#include <pdi.h>
36
37namespace PDI {
38
42class Context;
43
48class Datatype;
49
52class Array_datatype;
53
56class Pointer_datatype;
57
60class Record_datatype;
61
64class Scalar_datatype;
65
68class Tuple_datatype;
69
74class Datatype_template;
75
76using Datatype_template_ptr = std::shared_ptr<const Datatype_template>;
77
78using Datatype_sptr = std::shared_ptr<const Datatype>;
79
83class Data_descriptor;
84
87class Plugin;
88
89template <bool, bool>
90class Ref_any;
91
93
95
97
99
102enum class Scalar_kind : uint8_t {
103 UNKNOWN,
104 SIGNED,
105 UNSIGNED,
106 FLOAT
107};
108
113class Expression;
114
115} // namespace PDI
116
117#endif // PDI_PDI_FWD_H_
Definition: data_descriptor.h:39
The class PDI plugins should implement.
Definition: plugin.h:43
A dynamically typed reference to data with automatic memory management and read/write locking semanti...
Definition: ref_any.h:248
Definition: array_datatype.h:38
Ref_any< true, true > Ref_rw
Definition: pdi_fwd.h:98
Ref_any< false, true > Ref_w
Definition: pdi_fwd.h:96
Ref_any< true, false > Ref_r
Definition: pdi_fwd.h:94
Scalar_kind
Different possible interpretations for a scalar.
Definition: pdi_fwd.h:102
std::shared_ptr< const Datatype > Datatype_sptr
Definition: pdi_fwd.h:78
Ref_any< false, false > Ref
Definition: pdi_fwd.h:92
std::shared_ptr< const Datatype_template > Datatype_template_ptr
Definition: pdi_fwd.h:76