use precompiled hdrs

This commit is contained in:
cxgeorge 2001-05-31 22:38:57 +00:00
parent 68e1d6a3f3
commit 74602b682c
6 changed files with 37 additions and 8 deletions

View File

@ -12,6 +12,8 @@
#define INSTALL_HEADERS \
lerp.h lerpblend.h lerpfunctor.h
#define PRECOMPILED_HEADER lerp_headers.h
#define IGATESCAN all

View File

@ -16,9 +16,8 @@
//
////////////////////////////////////////////////////////////////////
#include "config_lerp.h"
#include "lerp.h"
#include "lerpfunctor.h"
#include "lerp_headers.h"
#pragma hdrstop
Configure(config_lerp);
NotifyCategoryDef(lerp, "");

View File

@ -16,9 +16,8 @@
//
////////////////////////////////////////////////////////////////////
#include "lerp.h"
#include <clockObject.h>
#include <throw_event.h>
#include "lerp_headers.h"
#pragma hdrstop
TypeHandle Lerp::_type_handle;
TypeHandle AutonomousLerp::_type_handle;

View File

@ -0,0 +1,27 @@
// Filename: lerp_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 "config_lerp.h"
#include "lerp.h"
#include "lerpblend.h"
#include "lerpfunctor.h"
#include <clockObject.h>
#include <throw_event.h>
#pragma hdrstop

View File

@ -16,7 +16,8 @@
//
////////////////////////////////////////////////////////////////////
#include "lerpblend.h"
#include "lerp_headers.h"
#pragma hdrstop
TypeHandle LerpBlendType::_type_handle;
TypeHandle EaseInBlendType::_type_handle;

View File

@ -16,7 +16,8 @@
//
////////////////////////////////////////////////////////////////////
#include "lerpfunctor.h"
#include "lerp_headers.h"
#pragma hdrstop
TypeHandle LerpFunctor::_type_handle;
TypeHandle MultiLerpFunctor::_type_handle;