Line | Branch | Exec | Source |
---|---|---|---|
1 | #include "GlobalParam.h" | ||
2 | |||
3 | namespace iguana { | ||
4 | |||
5 | // default param values | ||
6 | GlobalParam<std::string> GlobalConcurrencyModel{"none"}; | ||
7 | GlobalParam<std::string> GlobalRcdbUrl{""}; | ||
8 | |||
9 | // template specializations | ||
10 | template class GlobalParam<std::string>; | ||
11 | } | ||
12 |