Did all of the .h's in source

(adding)
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

also the Makefile.in's were from previous patch adding
the system depend stuff to configure.ac

Kent
--
mein@cs.umn.edu
This commit is contained in:
2002-11-25 11:16:17 +00:00
parent 3f2f1571e5
commit b9a19f1ea7
555 changed files with 2210 additions and 29 deletions

View File

@@ -17,6 +17,10 @@
#include "Value.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
/**
* Smart Boolean Value class.
* Is used by parser when an expression tree is build containing booleans.

View File

@@ -19,6 +19,10 @@
#include "Expression.h"
#include "Value.h" // Added by ClassView
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
class CConstExpr : public CExpression
{
//PLUGIN_DECLARE_SERIAL_EXPRESSION (CConstExpr,CExpression)

View File

@@ -32,6 +32,9 @@
#ifndef __EXPRESSION_INCLUDE
#define __EXPRESSION_INCLUDE
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#define EXP_DECLARE_HANDLE(name) typedef struct name##__ { int unused; } *name

View File

@@ -17,6 +17,10 @@
#include "Value.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
class CListValue;
class CEmptyValue : public CPropValue

View File

@@ -18,6 +18,10 @@
#include "Value.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
class CErrorValue : public CPropValue
{

View File

@@ -18,6 +18,10 @@
#include "Value.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
//extern int gRefCountExpr; // only for debugging purposes (detect mem.leaks)

View File

@@ -17,6 +17,9 @@
#include "Value.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
class CFloatValue : public CPropValue
{

View File

@@ -34,6 +34,10 @@
#include "Expression.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
class CIdentifierExpr : public CExpression
{
CValue* m_idContext;

View File

@@ -21,6 +21,10 @@
#include "Expression.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
class CIfExpr : public CExpression
{
//PLUGIN_DECLARE_SERIAL_EXPRESSION (CIfExpr,CExpression)

View File

@@ -17,6 +17,10 @@
#ifndef __INPUTPARSER_H__
#define __INPUTPARSER_H__
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
class CParser;
#include "Expression.h"

View File

@@ -18,6 +18,9 @@
#include "Value.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
class CIntValue : public CPropValue
{

View File

@@ -32,6 +32,10 @@
#ifndef __KX_HASHEDPTR
#define __KX_HASHEDPTR
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
unsigned int KX_Hash(unsigned int inDWord);

View File

@@ -32,6 +32,10 @@
#ifndef KX_PYTHON_H
#define KX_PYTHON_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
//#define USE_DL_EXPORT
#include "Python.h"

View File

@@ -32,6 +32,10 @@
#ifndef KX_PYTHON_H
#define KX_PYTHON_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
//#define USE_DL_EXPORT
#include "Python.h"

View File

@@ -32,6 +32,10 @@
#ifndef KX_PYTHON_H
#define KX_PYTHON_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#define USE_DL_EXPORT
#include "Python.h"

View File

@@ -16,6 +16,9 @@
#if !defined _LISTVALUE_H
#define _LISTVALUE_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "Value.h"

View File

@@ -16,10 +16,12 @@
#if !defined(AFX_OPERATOR1EXPR_H__A1653901_BF41_11D1_A51C_00A02472FC58__INCLUDED_)
#define AFX_OPERATOR1EXPR_H__A1653901_BF41_11D1_A51C_00A02472FC58__INCLUDED_
#include "Expression.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
class COperator1Expr : public CExpression
{
//PLUGIN_DECLARE_SERIAL_EXPRESSION (COperator1Expr,CExpression)

View File

@@ -20,6 +20,10 @@
#include "Expression.h"
#include "Value.h" // Added by ClassView
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
class COperator2Expr : public CExpression
{

View File

@@ -29,6 +29,11 @@
*
* ***** END GPL/BL DUAL LICENSE BLOCK *****
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#ifndef NO_EXP_PYTHON_EMBEDDING
#ifndef _adr_py_lib_h_ // only process once,

View File

@@ -18,6 +18,10 @@
#include "Value.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
class CStringValue : public CPropValue
{

View File

@@ -13,6 +13,10 @@
*
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#ifdef WIN32
#pragma warning (disable:4786)
#endif //WIN32

View File

@@ -15,6 +15,9 @@
#if !defined _VECTORVALUE_H
#define _VECTORVALUE_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "Value.h"

View File

@@ -35,6 +35,10 @@
#include "Value.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
//
// Void value, used to transport *any* type of data