summaryrefslogtreecommitdiffstats
path: root/meta-audio-4a-framework/README.md
blob: 37dd360a82a26af1e316f03176229886a0fed0a1 (plain)
1
2
3
Collection of recipes for first integration of 4A (Advanced AGL Audio Architecture).

This layer should disappear and recipes merged into meta-agl.
governing permissions and * limitations under the License. */ #include <QDebug> #include <QJsonArray> #include <QJsonDocument> #include <QJsonObject> #include "telephonymessage.h" bool TelephonyMessage::createRequest(QString verb, QString value) { QStringList verbs {"dial", "answer", "hangup", "subscribe", "unsubscribe"}; if (!verbs.contains(verb)) return false; QJsonObject parameter; parameter.insert("value", value); return Message::createRequest("telephony", verb, parameter); }