Skip to main content

SST::Interfaces::StringEvent

The StringEvent class is an Event, derived from SST::Event. It is provided for early prototyping and testing use cases. The event wraps a single string. The event is serializable.

Member variables

  • str (std::string) A string. Has no default value.

Member functions

Constructor

StringEvent::StringEvent(); // For serialization only
StringEvent::StringEvent(const std::string& str);

Destructor

StringEvent::~StringEvent();

clone

virtual Event* clone();

getString

const std::string& getString();
#include <sst/core/interfaces/stringEvent.h>