Free Electron
scantag.h
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
Definition: anchor.h:12