33 lines
No EOL
567 B
C++
33 lines
No EOL
567 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 network, uint32_t link);
|
|
~PatchCordProxy();
|
|
|
|
void setTalkerID(uint32_t value);
|
|
uint32_t getTalkerID();
|
|
|
|
private:
|
|
|
|
DBusConnection* connection;
|
|
char* name;
|
|
|
|
uint32_t number;
|
|
char* banner;
|
|
|
|
void getContextBanner();
|
|
void setVendorSpecificValue(uint32_t key, uint32_t value);
|
|
uint32_t getVendorSpecificValue(uint32_t key);
|
|
|
|
};
|
|
|
|
#endif |