target/cris: Let cris_mmu_translate() use MMUAccessType access_type
[qemu/ar7.git] / include / qapi / string-input-visitor.h
blob921f3875b988c8ce9d64be7563f2e6d99ff22e97
1 /*
2 * String parsing Visitor
4 * Copyright Red Hat, Inc. 2012
6 * Author: Paolo Bonzini <pbonzini@redhat.com>
8 * This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
9 * See the COPYING.LIB file in the top-level directory.
13 #ifndef STRING_INPUT_VISITOR_H
14 #define STRING_INPUT_VISITOR_H
16 #include "qapi/visitor.h"
18 typedef struct StringInputVisitor StringInputVisitor;
21 * The string input visitor does not implement support for visiting
22 * QAPI structs, alternates, null, or arbitrary QTypes. Only flat lists
23 * of integers (except type "size") are supported.
25 Visitor *string_input_visitor_new(const char *str);
27 #endif