summaryrefslogtreecommitdiff
path: root/plugins/chrony/chrony.h
diff options
context:
space:
mode:
authorOlivier Delbeke <olivier.delbeke@awtce.be>2015-04-08 17:29:14 +0200
committerOlivier Delbeke <olivier.delbeke@gmail.com>2015-04-15 20:15:41 +0200
commitfe610d9b3b1b569f7c9772733ddb0cc6e75532bf (patch)
treeae13c8115b3e031a014a9b564f8e7d2052bb93eb /plugins/chrony/chrony.h
parent7d26c469f4ccc3387ba8eaf37ad8108c8ae72686 (diff)
downloadautomotive-message-broker-fe610d9b3b1b569f7c9772733ddb0cc6e75532bf.tar.gz
Using AmbPlugin instead of AbstractSink for the chrony plugin
Diffstat (limited to 'plugins/chrony/chrony.h')
-rw-r--r--plugins/chrony/chrony.h12
1 files changed, 8 insertions, 4 deletions
diff --git a/plugins/chrony/chrony.h b/plugins/chrony/chrony.h
index aca57a3a..25da7e06 100644
--- a/plugins/chrony/chrony.h
+++ b/plugins/chrony/chrony.h
@@ -1,5 +1,6 @@
/*
Copyright (C) 2012 Intel Corporation
+ Copyright (C) 2015 AWTC Europe
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
@@ -20,7 +21,7 @@
#ifndef CHRONYSINK_H
#define CHRONYSINK_H
-#include "abstractsink.h"
+#include "ambpluginimpl.h"
#define CHRONYD_SOCKET "/tmp/chrony.gps.sock"
@@ -33,15 +34,18 @@ struct chrony_sock_sample {
int magic;
};
-class ChronySink : public AbstractSink
+class ChronySink : public AmbPluginImpl
{
public:
- ChronySink(AbstractRoutingEngine* engine, map<string, string> config);
+ ChronySink(AbstractRoutingEngine* re, const std::map<std::string, std::string>& config, AbstractSource& parent);
+ ~ChronySink() { };
+ const std::string uuid() const { return "35324592-db72-11e4-b432-0022684a4a24"; }
+ virtual void init();
virtual PropertyList subscriptions();
virtual void supportedChanged(const PropertyList & supportedProperties);
virtual void propertyChanged( AbstractPropertyType* value);
- virtual const std::string uuid();
+
};
#endif // CHRONYSINK_H