diff options
author | An-Cheng Huang <ancheng@vyatta.com> | 2010-11-12 19:12:53 -0800 |
---|---|---|
committer | An-Cheng Huang <ancheng@vyatta.com> | 2010-11-12 19:12:53 -0800 |
commit | 79a94470b0f3fd4f7924bb096c61b8e064b65750 (patch) | |
tree | 049225edbd21f873b9a4bcac6571603a35aa1e89 /src/cparse/cparse.hpp | |
parent | e08c1879028ddd3b594b01c82859f8431894f497 (diff) | |
download | vyatta-cfg-79a94470b0f3fd4f7924bb096c61b8e064b65750.tar.gz vyatta-cfg-79a94470b0f3fd4f7924bb096c61b8e064b65750.zip |
initial work to parse config file into data structure.
Diffstat (limited to 'src/cparse/cparse.hpp')
-rw-r--r-- | src/cparse/cparse.hpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/cparse/cparse.hpp b/src/cparse/cparse.hpp index 478af7b..0729416 100644 --- a/src/cparse/cparse.hpp +++ b/src/cparse/cparse.hpp @@ -17,9 +17,12 @@ #ifndef _CPARSE_HPP_ #define _CPARSE_HPP_ +#include <cstore/cstore.hpp> +#include <cnode/cnode.hpp> + namespace cparse { -int parse_file(FILE *fin); +int parse_file(FILE *fin, Cstore& cs); } // namespace cparse |