Zen
A cross-platform functional programming language

/home/renji/Data/projects/zenlang/sources/zbl/ProjectReader.hpp

Go to the documentation of this file.
00001 
00005 #pragma once
00006 
00007 #include "Build.hpp"
00008 
00009 namespace zbl {
00012     class ProjectReader {
00013     public:
00017         ProjectReader(Build::Project& project);
00018 
00021         ~ProjectReader();
00022 
00023     public:
00027         void read(const z::string& filename);
00028 
00029     private:
00031         class Impl;
00032 
00034         Impl* _impl;
00035     };
00036 }
00037 
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Defines