Extended MaximInterface

Dependents:   mbed_DS28EC20_GPIO

Revision:
6:a8c83a2e6fa4
Parent:
0:f77ad7f72d04
--- a/Links/LoggingSleep.cpp	Fri Jan 19 10:25:02 2018 -0600
+++ b/Links/LoggingSleep.cpp	Wed Jan 23 13:11:04 2019 -0600
@@ -35,13 +35,13 @@
 
 namespace MaximInterface {
 
-void LoggingSleep::operator()(int ms) const {
+void LoggingSleep::invoke(int ms) const {
   if (writeMessage) {
     std::ostringstream message;
     message << "<DELAY" << ms << '>';
     writeMessage(message.str());
   }
-  SleepDecorator::operator()(ms);
+  SleepDecorator::invoke(ms);
 }
 
 } // namespace MaximInterface