whoops, missing trivial constructor

This commit is contained in:
David Rose 2011-12-13 22:39:00 +00:00
parent de346aa4d1
commit 5e5d8f7e17
1 changed files with 12 additions and 0 deletions

View File

@ -239,6 +239,18 @@ CycleDataWriter(PipelineCycler<CycleDataType> &cycler, bool, Thread *) {
_pointer = cycler.cheat();
}
////////////////////////////////////////////////////////////////////
// Function: CycleDataWriter::Constructor (trivial)
// Access: Public
// Description:
////////////////////////////////////////////////////////////////////
template<class CycleDataType>
INLINE CycleDataWriter<CycleDataType>::
CycleDataWriter(PipelineCycler<CycleDataType> &, CycleDataType *locked_cdata,
Thread *) {
_pointer = locked_cdata;
}
////////////////////////////////////////////////////////////////////
// Function: CycleDataWriter::Copy Constructor (trivial)
// Access: Public