aboutsummaryrefslogtreecommitdiffhomepage
path: root/parser.h
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-01-19 10:28:44 -0800
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-01-19 10:28:44 -0800
commit3d8face1f902bd51146c64f4df57a1de7049fd6d (patch)
tree7df41eff5ee0d50ca47a79bbc1854cf0b40fc14f /parser.h
parentfa796d668fb5b254ed9efe937fbb61b49836a1c1 (diff)
More work on instancing the parser
Diffstat (limited to 'parser.h')
-rw-r--r--parser.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/parser.h b/parser.h
index 615f6708..8c465d0a 100644
--- a/parser.h
+++ b/parser.h
@@ -187,6 +187,8 @@ enum parser_type_t {
PARSER_TYPE_COMPLETIONS_ONLY
};
+struct profile_item_t;
+
class parser_t {
private:
std::vector<block_t> blocks;
@@ -196,6 +198,7 @@ class parser_t {
parser_t& operator=(const parser_t&);
public:
+ std::vector<profile_item_t> profile_items;
/** Create a parser of the given type */
parser_t(enum parser_type_t type);