SST  7.2.0
StructuralSimulationToolkit
pymodel_statgroup.h
1 // -*- c++ -*-
2 
3 // Copyright 2009-2017 Sandia Corporation. Under the terms
4 // of Contract DE-NA0003525 with Sandia Corporation, the U.S.
5 // Government retains certain rights in this software.
6 //
7 // Copyright (c) 2009-2017, Sandia Corporation
8 // All rights reserved.
9 //
10 // This file is part of the SST software package. For license
11 // information, see the LICENSE file in the top level directory of the
12 // distribution.
13 
14 #ifndef SST_CORE_MODEL_PYMODEL_STATGROUP_H
15 #define SST_CORE_MODEL_PYMODEL_STATGROUP_H
16 
17 #include <sst/core/sst_types.h>
18 
19 namespace SST {
20  class ConfigStatGroup;
21 }
22 
23 extern "C" {
24 
25 
26 struct StatGroupPy_t {
27  PyObject_HEAD
29 };
30 
31 
33  PyObject_HEAD
34  size_t id; /* Index into Graph's statOutputs array */
36 };
37 
38 extern PyTypeObject PyModel_StatGroupType;
39 extern PyTypeObject PyModel_StatOutputType;
40 
41 
42 } /* extern C */
43 
44 
45 #endif
Definition: pymodel_statgroup.h:26
Definition: pymodel_statgroup.h:32
Definition: action.cc:17
Definition: configGraph.h:170
Definition: configGraph.h:131