MySQL++ SSQLS v2 Translator  3.2.5
genv2.h
1 /***********************************************************************
2  ssx/genv2.h - Mechanism for generating SSQLS v2 DSL code from
3  an SSQLS v2 parse result. Implements ssqlsxlat -o flag.
4 
5  Copyright (c) 2009 by Warren Young. Others may also hold copyrights
6  on code in this file. See the CREDITS.txt file in the top directory
7  of the distribution for details.
8 
9  This file is part of MySQL++.
10 
11  MySQL++ is free software; you can redistribute it and/or modify it
12  under the terms of the GNU Lesser General Public License as published
13  by the Free Software Foundation; either version 2.1 of the License, or
14  (at your option) any later version.
15 
16  MySQL++ is distributed in the hope that it will be useful, but WITHOUT
17  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18  FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
19  License for more details.
20 
21  You should have received a copy of the GNU Lesser General Public
22  License along with MySQL++; if not, write to the Free Software
23  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301
24  USA
25 ***********************************************************************/
26 
27 #if !defined(MYSQLPP_SSX_GENV2_H)
28 #define MYSQLPP_SSX_GENV2_H
29 
30 class ParseV2;
31 extern bool generate_ssqls2(const char* file_name, const ParseV2* pparse);
32 
33 #endif // !defined(MYSQLPP_SSX_GENV2_H)
Parses SSQLS v2 documents and holds the parse result.
Definition: parsev2.h:41