comparison Applications/Generic/NativeStoneApplicationContext.cpp @ 1060:e146743f6cdc broker

removing file MessageBroker.h
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 11 Oct 2019 17:20:41 +0200
parents 4f2416d519b4
children 5d1b0d2f4b15
comparison
equal deleted inserted replaced
1059:e713f1a99861 1060:e146743f6cdc
43 boost::this_thread::sleep(boost::posix_time::milliseconds(that->updateDelayInMs_)); 43 boost::this_thread::sleep(boost::posix_time::milliseconds(that->updateDelayInMs_));
44 } 44 }
45 } 45 }
46 46
47 47
48 NativeStoneApplicationContext::NativeStoneApplicationContext(MessageBroker& broker) : 48 NativeStoneApplicationContext::NativeStoneApplicationContext() :
49 StoneApplicationContext(broker),
50 centralViewport_(broker),
51 stopped_(true), 49 stopped_(true),
52 updateDelayInMs_(100) // By default, 100ms between each refresh of the content 50 updateDelayInMs_(100) // By default, 100ms between each refresh of the content
53 { 51 {
54 srand(static_cast<unsigned int>(time(NULL))); 52 srand(static_cast<unsigned int>(time(NULL)));
55 } 53 }