qapi: add trace events for visitor
[qemu.git] / include / qapi / qmp-input-visitor.h
blobf3ff5f3e9809b2a5c7c8fe394e9b74b26660d365
1 /*
2 * Input Visitor
4 * Copyright IBM, Corp. 2011
6 * Authors:
7 * Anthony Liguori <aliguori@us.ibm.com>
9 * This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
10 * See the COPYING.LIB file in the top-level directory.
14 #ifndef QMP_INPUT_VISITOR_H
15 #define QMP_INPUT_VISITOR_H
17 #include "qapi/visitor.h"
18 #include "qapi/qmp/qobject.h"
20 typedef struct QmpInputVisitor QmpInputVisitor;
23 * Return a new input visitor that converts QMP to QAPI.
25 * Set @strict to reject a parse that doesn't consume all keys of a
26 * dictionary; otherwise excess input is ignored.
28 Visitor *qmp_input_visitor_new(QObject *obj, bool strict);
30 #endif