PDI 1.8.0

the PDI data interface

pdi_fwd.h
1/*******************************************************************************
2 * Copyright (C) 2015-2024 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 [[deprecated]] = std::shared_ptr<const Datatype_template>;
77using Datatype_template_sptr = std::shared_ptr<const Datatype_template>;
78
79using Datatype_sptr = std::shared_ptr<const Datatype>;
80
84class Data_descriptor;
85
88class Plugin;
89
90template <bool, bool>
91class Ref_any;
92
94
96
98
100
103enum class Scalar_kind : uint8_t {
104 UNKNOWN,
105 SIGNED,
106 UNSIGNED,
107 FLOAT
108};
109
114class Expression;
115
116} // namespace PDI
117
118#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:242
Definition array_datatype.h:38
Ref_any< true, true > Ref_rw
Definition pdi_fwd.h:99
Ref_any< false, true > Ref_w
Definition pdi_fwd.h:97
std::shared_ptr< const Datatype_template > Datatype_template_sptr
Definition pdi_fwd.h:77
Ref_any< true, false > Ref_r
Definition pdi_fwd.h:95
std::shared_ptr< const Datatype > Datatype_sptr
Definition pdi_fwd.h:79
Scalar_kind
Different possible interpretations for a scalar.
Definition pdi_fwd.h:103
Ref_any< false, false > Ref
Definition pdi_fwd.h:93