Paolo Bonzini | a020f98 | 2012-02-09 09:36:37 +0100 | [diff] [blame] | 1 | /* |
| 2 | * String parsing Visitor |
| 3 | * |
| 4 | * Copyright Red Hat, Inc. 2012 |
| 5 | * |
| 6 | * Author: Paolo Bonzini <pbonzini@redhat.com> |
| 7 | * |
| 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. |
| 10 | * |
| 11 | */ |
| 12 | |
| 13 | #ifndef STRING_INPUT_VISITOR_H |
| 14 | #define STRING_INPUT_VISITOR_H |
| 15 | |
| 16 | #include "qapi-visit-core.h" |
| 17 | |
| 18 | typedef struct StringInputVisitor StringInputVisitor; |
| 19 | |
| 20 | StringInputVisitor *string_input_visitor_new(const char *str); |
| 21 | void string_input_visitor_cleanup(StringInputVisitor *v); |
| 22 | |
| 23 | Visitor *string_input_get_visitor(StringInputVisitor *v); |
| 24 | |
| 25 | #endif |