Vesna
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
VoipDBusCustomMetatypesDeclarations.h
Go to the documentation of this file.
1 #ifndef VOIPDBUSCUSTOMMETATYPEDECLARATION_H
2 #define VOIPDBUSCUSTOMMETATYPEDECLARATION_H
3 
4 #include <QString>
5 #include <QMap>
6 #include <QDBusMetaType>
7 
8 // audio device ID -> audio device name
10 Q_DECLARE_METATYPE(AudioDevicesMap)
11 
12 // input=0/output=1 audio device -> actually set audio device ID
13 typedef QMap<int, int> AudioDeviceSettingMap;
14 Q_DECLARE_METATYPE(AudioDeviceSettingMap)
15 
16 // codec ID -> codec priority
17 typedef QMap<QString, unsigned int> AudioCodecsMap;
18 Q_DECLARE_METATYPE(AudioCodecsMap)
19 
20 #endif // VOIPDBUSCUSTOMMETATYPEDECLARATION_H
QMap< int, QString > AudioDevicesMap
Definition: VoipDBusCustomMetatypesDeclarations.h:9