use precomp hdrs

This commit is contained in:
cxgeorge 2001-06-04 20:57:38 +00:00
parent 771a21601d
commit 606dcb8563
22 changed files with 211 additions and 3 deletions

View File

@ -58,6 +58,8 @@
vec4DataTransition.h vectorDataAttribute.I vectorDataAttribute.h \
vectorDataTransition.I vectorDataTransition.h
#define PRECOMPILED_HEADER dgraph_headers.h
#define IGATESCAN \
dataNode.cxx dataNode.h dataRelation.cxx dataRelation.h \
dataGraphTraversal.cxx dataGraphTraversal.h

View File

@ -16,10 +16,19 @@
//
////////////////////////////////////////////////////////////////////
#if defined(WIN32_VC) && !defined(NO_PCH)
#include "dgraph_headers.h"
#endif
#pragma hdrstop
#if !defined(WIN32_VC) || defined(NO_PCH)
#include "buttonEventDataAttribute.h"
#include "buttonEventDataTransition.h"
#include <indent.h>
#endif
#include <modifierButtons.h>
#include <algorithm>

View File

@ -16,8 +16,16 @@
//
////////////////////////////////////////////////////////////////////
#if defined(WIN32_VC) && !defined(NO_PCH)
#include "dgraph_headers.h"
#endif
#pragma hdrstop
#if !defined(WIN32_VC) || defined(NO_PCH)
#include "buttonEventDataTransition.h"
#include "buttonEventDataAttribute.h"
#endif
TypeHandle ButtonEventDataTransition::_type_handle;

View File

@ -16,7 +16,14 @@
//
////////////////////////////////////////////////////////////////////
#include "config_dgraph.h"
#if defined(WIN32_VC) && !defined(NO_PCH)
#include "dgraph_headers.h"
#endif
#pragma hdrstop
#if !defined(WIN32_VC) || defined(NO_PCH)
#include "dgraph_headers.h"
#include "dataNode.h"
#include "dataRelation.h"
#include "intDataTransition.h"
@ -29,6 +36,7 @@
#include "matrixDataAttribute.h"
#include "buttonEventDataTransition.h"
#include "buttonEventDataAttribute.h"
#endif
#include <dconfig.h>

View File

@ -16,8 +16,17 @@
//
////////////////////////////////////////////////////////////////////
#if defined(WIN32_VC) && !defined(NO_PCH)
#include "dgraph_headers.h"
#endif
#pragma hdrstop
#if !defined(WIN32_VC) || defined(NO_PCH)
#include "dataGraphTraversal.h"
#include "dataGraphTraverser.h"
#endif
#include <pStatTimer.h>
#include <pStatCollector.h>

View File

@ -16,11 +16,19 @@
//
////////////////////////////////////////////////////////////////////
#if defined(WIN32_VC) && !defined(NO_PCH)
#include "dgraph_headers.h"
#endif
#pragma hdrstop
#if !defined(WIN32_VC) || defined(NO_PCH)
#include "dataGraphTraverser.h"
#include "dataRelation.h"
#include "dataNode.h"
#include "config_dgraph.h"
#include "describe_data_verbose.h"
#endif

View File

@ -16,7 +16,15 @@
//
////////////////////////////////////////////////////////////////////
#if defined(WIN32_VC) && !defined(NO_PCH)
#include "dgraph_headers.h"
#endif
#pragma hdrstop
#if !defined(WIN32_VC) || defined(NO_PCH)
#include "dataNode.h"
#endif
TypeHandle DataNode::_type_handle;

View File

@ -16,7 +16,16 @@
//
////////////////////////////////////////////////////////////////////
#if defined(WIN32_VC) && !defined(NO_PCH)
#include "dgraph_headers.h"
#endif
#pragma hdrstop
#if !defined(WIN32_VC) || defined(NO_PCH)
#include "dataRelation.h"
#endif
#include "transformTransition.h"
TypeHandle DataRelation::_type_handle;

View File

@ -16,17 +16,25 @@
//
////////////////////////////////////////////////////////////////////
#include "describe_data_verbose.h"
#if defined(WIN32_VC) && !defined(NO_PCH)
#include "dgraph_headers.h"
#endif
#pragma hdrstop
#if !defined(WIN32_VC) || defined(NO_PCH)
#include "dataGraphTraversal.h"
#include "describe_data_verbose.h"
#include <indent.h>
#endif
#include <nodeAttributes.h>
// The number of columns in from the start of the name to print the
// data value.
static const int data_indent_level = 12;
////////////////////////////////////////////////////////////////////
// Function: describe_data_verbose
// Description: Writes to the indicated output stream a

View File

@ -0,0 +1,43 @@
// Filename: dgraph_headers.h
// Created by: georges (30May01)
//
////////////////////////////////////////////////////////////////////
//
// PANDA 3D SOFTWARE
// Copyright (c) 2001, Disney Enterprises, Inc. All rights reserved
//
// All use of this software is subject to the terms of the Panda 3d
// Software license. You should have received a copy of this license
// along with this source code; you will also find a current copy of
// the license at http://www.panda3d.org/license.txt .
//
// To contact the maintainers of this program write to
// panda3d@yahoogroups.com .
//
////////////////////////////////////////////////////////////////////
#include <indent.h>
#include "buttonEventDataAttribute.h"
#include "buttonEventDataTransition.h"
#include "config_dgraph.h"
#include "dataGraphTraversal.h"
#include "dataGraphTraverser.h"
#include "dataNode.h"
#include "dataRelation.h"
#include "describe_data_verbose.h"
#include "doubleDataAttribute.h"
#include "doubleDataTransition.h"
#include "doublePtrDataAttribute.h"
#include "doublePtrDataTransition.h"
#include "intDataAttribute.h"
#include "intDataTransition.h"
#include "matrixDataAttribute.h"
#include "matrixDataTransition.h"
#include "vec3DataAttribute.h"
#include "vec3DataTransition.h"
#include "vec4DataAttribute.h"
#include "vec4DataTransition.h"
#pragma hdrstop

View File

@ -16,8 +16,16 @@
//
////////////////////////////////////////////////////////////////////
#if defined(WIN32_VC) && !defined(NO_PCH)
#include "dgraph_headers.h"
#endif
#pragma hdrstop
#if !defined(WIN32_VC) || defined(NO_PCH)
#include "doubleDataAttribute.h"
#include "doubleDataTransition.h"
#endif
// Tell GCC that we'll take care of the instantiation explicitly here.
#ifdef __GNUC__

View File

@ -16,8 +16,16 @@
//
////////////////////////////////////////////////////////////////////
#if defined(WIN32_VC) && !defined(NO_PCH)
#include "dgraph_headers.h"
#endif
#pragma hdrstop
#if !defined(WIN32_VC) || defined(NO_PCH)
#include "doubleDataTransition.h"
#include "doubleDataAttribute.h"
#endif
// Tell GCC that we'll take care of the instantiation explicitly here.
#ifdef __GNUC__

View File

@ -16,8 +16,16 @@
//
////////////////////////////////////////////////////////////////////
#if defined(WIN32_VC) && !defined(NO_PCH)
#include "dgraph_headers.h"
#endif
#pragma hdrstop
#if !defined(WIN32_VC) || defined(NO_PCH)
#include "doublePtrDataAttribute.h"
#include "doublePtrDataTransition.h"
#endif
// Tell GCC that we'll take care of the instantiation explicitly here.
#ifdef __GNUC__

View File

@ -16,8 +16,16 @@
//
////////////////////////////////////////////////////////////////////
#if defined(WIN32_VC) && !defined(NO_PCH)
#include "dgraph_headers.h"
#endif
#pragma hdrstop
#if !defined(WIN32_VC) || defined(NO_PCH)
#include "doublePtrDataTransition.h"
#include "doublePtrDataAttribute.h"
#endif
// Tell GCC that we'll take care of the instantiation explicitly here.
#ifdef __GNUC__

View File

@ -16,8 +16,16 @@
//
////////////////////////////////////////////////////////////////////
#if defined(WIN32_VC) && !defined(NO_PCH)
#include "dgraph_headers.h"
#endif
#pragma hdrstop
#if !defined(WIN32_VC) || defined(NO_PCH)
#include "intDataAttribute.h"
#include "intDataTransition.h"
#endif
// Tell GCC that we'll take care of the instantiation explicitly here.
#ifdef __GNUC__

View File

@ -16,8 +16,16 @@
//
////////////////////////////////////////////////////////////////////
#if defined(WIN32_VC) && !defined(NO_PCH)
#include "dgraph_headers.h"
#endif
#pragma hdrstop
#if !defined(WIN32_VC) || defined(NO_PCH)
#include "intDataTransition.h"
#include "intDataAttribute.h"
#endif
// Tell GCC that we'll take care of the instantiation explicitly here.
#ifdef __GNUC__

View File

@ -16,8 +16,16 @@
//
////////////////////////////////////////////////////////////////////
#if defined(WIN32_VC) && !defined(NO_PCH)
#include "dgraph_headers.h"
#endif
#pragma hdrstop
#if !defined(WIN32_VC) || defined(NO_PCH)
#include "matrixDataAttribute.h"
#include "matrixDataTransition.h"
#endif
// Tell GCC that we'll take care of the instantiation explicitly here.
#ifdef __GNUC__

View File

@ -16,8 +16,16 @@
//
////////////////////////////////////////////////////////////////////
#if defined(WIN32_VC) && !defined(NO_PCH)
#include "dgraph_headers.h"
#endif
#pragma hdrstop
#if !defined(WIN32_VC) || defined(NO_PCH)
#include "matrixDataTransition.h"
#include "matrixDataAttribute.h"
#endif
// Tell GCC that we'll take care of the instantiation explicitly here.
#ifdef __GNUC__

View File

@ -16,8 +16,16 @@
//
////////////////////////////////////////////////////////////////////
#if defined(WIN32_VC) && !defined(NO_PCH)
#include "dgraph_headers.h"
#endif
#pragma hdrstop
#if !defined(WIN32_VC) || defined(NO_PCH)
#include "vec3DataAttribute.h"
#include "vec3DataTransition.h"
#endif
// Tell GCC that we'll take care of the instantiation explicitly here.
#ifdef __GNUC__

View File

@ -16,8 +16,16 @@
//
////////////////////////////////////////////////////////////////////
#if defined(WIN32_VC) && !defined(NO_PCH)
#include "dgraph_headers.h"
#endif
#pragma hdrstop
#if !defined(WIN32_VC) || defined(NO_PCH)
#include "vec3DataTransition.h"
#include "vec3DataAttribute.h"
#endif
// Tell GCC that we'll take care of the instantiation explicitly here.
#ifdef __GNUC__

View File

@ -16,8 +16,16 @@
//
////////////////////////////////////////////////////////////////////
#if defined(WIN32_VC) && !defined(NO_PCH)
#include "dgraph_headers.h"
#endif
#pragma hdrstop
#if !defined(WIN32_VC) || defined(NO_PCH)
#include "vec4DataAttribute.h"
#include "vec4DataTransition.h"
#endif
// Tell GCC that we'll take care of the instantiation explicitly here.
#ifdef __GNUC__

View File

@ -16,8 +16,16 @@
//
////////////////////////////////////////////////////////////////////
#if defined(WIN32_VC) && !defined(NO_PCH)
#include "dgraph_headers.h"
#endif
#pragma hdrstop
#if !defined(WIN32_VC) || defined(NO_PCH)
#include "vec4DataTransition.h"
#include "vec4DataAttribute.h"
#endif
// Tell GCC that we'll take care of the instantiation explicitly here.
#ifdef __GNUC__