Sierra Toolkit  Version of the Day
RegisterProduct.cpp
1 
10 #include <stk_util/environment/ProductRegistry.hpp>
11 
12 #include <stk_util/environment/RegisterProduct.hpp>
13 
14 namespace sierra {
15 
16 const char *
17 get_product_name()
18 {
19  return "UtilityLib";
20 }
21 
22 void
23 register_product()
24 {
25  // Register utility
26  ProductRegistry::AttributeMap &attr_map = ProductRegistry::instance().addProduct(get_product_name());
27  attr_map[ProductRegistry::VERSION] = ProductRegistry::version();
28  attr_map[ProductRegistry::TITLE] = "Utility library routines";
29  attr_map[ProductRegistry::CONTACT] = "framework-developers@sourceforge.sandia.gov";
30 
31  // Register TPL's and other things which may not be properly registered but used directly.
32 
33 }
34 
35 } // namespace sierra
Definition: Env.cpp:53