1 /*******************************************************************************
2  * povdebug.h
3  *
4  * This header file is included by all C++ files in POV-Ray. It must be the
5  * last header file included (with the possible exception of files that do
6  * not declare anything that could clash with declarations in this file).
7  * As a rule, system header files are not safe to include after this file.
8  *
9  * Platform-specific declarations may be placed in the file 'syspovdebug.h';
10  * as a rule, such declarations, where present, will override ones in this file.
11  *
12  * ---------------------------------------------------------------------------
13  * Persistence of Vision Ray Tracer ('POV-Ray') version 3.7.
14  * Copyright 1991-2013 Persistence of Vision Raytracer Pty. Ltd.
15  *
16  * POV-Ray is free software: you can redistribute it and/or modify
17  * it under the terms of the GNU Affero General Public License as
18  * published by the Free Software Foundation, either version 3 of the
19  * License, or (at your option) any later version.
20  *
21  * POV-Ray is distributed in the hope that it will be useful,
22  * but WITHOUT ANY WARRANTY; without even the implied warranty of
23  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
24  * GNU Affero General Public License for more details.
25  *
26  * You should have received a copy of the GNU Affero General Public License
27  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
28  * ---------------------------------------------------------------------------
29  * POV-Ray is based on the popular DKB raytracer version 2.12.
30  * DKBTrace was originally written by David K. Buck.
31  * DKBTrace Ver 2.0-2.12 were written by David K. Buck & Aaron A. Collins.
32  * ---------------------------------------------------------------------------
33  * $File: //depot/public/povray/3.x/source/base/povdebug.h $
34  * $Revision: #1 $
35  * $Change: 6069 $
36  * $DateTime: 2013/11/06 11:59:40 $
37  * $Author: chrisc $
38  *******************************************************************************/
39 
40 #ifndef POVDEBUG_H
41 #define POVDEBUG_H
42 
43 #include "syspovdebug.h"
44 
45 #endif // POVDEBUG_H
46 
47