adjust precomp hdr list

This commit is contained in:
cxgeorge 2001-06-02 02:17:30 +00:00
parent fdfad035fb
commit b3b030b2c5
19 changed files with 230 additions and 15 deletions

View File

@ -16,9 +16,22 @@
// //
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////
#ifdef WIN32_VC
#include "chan_headers.h" #include "chan_headers.h"
#endif
#pragma hdrstop #pragma hdrstop
#ifndef WIN32_VC
#include "animBundle.h"
#include <indent.h>
#include <datagram.h>
#include <datagramIterator.h>
#include <bamReader.h>
#include <bamWriter.h>
#endif
TypeHandle AnimBundle::_type_handle; TypeHandle AnimBundle::_type_handle;
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////

View File

@ -16,9 +16,20 @@
// //
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////
#ifdef WIN32_VC
#include "chan_headers.h" #include "chan_headers.h"
#endif
#pragma hdrstop #pragma hdrstop
#ifndef WIN32_VC
#include "animBundleNode.h"
#include <datagram.h>
#include <datagramIterator.h>
#include <bamReader.h>
#include <bamWriter.h>
#endif
TypeHandle AnimBundleNode::_type_handle; TypeHandle AnimBundleNode::_type_handle;

View File

@ -16,9 +16,18 @@
// //
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////
#ifdef WIN32_VC
#include "chan_headers.h" #include "chan_headers.h"
#endif
#pragma hdrstop #pragma hdrstop
#ifndef WIN32_VC
#include "animChannel.h"
#include <compose_matrix.h>
#endif
// Tell GCC that we'll take care of the instantiation explicitly here. // Tell GCC that we'll take care of the instantiation explicitly here.
#ifdef __GNUC__ #ifdef __GNUC__
#pragma implementation #pragma implementation

View File

@ -16,9 +16,20 @@
// //
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////
#ifdef WIN32_VC
#include "chan_headers.h" #include "chan_headers.h"
#endif
#pragma hdrstop #pragma hdrstop
#ifndef WIN32_VC
#include "animChannelBase.h"
#include <datagram.h>
#include <datagramIterator.h>
#include <bamReader.h>
#include <bamWriter.h>
#endif
TypeHandle AnimChannelBase::_type_handle; TypeHandle AnimChannelBase::_type_handle;

View File

@ -16,10 +16,25 @@
// //
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////
#ifdef WIN32_VC
#include "chan_headers.h" #include "chan_headers.h"
#endif
#pragma hdrstop #pragma hdrstop
#ifndef WIN32_VC
#include "animChannelMatrixXfmTable.h"
#include "animBundle.h"
#include "config_chan.h"
#include <compose_matrix.h>
#include <indent.h>
#include <datagram.h>
#include <datagramIterator.h>
#include <bamReader.h>
#include <bamWriter.h>
#include <fftCompressor.h>
#endif
TypeHandle AnimChannelMatrixXfmTable::_type_handle; TypeHandle AnimChannelMatrixXfmTable::_type_handle;

View File

@ -16,9 +16,25 @@
// //
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////
#ifdef WIN32_VC
#include "chan_headers.h" #include "chan_headers.h"
#endif
#pragma hdrstop #pragma hdrstop
#ifndef WIN32_VC
#include "animChannelScalarTable.h"
#include "animBundle.h"
#include "config_chan.h"
#include <indent.h>
#include <datagram.h>
#include <datagramIterator.h>
#include <bamReader.h>
#include <bamWriter.h>
#include <fftCompressor.h>
#endif
TypeHandle AnimChannelScalarTable::_type_handle; TypeHandle AnimChannelScalarTable::_type_handle;
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////

View File

@ -16,9 +16,23 @@
// //
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////
#ifdef WIN32_VC
#include "chan_headers.h" #include "chan_headers.h"
#endif
#pragma hdrstop #pragma hdrstop
#ifndef WIN32_VC
#include "animControl.h"
#include "animChannelBase.h"
#include "partBundle.h"
#include "config_chan.h"
#include <event.h>
#include <throw_event.h>
#endif
TypeHandle AnimControl::_type_handle; TypeHandle AnimControl::_type_handle;
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////

View File

@ -16,9 +16,15 @@
// //
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////
#ifdef WIN32_VC
#include "chan_headers.h" #include "chan_headers.h"
#endif
#pragma hdrstop #pragma hdrstop
#ifndef WIN32_VC
#include "animControlCollection.h"
#endif
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////

View File

@ -16,10 +16,25 @@
// //
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////
#ifdef WIN32_VC
#include "chan_headers.h" #include "chan_headers.h"
#endif
#pragma hdrstop #pragma hdrstop
// not precompiled because it causes xtra warnings #ifndef WIN32_VC
#include "animGroup.h"
#include "animBundle.h"
#include "config_chan.h"
#include <indent.h>
#include <datagram.h>
#include <datagramIterator.h>
#include <bamReader.h>
#include <bamWriter.h>
#endif
#include <algorithm> #include <algorithm>
TypeHandle AnimGroup::_type_handle; TypeHandle AnimGroup::_type_handle;

View File

@ -16,9 +16,27 @@
// //
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////
#ifdef WIN32_VC
#include "chan_headers.h" #include "chan_headers.h"
#endif
#pragma hdrstop #pragma hdrstop
#ifndef WIN32_VC
#include "animBundleNode.h"
#include "partBundleNode.h"
#include "config_chan.h"
#endif
#include <renderRelation.h>
#include <traverserVisitor.h>
#include <dftraverser.h>
#include <string_utils.h>
#include <nullAttributeWrapper.h>
#include <nullLevelState.h>
#include <nullTransitionWrapper.h>
#include "auto_bind.h"
typedef set<AnimBundleNode *> AnimNodes; typedef set<AnimBundleNode *> AnimNodes;
typedef map<string, AnimNodes> Anims; typedef map<string, AnimNodes> Anims;
@ -26,6 +44,7 @@ typedef set<PartBundleNode *> PartNodes;
typedef map<string, PartNodes> Parts; typedef map<string, PartNodes> Parts;
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////
// Class : CollectNodes // Class : CollectNodes
// Description : This is a traverser visitor that locates bundle nodes // Description : This is a traverser visitor that locates bundle nodes

View File

@ -21,19 +21,10 @@
#include <compose_matrix.h> #include <compose_matrix.h>
#include <datagram.h> #include <datagram.h>
#include <datagramIterator.h> #include <datagramIterator.h>
#include <dconfig.h>
#include <dftraverser.h>
#include <event.h> #include <event.h>
#include <fftCompressor.h> #include <fftCompressor.h>
#include <indent.h> #include <indent.h>
#include <luse.h>
#include <nullAttributeWrapper.h>
#include <nullLevelState.h>
#include <nullTransitionWrapper.h>
#include <renderRelation.h>
#include <string_utils.h>
#include <throw_event.h> #include <throw_event.h>
#include <traverserVisitor.h>
#include "animBundle.h" #include "animBundle.h"
#include "animBundleNode.h" #include "animBundleNode.h"
@ -44,7 +35,6 @@
#include "animControl.h" #include "animControl.h"
#include "animControlCollection.h" #include "animControlCollection.h"
#include "animGroup.h" #include "animGroup.h"
#include "auto_bind.h"
#include "config_chan.h" #include "config_chan.h"
#include "movingPartBase.h" #include "movingPartBase.h"
#include "movingPartMatrix.h" #include "movingPartMatrix.h"

View File

@ -16,9 +16,32 @@
// //
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////
#ifdef WIN32_VC
#include "chan_headers.h" #include "chan_headers.h"
#endif
#pragma hdrstop #pragma hdrstop
#ifndef WIN32_VC
#include "config_chan.h"
#include "animBundle.h"
#include "animBundleNode.h"
#include "animChannelBase.h"
#include "animChannelMatrixXfmTable.h"
#include "animChannelScalarTable.h"
#include "animControl.h"
#include "animGroup.h"
#include "movingPartBase.h"
#include "movingPartMatrix.h"
#include "movingPartScalar.h"
#include "partBundle.h"
#include "partBundleNode.h"
#include "partGroup.h"
#endif
#include <luse.h>
#include <dconfig.h>
Configure(config_chan); Configure(config_chan);
NotifyCategoryDef(chan, ""); NotifyCategoryDef(chan, "");

View File

@ -16,9 +16,20 @@
// //
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////
#ifdef WIN32_VC
#include "chan_headers.h" #include "chan_headers.h"
#endif
#pragma hdrstop #pragma hdrstop
#ifndef WIN32_VC
#include "movingPartBase.h"
#include "animControl.h"
#include "animChannelBase.h"
#include <indent.h>
#endif
TypeHandle MovingPartBase::_type_handle; TypeHandle MovingPartBase::_type_handle;

View File

@ -16,9 +16,21 @@
// //
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////
#ifdef WIN32_VC
#include "chan_headers.h" #include "chan_headers.h"
#endif
#pragma hdrstop #pragma hdrstop
#ifndef WIN32_VC
#include "movingPartMatrix.h"
#include <compose_matrix.h>
#include <datagram.h>
#include <datagramIterator.h>
#include <bamReader.h>
#include <bamWriter.h>
#endif
// Tell GCC that we'll take care of the instantiation explicitly here. // Tell GCC that we'll take care of the instantiation explicitly here.
#ifdef __GNUC__ #ifdef __GNUC__

View File

@ -16,9 +16,20 @@
// //
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////
#ifdef WIN32_VC
#include "chan_headers.h" #include "chan_headers.h"
#endif
#pragma hdrstop #pragma hdrstop
#ifndef WIN32_VC
#include "movingPartScalar.h"
#include <datagram.h>
#include <datagramIterator.h>
#include <bamReader.h>
#include <bamWriter.h>
#endif
// Tell GCC that we'll take care of the instantiation explicitly here. // Tell GCC that we'll take care of the instantiation explicitly here.
#ifdef __GNUC__ #ifdef __GNUC__
#pragma implementation #pragma implementation

View File

@ -16,9 +16,25 @@
// //
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////
#ifdef WIN32_VC
#include "chan_headers.h" #include "chan_headers.h"
#endif
#pragma hdrstop #pragma hdrstop
#ifndef WIN32_VC
#include "partBundle.h"
#include "animBundle.h"
#include "animControl.h"
#include "config_chan.h"
#include <indent.h>
#include <datagram.h>
#include <datagramIterator.h>
#include <bamReader.h>
#include <bamWriter.h>
#endif
TypeHandle PartBundle::_type_handle; TypeHandle PartBundle::_type_handle;

View File

@ -16,9 +16,20 @@
// //
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////
#ifdef WIN32_VC
#include "chan_headers.h" #include "chan_headers.h"
#endif
#pragma hdrstop #pragma hdrstop
#ifndef WIN32_VC
#include "partBundleNode.h"
#include <datagram.h>
#include <datagramIterator.h>
#include <bamReader.h>
#include <bamWriter.h>
#endif
TypeHandle PartBundleNode::_type_handle; TypeHandle PartBundleNode::_type_handle;

View File

@ -16,10 +16,24 @@
// //
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////
#ifdef WIN32_VC
#include "chan_headers.h" #include "chan_headers.h"
#endif
#pragma hdrstop #pragma hdrstop
// not precompiled because it causes xtra warnings #ifndef WIN32_VC
#include "partGroup.h"
#include "animGroup.h"
#include "config_chan.h"
#include <indent.h>
#include <datagram.h>
#include <datagramIterator.h>
#include <bamReader.h>
#include <bamWriter.h>
#endif
#include <algorithm> #include <algorithm>
TypeHandle PartGroup::_type_handle; TypeHandle PartGroup::_type_handle;

View File

@ -16,8 +16,7 @@
// //
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////
#include "chan_headers.h" #include "vector_PartGroupStar.h"
#pragma hdrstop
#define EXPCL EXPCL_PANDA #define EXPCL EXPCL_PANDA
#define EXPTP EXPTP_PANDA #define EXPTP EXPTP_PANDA
@ -26,7 +25,6 @@
#include <vector_src.cxx> #include <vector_src.cxx>
// Tell GCC that we'll take care of the instantiation explicitly here. // Tell GCC that we'll take care of the instantiation explicitly here.
#ifdef __GNUC__ #ifdef __GNUC__
#pragma implementation #pragma implementation