First commit

This commit is contained in:
Federico Aponte
2022-01-16 01:14:05 +01:00
commit 15320a8f46
48 changed files with 9608 additions and 0 deletions

23
src/vb6_parser_helper.cpp Normal file
View File

@@ -0,0 +1,23 @@
//: vb6_parser_helper.cpp
// vb6_parser
// Copyright (c) 2022 Federico Aponte
// This code is licensed under GNU Software License (see LICENSE.txt for details)
#include <boost/spirit/home/x3/version.hpp>
#include <sstream>
namespace vb6_grammar {
std::string getParserInfo()
{
using namespace std;
ostringstream os;
os << "SPIRIT_X3_VERSION: " << showbase << hex << SPIRIT_X3_VERSION
<< noshowbase << dec << '\n'
<< "VB6_PARSER_VERSION: 0.1" << '\n';
return os.str();
}
}