4
Fork 0
AutoPatch/SVXLink/echolink/PatchCordProxy.h
2016-03-23 20:08:20 +03:00

31 lines
No EOL
534 B
C++

// Copyright 2015 by Artem Prilutskiy
#ifndef PATCHCORDPROXY_H
#define PATCHCORDPROXY_H
#include <stdint.h>
#include <dbus/dbus.h>
class PatchCordProxy
{
public:
PatchCordProxy(uint32_t number);
~PatchCordProxy();
void setTalkerID(uint32_t value);
uint32_t getTalkerID();
private:
DBusConnection* connection;
uint32_t number;
char* banner;
void getContextBanner();
void setVendorSpecificValue(uint32_t key, uint32_t value);
uint32_t getVendorSpecificValue(uint32_t key);
};
#endif