Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: C027_Support C12832 LM75B MMA7660 MbedSmartRest mbed-rtos mbed
Fork of MbedSmartRestMain by
Diff: operation/OperationSupport.h
- Revision:
- 107:f1ee3e1eb126
- Parent:
- 106:fc5f25f0e0d5
diff -r fc5f25f0e0d5 -r f1ee3e1eb126 operation/OperationSupport.h
--- a/operation/OperationSupport.h Wed May 13 12:12:55 2015 +0000
+++ b/operation/OperationSupport.h Wed May 13 13:03:20 2015 +0000
@@ -4,22 +4,20 @@
#include "Operation.h"
#include "SmartRestConf.h"
#include "SmartRestTemplate.h"
-#include "ConfigSync.h"
class OperationSupport
{
public:
- OperationSupport(SmartRestTemplate& tpl, OperationPool& pool,
- ConfigSync& _conf): _init(false), _tpl(tpl), opool(pool), conf(_conf) {}
+ OperationSupport(SmartRestTemplate& tpl, OperationPool& pool):
+ _init(false), _tpl(tpl), opool(pool) {}
+ bool init();
bool executePendingOperations();
- bool init();
private:
bool _init;
SmartRestTemplate& _tpl;
OperationPool& opool;
- ConfigSync &conf;
};
#endif
\ No newline at end of file
