WooHoo me again ;)

I took out the following from the includes in the intern dir that still had
it:
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif

Kent
--
mein@cs.umn.edu
This commit is contained in:
2002-12-26 18:25:17 +00:00
parent 331fffaecb
commit f78de74b20
128 changed files with 0 additions and 579 deletions

View File

@@ -60,14 +60,9 @@
* ***** END GPL/BL DUAL LICENSE BLOCK *****
*/
#ifndef GEN_LIST_H
#define GEN_LIST_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
class GEN_Link {
public:
GEN_Link() : m_next(0), m_prev(0) {}

View File

@@ -32,11 +32,6 @@
#ifndef GEN_MAP_H
#define GEN_MAP_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
template <class Key, class Value>
class GEN_Map {
private:

View File

@@ -32,10 +32,6 @@
#ifndef INCLUDED_MT_CmMatrix4x4
#define INCLUDED_MT_CmMatrix4x4
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
/**
* A 4x4 matrix. This is an OpenGl style matrix (column major) meaning
* that the vector {m[0][0],m[0][1],m[0][2],m[0][3]} is the first column of

View File

@@ -46,10 +46,6 @@
#ifndef MT_MATRIX3X3_H
#define MT_MATRIX3X3_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <MT_assert.h>
#include "MT_Vector3.h"

View File

@@ -39,10 +39,6 @@
#ifndef MT_MATRIX4X4_H
#define MT_MATRIX4X4_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <MT_assert.h>
#include "MT_Vector4.h"

View File

@@ -46,10 +46,6 @@
#ifndef MT_MINMAX_H
#define MT_MINMAX_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
template <class T>
inline const T& MT_min(const T& a, const T& b) {
return b < a ? b : a;

View File

@@ -32,10 +32,6 @@
#ifndef GEN_OPTIMIZE_H
#define GEN_OPTIMIZE_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#ifdef GEN_INLINED
#define GEN_INLINE inline
#else

View File

@@ -32,10 +32,6 @@
#ifndef MT_PLANE3
#define MT_PLANE3
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "MT_Tuple4.h"
#include "MT_Point3.h"

View File

@@ -46,10 +46,6 @@
#ifndef MT_POINT2_H
#define MT_POINT2_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "MT_Vector2.h"
class MT_Point2 : public MT_Vector2 {

View File

@@ -46,10 +46,6 @@
#ifndef MT_POINT_H
#define MT_POINT_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "MT_Vector3.h"
class MT_Point3 : public MT_Vector3 {

View File

@@ -46,10 +46,6 @@
#ifndef MT_QUATERNION_H
#define MT_QUATERNION_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <MT_assert.h>
#include "MT_Vector3.h"

View File

@@ -49,10 +49,6 @@
#include <math.h>
#include <float.h>
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "MT_random.h"
#include "NM_Scalar.h"

View File

@@ -32,10 +32,6 @@
#ifndef GEN_STREAM_H
#define GEN_STREAM_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#ifdef __CUSTOM_STREAM
class MT_OStream

View File

@@ -53,10 +53,6 @@
#ifndef MT_TRANSFORM_H
#define MT_TRANSFORM_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "MT_Point3.h"
#include "MT_Matrix3x3.h"

View File

@@ -46,10 +46,6 @@
#ifndef MT_Tuple2_H
#define MT_Tuple2_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "MT_Stream.h"
#include "MT_Scalar.h"

View File

@@ -46,10 +46,6 @@
#ifndef MT_TUPLE3_H
#define MT_TUPLE3_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "MT_Stream.h"
#include "MT_Scalar.h"

View File

@@ -46,10 +46,6 @@
#ifndef MT_TUPLE4_H
#define MT_TUPLE4_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "MT_Stream.h"
#include "MT_Scalar.h"

View File

@@ -46,10 +46,6 @@
#ifndef MT_VECTOR2_H
#define MT_VECTOR2_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <MT_assert.h>
#include "MT_Tuple2.h"

View File

@@ -46,10 +46,6 @@
#ifndef MT_VECTOR3_H
#define MT_VECTOR3_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <MT_assert.h>
#include "MT_Tuple3.h"

View File

@@ -46,10 +46,6 @@
#ifndef MT_VECTOR4_H
#define MT_VECTOR4_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <MT_assert.h>
#include "MT_Tuple4.h"

View File

@@ -32,10 +32,6 @@
#ifndef MT_ASSERT_H
#define MT_ASSERT_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#ifdef MT_NDEBUG
#define MT_assert(predicate) ((void)0)

View File

@@ -32,10 +32,6 @@
#ifndef MT_RANDOM_H
#define MT_RANDOM_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <limits.h>
#define MT_RAND_MAX ULONG_MAX

View File

@@ -30,13 +30,8 @@
*/
#include <math.h>
#include <iostream>
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
template <class T>
class NM_Scalar {
public: