aboutsummaryrefslogtreecommitdiffstats
path: root/nexus/LoopController.h
diff options
context:
space:
mode:
Diffstat (limited to 'nexus/LoopController.h')
-rw-r--r--nexus/LoopController.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/nexus/LoopController.h b/nexus/LoopController.h
index d047f870..bb8314f2 100644
--- a/nexus/LoopController.h
+++ b/nexus/LoopController.h
@@ -13,19 +13,20 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
+
#ifndef _LOOP_CONTROLLER_H
#define _LOOP_CONTROLLER_H
#include "Controller.h"
+
class LoopController : public Controller {
public:
- LoopController();
+ LoopController(PropertyManager *propmngr);
virtual ~LoopController() {}
-private:
- int enable();
- int disable();
+ int set(const char *name, const char *value);
+ const char *get(const char *name, char *buffer, size_t maxsize);
};
#endif