// file : cli/generator.hxx // author : Boris Kolpackov // license : MIT; see accompanying LICENSE file #ifndef CLI_GENERATOR_HXX #define CLI_GENERATOR_HXX #include #include class generator { public: generator (); class failed {}; void generate (options&, semantics::cli_unit&, semantics::path const&); private: generator (generator const&); generator& operator= (generator const&); }; #endif // CLI_GENERATOR_HXX