#include #include #include namespace smo { void Mind::initialize() { /* Jolt the threads, then start them */ ComponentThread::joltAllMindThreadsReq( []() { std::cout << "Mrntt: All mind threads JOLTed." << "\n"; ComponentThread::startAllMindThreadsReq( []() { std::cout << "Mrntt: All mind threads started." << "\n"; } ); } ); } void Mind::finalize(void) { } } // namespace smo