SST/macro
mineral.h
Go to the documentation of this file.
1 #include <sprockit/ptr_type.h>
2 
3 namespace sstmac {
4 namespace tutorial {
5 /**
6  * @brief The mineral class
7  * @class mineral
8  */
9 class mineral :
10  virtual public sprockit::ptr_type
11 {
12  /** Public typedefs */
13  public:
16 
17  /** Public functions and constructors */
18  public:
19  virtual std::string
20  structure() const = 0;
21 
22  virtual ~mineral() {}
23 
24 };
25 
26 }
27 }
28 
sprockit::refcount_ptr< mineral > ptr
Public typedefs.
Definition: mineral.h:14
virtual std::string structure() const =0
Public functions and constructors.
SUMI = Simulator unified messagine interface It is also the name for a solid ink in Japanese - i...
sprockit::refcount_ptr< const mineral > const_ptr
Definition: mineral.h:15
The mineral class.
Definition: mineral.h:9