summaryrefslogtreecommitdiff
path: root/src/CommonAPI/DBus/DBusInterfaceHandler.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/CommonAPI/DBus/DBusInterfaceHandler.h')
-rw-r--r--src/CommonAPI/DBus/DBusInterfaceHandler.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/src/CommonAPI/DBus/DBusInterfaceHandler.h b/src/CommonAPI/DBus/DBusInterfaceHandler.h
deleted file mode 100644
index 1ee2cb1..0000000
--- a/src/CommonAPI/DBus/DBusInterfaceHandler.h
+++ /dev/null
@@ -1,32 +0,0 @@
-/* Copyright (C) 2013 BMW Group
- * Author: Manfred Bathelt (manfred.bathelt@bmw.de)
- * Author: Juergen Gehring (juergen.gehring@bmw.de)
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
-#ifndef COMMONAPI_DBUS_INTERFACE_HANDLER_H_
-#define COMMONAPI_DBUS_INTERFACE_HANDLER_H_
-
-#include "DBusProxyConnection.h"
-#include "DBusMessage.h"
-
-#include <memory>
-
-namespace CommonAPI {
-namespace DBus {
-
-class DBusInterfaceHandler {
- public:
- virtual ~DBusInterfaceHandler() { }
-
- virtual const char* getMethodsDBusIntrospectionXmlData() const = 0;
-
- virtual bool onInterfaceDBusMessage(const DBusMessage& dbusMessage) = 0;
-
- virtual const bool hasFreedesktopProperties() = 0;
-};
-
-} // namespace dbus
-} // namespace CommonAPI
-
-#endif // COMMONAPI_DBUS_INTERFACE_HANDLER_H_