PDI 1.1.0

Data exchange made easy

datatype_template.h
1 /*******************************************************************************
2  * Copyright (C) 2015-2019 Commissariat a l'energie atomique et aux energies alternatives (CEA)
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are met:
7  * * Redistributions of source code must retain the above copyright
8  * notice, this list of conditions and the following disclaimer.
9  * * Redistributions in binary form must reproduce the above copyright
10  * notice, this list of conditions and the following disclaimer in the
11  * documentation and/or other materials provided with the distribution.
12  * * Neither the name of CEA nor the names of its contributors may be used to
13  * endorse or promote products derived from this software without specific
14  * prior written permission.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22  * THE SOFTWARE.
23  ******************************************************************************/
24 
25 #ifndef PDI_DATATYPE_TEMPLATE_H_
26 #define PDI_DATATYPE_TEMPLATE_H_
27 
28 #include <paraconf.h>
29 
30 #include <pdi/pdi_fwd.h>
31 
32 namespace PDI {
33 
34 class PDI_EXPORT Datatype_template
35 {
36 public:
39  virtual ~Datatype_template();
40 
45  virtual Datatype_template_uptr clone() const = 0;
46 
52  virtual Datatype_uptr evaluate(Context& ctx) const = 0;
53 
59  static void load_basic_datatypes(Context& ctx);
60 
61 };
62 
63 } // namespace PDI
64 
65 #endif // PDI_DATATYPE_TEMPLATE_H_
66 
Definition: context.h:42
std::unique_ptr< Datatype_template > Datatype_template_uptr
Definition: pdi_fwd.h:74
std::unique_ptr< Datatype > Datatype_uptr
Definition: pdi_fwd.h:78
Definition: datatype_template.h:34
Definition: array_datatype.h:37