Added support of iconv
This commit is contained in:
parent
1c09eace91
commit
0c0990a9c5
4 changed files with 78 additions and 32 deletions
|
@ -3,6 +3,8 @@
|
|||
#ifndef BRANDMEISTERBRIDGE_H
|
||||
#define BRANDMEISTERBRIDGE_H
|
||||
|
||||
#include <iconv.h>
|
||||
|
||||
#include "PatchCord.h"
|
||||
|
||||
class BrandMeisterBridge
|
||||
|
@ -12,6 +14,7 @@ class BrandMeisterBridge
|
|||
BrandMeisterBridge();
|
||||
~BrandMeisterBridge();
|
||||
|
||||
void setEncodingConfiguration(const char* configuration);
|
||||
void setDefaultConfiguration(const char* configuration);
|
||||
void setProxyConfiguration(const char* configuration);
|
||||
|
||||
|
@ -22,9 +25,12 @@ class BrandMeisterBridge
|
|||
private:
|
||||
|
||||
PatchCord* proxy;
|
||||
iconv_t handle;
|
||||
char* talker;
|
||||
int unknown;
|
||||
|
||||
void setTalkerData(const char* call, const char* name);
|
||||
|
||||
};
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue