PDI 1.4.3

the PDI data interface

pdi_fwd.h
1 /*******************************************************************************
2  * Copyright (C) 2015-2019 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 
37 namespace PDI {
38 
42 class Context;
43 
48 class Datatype;
49 
52 class Array_datatype;
53 
56 class Pointer_datatype;
57 
60 class Record_datatype;
61 
64 class Scalar_datatype;
65 
71 
72 typedef std::unique_ptr<Datatype_template> Datatype_template_uptr;
73 
74 typedef std::unique_ptr<Datatype> Datatype_uptr;
75 
79 class Data_descriptor;
80 
83 class Plugin;
84 
85 template<bool, bool> class Ref_any;
86 
88 
90 
92 
94 
97 enum class Scalar_kind : uint8_t {
98  UNKNOWN,
99  SIGNED,
100  UNSIGNED,
101  FLOAT
102 };
103 
108 class Expression;
109 
110 }
111 
112 #endif // PDI_PDI_FWD_H_
Ref_any< true, false > Ref_r
Definition: pdi_fwd.h:89
Definition: expression.h:41
The class PDI plugins should implement.
Definition: plugin.h:42
A dynamically typed reference to data with automatic memory management and read/write locking semanti...
Definition: pdi_fwd.h:85
Ref_any< false, true > Ref_w
Definition: pdi_fwd.h:91
std::unique_ptr< Datatype_template > Datatype_template_uptr
Definition: pdi_fwd.h:70
std::unique_ptr< Datatype > Datatype_uptr
Definition: pdi_fwd.h:74
Scalar_kind
Different possible interpretations for a scalar.
Definition: pdi_fwd.h:97
Definition: data_descriptor.h:39
Definition: datatype_template.h:42
Ref_any< false, false > Ref
Definition: pdi_fwd.h:85
Definition: array_datatype.h:37
Ref_any< true, true > Ref_rw
Definition: pdi_fwd.h:93