Initial import
This commit is contained in:
commit
660133c812
28 changed files with 3983 additions and 0 deletions
28
SVXLink/echolink/BrandMeisterBridge.h
Normal file
28
SVXLink/echolink/BrandMeisterBridge.h
Normal file
|
@ -0,0 +1,28 @@
|
|||
// Copyright 2015 by Artem Prilutskiy
|
||||
|
||||
#ifndef BRANDMEISTERBRIDGE_H
|
||||
#define BRANDMEISTERBRIDGE_H
|
||||
|
||||
#include "PatchCordProxy.h"
|
||||
#include "UserDataStore.h"
|
||||
|
||||
class BrandMeisterBridge
|
||||
{
|
||||
public:
|
||||
|
||||
BrandMeisterBridge();
|
||||
~BrandMeisterBridge();
|
||||
|
||||
const char* getTalker();
|
||||
void setTalker(const char* call, const char* name);
|
||||
void handleChatMessage(const char* text);
|
||||
|
||||
private:
|
||||
|
||||
PatchCordProxy proxy;
|
||||
UserDataStore store;
|
||||
char* talker;
|
||||
|
||||
};
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue