SST/macro
lib_compute.h
Go to the documentation of this file.
1 #ifndef sstmac_libraries_compute_LIBCOMPUTE_H
2 #define sstmac_libraries_compute_LIBCOMPUTE_H
3 
6 #include <sprockit/debug.h>
7 
9 
10 namespace sstmac {
11 namespace sw {
12 
13 class lib_compute :
14  public library
15 {
16  public:
17  static key::category key_category;
18 
19  protected:
20  lib_compute(const std::string& libname, software_id sid)
21  : library(libname, sid) {
22  key_cat_ = lib_compute::key_category;
23  }
24 
25  lib_compute(const char* name, software_id sid)
26  : library(name, sid)
27  {
28  key_cat_ = lib_compute::key_category;
29  }
30 
31 };
32 
33 }
34 }
35 
36 #endif // LIBCOMPUTE_H
37 
SUMI = Simulator unified messagine interface It is also the name for a solid ink in Japanese - i...
DeclareDebugSlot(lib_compute) namespace sstmac
Definition: lib_compute.h:8