Skip to content
Snippets Groups Projects
Commit 69cb7d98 authored by Shon Ferguson's avatar Shon Ferguson
Browse files

Renamed ASingleInterpolatorController to NiSingleInterpolatorController.

parent 2e95cea8
No related branches found
No related tags found
No related merge requests found
......@@ -194,9 +194,6 @@
<File
RelativePath=".\obj\APSysVolumeEmitter.cpp">
</File>
<File
RelativePath=".\obj\ASingleInterpolatorController.cpp">
</File>
<File
RelativePath=".\obj\AvoidNode.cpp">
</File>
......@@ -686,6 +683,9 @@
<File
RelativePath=".\obj\NiShadeProperty.cpp">
</File>
<File
RelativePath=".\obj\NiSingleInterpolatorController.cpp">
</File>
<File
RelativePath=".\obj\NiSkinData.cpp">
</File>
......@@ -857,9 +857,6 @@
<File
RelativePath=".\obj\APSysVolumeEmitter.h">
</File>
<File
RelativePath=".\obj\ASingleInterpolatorController.h">
</File>
<File
RelativePath=".\obj\AvoidNode.h">
</File>
......@@ -1349,6 +1346,9 @@
<File
RelativePath=".\obj\NiShadeProperty.h">
</File>
<File
RelativePath=".\obj\NiSingleInterpolatorController.h">
</File>
<File
RelativePath=".\obj\NiSkinData.h">
</File>
......
/* Copyright (c) 2006, NIF File Format Library and Tools
All rights reserved. Please see niflib.h for licence. */
#include "ASingleInterpolatorController.h"
#include "NiSingleInterpolatorController.h"
#include "AInterpolator.h"
//Definition of TYPE constant
const Type ASingleInterpolatorController::TYPE("ASingleInterpolatorController", &A_SINGLE_INTERPOLATOR_CONTROLLER_PARENT::TYPE );
const Type NiSingleInterpolatorController::TYPE("NiSingleInterpolatorController", &A_SINGLE_INTERPOLATOR_CONTROLLER_PARENT::TYPE );
ASingleInterpolatorController::ASingleInterpolatorController() A_SINGLE_INTERPOLATOR_CONTROLLER_CONSTRUCT {}
NiSingleInterpolatorController::NiSingleInterpolatorController() A_SINGLE_INTERPOLATOR_CONTROLLER_CONSTRUCT {}
ASingleInterpolatorController::~ASingleInterpolatorController() {}
NiSingleInterpolatorController::~NiSingleInterpolatorController() {}
void ASingleInterpolatorController::Read( istream& in, list<uint> link_stack, unsigned int version ) {
void NiSingleInterpolatorController::Read( istream& in, list<uint> link_stack, unsigned int version ) {
A_SINGLE_INTERPOLATOR_CONTROLLER_READ
}
void ASingleInterpolatorController::Write( ostream& out, map<NiObjectRef,uint> link_map, unsigned int version ) const {
void NiSingleInterpolatorController::Write( ostream& out, map<NiObjectRef,uint> link_map, unsigned int version ) const {
A_SINGLE_INTERPOLATOR_CONTROLLER_WRITE
}
string ASingleInterpolatorController::asString( bool verbose ) const {
string NiSingleInterpolatorController::asString( bool verbose ) const {
A_SINGLE_INTERPOLATOR_CONTROLLER_STRING
}
void ASingleInterpolatorController::FixLinks( const vector<NiObjectRef> & objects, list<uint> link_stack, unsigned int version ) {
void NiSingleInterpolatorController::FixLinks( const vector<NiObjectRef> & objects, list<uint> link_stack, unsigned int version ) {
A_SINGLE_INTERPOLATOR_CONTROLLER_FIXLINKS
}
......@@ -8,16 +8,16 @@ All rights reserved. Please see niflib.h for licence. */
#include A_SINGLE_INTERPOLATOR_CONTROLLER_INCLUDE
/*
* ASingleInterpolatorController
* NiSingleInterpolatorController
*/
class ASingleInterpolatorController;
typedef Ref<ASingleInterpolatorController> ASingleInterpolatorControllerRef;
class NiSingleInterpolatorController;
typedef Ref<NiSingleInterpolatorController> NiSingleInterpolatorControllerRef;
class ASingleInterpolatorController : public A_SINGLE_INTERPOLATOR_CONTROLLER_PARENT {
class NiSingleInterpolatorController : public A_SINGLE_INTERPOLATOR_CONTROLLER_PARENT {
public:
ASingleInterpolatorController();
~ASingleInterpolatorController();
NiSingleInterpolatorController();
~NiSingleInterpolatorController();
//Run-Time Type Information
static const Type TYPE;
virtual void Read( istream& in, list<uint> link_stack, unsigned int version );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment