constexp.h 1 KB
Newer Older
Dimitri van Heesch's avatar
Dimitri van Heesch committed
1 2
/******************************************************************************
 *
3
 * 
Dimitri van Heesch's avatar
Dimitri van Heesch committed
4 5
 *
 *
Dimitri van Heesch's avatar
Dimitri van Heesch committed
6
 * Copyright (C) 1997-2013 by Dimitri van Heesch.
Dimitri van Heesch's avatar
Dimitri van Heesch committed
7 8 9 10 11 12 13
 *
 * Permission to use, copy, modify, and distribute this software and its
 * documentation under the terms of the GNU General Public License is hereby 
 * granted. No representations are made about the suitability of this software 
 * for any purpose. It is provided "as is" without express or implied warranty.
 * See the GNU General Public License for more details.
 *
Dimitri van Heesch's avatar
Dimitri van Heesch committed
14 15
 * Documents produced by Doxygen are derivative works derived from the
 * input used in their production; they are not affected by this license.
Dimitri van Heesch's avatar
Dimitri van Heesch committed
16 17 18 19 20 21 22
 *
 */

#ifndef _CONSTEXP_H
#define _CONSTEXP_H

#include "cppvalue.h"
23
#include <qcstring.h>
Dimitri van Heesch's avatar
Dimitri van Heesch committed
24

25 26 27
extern bool parseconstexp(const char *fileName,int line,const QCString &s);
extern int constexpYYparse();
extern int constexpYYdebug;
28 29 30 31
extern QCString g_strToken;
extern CPPValue g_resultValue;
extern QCString g_constExpFileName;
extern int      g_constExpLineNr;
Dimitri van Heesch's avatar
Dimitri van Heesch committed
32 33

#endif