home downloads news documentation contact In this first lesson we learn most of what we need to know to get coding from a simple example. Although Theron is powerful, it's also easy to use. In this first lesson we'll see, in a simple example, most of what we'll need to know going forward. We'll write a simple actor that responds to messages sent to it by printing their contents. The messages we'll send are std::string objects. When the actor receives a std::string message containing the text "Hello world!", it duly prints it out. We start by including the main Theron header: # include <Theron/Theron.h> Next, we define the Printer actor. An actor is just a C++ class that derives from Theron::Actor: // Actor type that prints strings. // Derives from Theron::Actor. class Printer : public Theron::Actor { public : // Constructor, passes the framework to the base...