yaml-cpp

FORK: A YAML parser and emitter in C++
git clone https://git.neptards.moe/neptards/yaml-cpp.git
Log | Files | Refs | README | LICENSE

scantag.h (627B)


      1 #ifndef SCANTAG_H_62B23520_7C8E_11DE_8A39_0800200C9A66
      2 #define SCANTAG_H_62B23520_7C8E_11DE_8A39_0800200C9A66
      3 
      4 #if defined(_MSC_VER) ||                                            \
      5     (defined(__GNUC__) && (__GNUC__ == 3 && __GNUC_MINOR__ >= 4) || \
      6      (__GNUC__ >= 4))  // GCC supports "pragma once" correctly since 3.4
      7 #pragma once
      8 #endif
      9 
     10 #include <string>
     11 #include "stream.h"
     12 
     13 namespace YAML {
     14 const std::string ScanVerbatimTag(Stream& INPUT);
     15 const std::string ScanTagHandle(Stream& INPUT, bool& canBeHandle);
     16 const std::string ScanTagSuffix(Stream& INPUT);
     17 }
     18 
     19 #endif  // SCANTAG_H_62B23520_7C8E_11DE_8A39_0800200C9A66