1 // =================================
 2 // Copyright (c) 2021 Seppo Laakko
 3 // Distributed under the MIT license
 4 // =================================
 5 
 6 #ifndef SNGXML_XPATH_XPATH_TOKEN_VALUE_PARSERS
 7 #define SNGXML_XPATH_XPATH_TOKEN_VALUE_PARSERS
 8 #include <sngxml/xpath/XPathApi.hpp>
 9 #include <soulng/lexer/Token.hpp>
10 
11 namespace sngxml { namespace xpath {
12 
13 std::u32string ParseDQString(const std::string& fileNameconst soulng::lexer::Token& token);
14 std::u32string ParseSQString(const std::string& fileNameconst soulng::lexer::Token& token);
15 
16 } } // namespace sngxml::xpath
17 
18 #endif // SNGXML_XPATH_XPATH_TOKEN_VALUE_PARSERS