Removed the config.h thing from the .h's in the source dir.
So we should be all set now :) Kent -- mein@cs.umn.edu
This commit is contained in:
@@ -17,10 +17,6 @@
|
||||
|
||||
#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.
|
||||
|
@@ -19,10 +19,6 @@
|
||||
#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)
|
||||
|
@@ -32,10 +32,6 @@
|
||||
#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
|
||||
|
||||
EXP_DECLARE_HANDLE(EXP_ValueHandle);
|
||||
|
@@ -17,10 +17,6 @@
|
||||
|
||||
#include "Value.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class CListValue;
|
||||
|
||||
class CEmptyValue : public CPropValue
|
||||
|
@@ -18,10 +18,6 @@
|
||||
|
||||
#include "Value.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class CErrorValue : public CPropValue
|
||||
{
|
||||
|
||||
|
@@ -18,13 +18,7 @@
|
||||
|
||||
#include "Value.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
//extern int gRefCountExpr; // only for debugging purposes (detect mem.leaks)
|
||||
|
||||
|
||||
//extern int gRefCountExpr; // only for debugging purposes (detect mem.leaks)
|
||||
|
||||
|
||||
#define PLUGIN_DECLARE_SERIAL_EXPRESSION(class_name,base_class_name) \
|
||||
|
@@ -17,10 +17,6 @@
|
||||
|
||||
#include "Value.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class CFloatValue : public CPropValue
|
||||
{
|
||||
//PLUGIN_DECLARE_SERIAL (CFloatValue,CValue)
|
||||
|
@@ -34,10 +34,6 @@
|
||||
|
||||
#include "Expression.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class CIdentifierExpr : public CExpression
|
||||
{
|
||||
CValue* m_idContext;
|
||||
|
@@ -21,10 +21,6 @@
|
||||
|
||||
#include "Expression.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class CIfExpr : public CExpression
|
||||
{
|
||||
//PLUGIN_DECLARE_SERIAL_EXPRESSION (CIfExpr,CExpression)
|
||||
|
@@ -17,10 +17,6 @@
|
||||
#ifndef __INPUTPARSER_H__
|
||||
#define __INPUTPARSER_H__
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class CParser;
|
||||
#include "Expression.h"
|
||||
|
||||
|
@@ -18,10 +18,6 @@
|
||||
|
||||
#include "Value.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class CIntValue : public CPropValue
|
||||
{
|
||||
//PLUGIN_DECLARE_SERIAL (CIntValue,CValue)
|
||||
|
@@ -32,13 +32,8 @@
|
||||
#ifndef __KX_HASHEDPTR
|
||||
#define __KX_HASHEDPTR
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
unsigned int KX_Hash(unsigned int inDWord);
|
||||
|
||||
|
||||
class CHashedPtr
|
||||
{
|
||||
void* m_valptr;
|
||||
|
@@ -32,10 +32,6 @@
|
||||
#ifndef KX_PYTHON_H
|
||||
#define KX_PYTHON_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
//#define USE_DL_EXPORT
|
||||
#include "Python.h"
|
||||
|
||||
|
@@ -32,10 +32,6 @@
|
||||
#ifndef KX_PYTHON_H
|
||||
#define KX_PYTHON_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
//#define USE_DL_EXPORT
|
||||
#include "Python.h"
|
||||
|
||||
|
@@ -32,10 +32,6 @@
|
||||
#ifndef KX_PYTHON_H
|
||||
#define KX_PYTHON_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#define USE_DL_EXPORT
|
||||
#include "Python.h"
|
||||
|
||||
|
@@ -16,10 +16,6 @@
|
||||
#if !defined _LISTVALUE_H
|
||||
#define _LISTVALUE_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "Value.h"
|
||||
|
||||
class CListValue : public CPropValue
|
||||
|
@@ -18,10 +18,6 @@
|
||||
|
||||
#include "Expression.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class COperator1Expr : public CExpression
|
||||
{
|
||||
//PLUGIN_DECLARE_SERIAL_EXPRESSION (COperator1Expr,CExpression)
|
||||
|
@@ -20,11 +20,6 @@
|
||||
#include "Expression.h"
|
||||
#include "Value.h" // Added by ClassView
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
|
||||
class COperator2Expr : public CExpression
|
||||
{
|
||||
//PLUGIN_DECLARE_SERIAL_EXPRESSION (COperator2Expr,CExpression)
|
||||
|
@@ -30,10 +30,6 @@
|
||||
* ***** 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,
|
||||
|
@@ -18,10 +18,6 @@
|
||||
|
||||
#include "Value.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
class CStringValue : public CPropValue
|
||||
{
|
||||
|
||||
|
@@ -13,17 +13,11 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#ifdef WIN32
|
||||
#pragma warning (disable:4786)
|
||||
#endif //WIN32
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////////////
|
||||
/////////////////////////////////////////////////////////////////////////////////////
|
||||
////
|
||||
//// Baseclass CValue
|
||||
//// Together with CExpression, CValue and it's derived classes can be used to
|
||||
//// parse expressions into a parsetree with error detecting/correcting capabilities
|
||||
@@ -41,7 +35,6 @@
|
||||
//// Some small editor-specific things added
|
||||
//// A helperclass CompressorArchive handles the serialization
|
||||
////
|
||||
////////////////////////////////////////////////////////////////////////////////////
|
||||
/////////////////////////////////////////////////////////////////////////////////////
|
||||
#ifndef __VALUE_H__
|
||||
#define __VALUE_H__
|
||||
@@ -49,9 +42,6 @@
|
||||
#include <map> // array functionality for the propertylist
|
||||
#include "STR_String.h" // STR_String class
|
||||
|
||||
|
||||
|
||||
|
||||
#ifndef GEN_NO_ASSERT
|
||||
#undef assert
|
||||
#define assert(exp) ((void)NULL)
|
||||
@@ -68,9 +58,6 @@
|
||||
#define debug(exp) ((void)NULL)
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
|
||||
#ifndef GEN_NO_ASSERTD
|
||||
#undef assertd
|
||||
#define assertd(exp) ((void)NULL)
|
||||
|
@@ -15,10 +15,6 @@
|
||||
#if !defined _VECTORVALUE_H
|
||||
#define _VECTORVALUE_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include "Value.h"
|
||||
|
||||
#define KX_X 0
|
||||
|
@@ -35,11 +35,6 @@
|
||||
|
||||
#include "Value.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
|
||||
//
|
||||
// Void value, used to transport *any* type of data
|
||||
//
|
||||
|
Reference in New Issue
Block a user