Sha256: 6b94a9d5228d9898ae167cbdb1eb4bf29b784de0fb1e3d7a9be17e0bef5bf036

Contents?: true

Size: 556 Bytes

Versions: 8

Compression:

Stored size: 556 Bytes

Contents

//
//  Parser.h
//  snowcrash
//
//  Created by Zdenek Nemec on 4/8/13.
//  Copyright (c) 2013 Apiary Inc. All rights reserved.
//

#ifndef SNOWCRASH_PARSER_H
#define SNOWCRASH_PARSER_H

#include <functional>
#include "Blueprint.h"
#include "BlueprintParserCore.h"

namespace snowcrash {
    
    //
    // API Blueprint Parser
    //
    class Parser {
    public:
        
        // Parse source data into Blueprint AST
        void parse(const SourceData& source, BlueprintParserOptions options, Result& result, Blueprint& blueprint);
    };
}

#endif

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
redsnow-0.1.6 ext/snowcrash/src/Parser.h
redsnow-0.1.5 ext/snowcrash/src/Parser.h
redsnow-0.1.4 ext/snowcrash/src/Parser.h
redsnow-0.1.3 ext/snowcrash/src/Parser.h
redsnow-0.1.2 ext/snowcrash/src/Parser.h
redsnow-0.1.1 ext/snowcrash/src/Parser.h
redsnow-0.1.0 ext/snowcrash/src/Parser.h
redsnow-0.0.8 ext/snowcrash/src/Parser.h