1
0
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-17 18:59:09 +00:00

Syntax fixes for plTimedValue.

This commit is contained in:
Darryl Pogue
2011-08-06 14:15:13 -07:00
parent 35d179fc53
commit 09f7a4f37d

View File

@ -28,8 +28,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#define plTimedValue_inc
#include "hsTimer.h"
class hsStream;
#include "hsStream.h"
// plTimedValue
// To use, replace your member var of type T with plTimedValue<T>.
@ -133,7 +132,7 @@ void plTimedSimple<T>::Read(hsStream* s)
template <class T>
void plTimedSimple<T>::Write(hsStream* s) const
{
T val = Value();
T val = this->Value();
s->WriteSwap(val);
}
@ -148,7 +147,7 @@ void plTimedCompound<T>::Read(hsStream* s)
template <class T>
void plTimedCompound<T>::Write(hsStream* s) const
{
T val = Value();
T val = this->Value();
val.Write(s);
}