pre.h 902 Bytes
Newer Older
Dimitri van Heesch's avatar
Dimitri van Heesch committed
1 2
/******************************************************************************
 *
3
 * 
Dimitri van Heesch's avatar
Dimitri van Heesch committed
4
 *
Dimitri van Heesch's avatar
Dimitri van Heesch committed
5
 * Copyright (C) 1997-2014 by Dimitri van Heesch.
Dimitri van Heesch's avatar
Dimitri van Heesch committed
6 7 8 9 10 11 12
 *
 * 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
13 14
 * 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
15 16 17 18 19 20
 *
 */

#ifndef PRE_H
#define PRE_H

21
class BufStr;
Dimitri van Heesch's avatar
Dimitri van Heesch committed
22 23

void initPreprocessor();
24
void cleanUpPreprocessor();
Dimitri van Heesch's avatar
Dimitri van Heesch committed
25
void addSearchDir(const char *dir);
26
void preprocessFile(const char *fileName,BufStr &input,BufStr &output);
27
void preFreeScanner();
Dimitri van Heesch's avatar
Dimitri van Heesch committed
28 29

#endif