4
Fork 0

Initial import

This commit is contained in:
R3ABM Artem 2016-03-23 20:08:20 +03:00
commit 660133c812
28 changed files with 3983 additions and 0 deletions

View 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