25 lines
512 B
C++
25 lines
512 B
C++
#pragma once
|
|
|
|
#include <vector>
|
|
#include <iostream>
|
|
#include <string>
|
|
#include <bitset>
|
|
#include <climits>
|
|
|
|
#include "debug.h"
|
|
|
|
//TODO: Use tr();? QTranslator
|
|
#define STRING_MUTE "Mute"
|
|
#define STRING_UNMUTE "Unmute"
|
|
#define STRING_QUIT "Quit"
|
|
#define STRING_TITLE "Mixer Fachero"
|
|
|
|
#define STRING_ROLE_CONSOLE "Console"
|
|
#define STRING_ROLE_MULTIMEDIA "Multimedia"
|
|
#define STRING_ROLE_COMMUNICATIONS "Communications"
|
|
#define STRING_ROLE_ALL "All"
|
|
//INIT BACK
|
|
|
|
class OverseerHandler;
|
|
extern OverseerHandler *osh;
|
|
|