unicorn/qemu/include/qapi/qobject-input-visitor.h

28 lines
551 B
C
Raw Normal View History

2015-08-21 09:04:50 +02:00
/*
* Input Visitor
*
* Copyright IBM, Corp. 2011
*
* Authors:
* Anthony Liguori <aliguori@us.ibm.com>
*
* This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
* See the COPYING.LIB file in the top-level directory.
*
*/
#ifndef QMP_INPUT_VISITOR_H
#define QMP_INPUT_VISITOR_H
#include "qapi/visitor.h"
#include "qapi/qmp/qobject.h"
typedef struct QObjectInputVisitor QObjectInputVisitor;
2015-08-21 09:04:50 +02:00
/*
* Return a new input visitor that converts QMP to QAPI.
*/
Visitor *qobject_input_visitor_new(QObject *obj);
2015-08-21 09:04:50 +02:00
#endif