Sha256: a0113cf62e839ff3a25ddf32e4bfc8b004b9afd523bee4daedeeb894739462f4

Contents?: true

Size: 588 Bytes

Versions: 1

Compression:

Stored size: 588 Bytes

Contents

//
//  SerializeYAML.h
//  snowcrash
//
//  Created by Zdenek Nemec on 5/3/13.
//  Copyright (c) 2013 Apiary Inc. All rights reserved.
//

#ifndef SNOWCRASH_SERIALIZE_YAML_H
#define SNOWCRASH_SERIALIZE_YAML_H

#include <ostream>
#include "BlueprintSourcemap.h"

namespace snowcrash {
    
    // Naive YAML serialization to ostream
    void SerializeYAML(const snowcrash::Blueprint& blueprint, std::ostream &os);

    // Naive Sourcmap YAML serialization to ostream
    void SerializeSourceMapYAML(const snowcrash::SourceMap<snowcrash::Blueprint>& blueprint, std::ostream &os);
}

#endif

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
redsnow-0.2.1 ext/snowcrash/src/SerializeYAML.h