1 #ifndef SST_CORE_INTERFACE_INFO_H
2 #define SST_CORE_INTERFACE_INFO_H
9 const std::string& getInterface()
const {
13 void toString(std::ostream& os)
const {
14 os <<
" Interface: " << iface_ <<
"\n";
17 template <
class XMLNode>
void outputXML(XMLNode* node)
const {
18 node->SetAttribute(
"Interface", iface_.c_str());
23 iface_(T::ELI_getInterface())
34 #define SST_ELI_INTERFACE_INFO(interface) \
35 static const std::string ELI_getInterface() { \
Definition: interfaceInfo.h:7