mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-21 12:49:10 +00:00
Obliterate hsBool
This commit is contained in:
@ -132,14 +132,14 @@ public:
|
||||
plMessage& AddReceiver(const plKey &r);
|
||||
plMessage& AddReceivers(const hsTArray<plKey>& rList);
|
||||
|
||||
hsBool Send(const plKey r=nil, hsBool async=false); // Message will self-destruct after send.
|
||||
hsBool SendAndKeep(const plKey r=nil, hsBool async=false); // Message won't self-destruct after send.
|
||||
bool Send(const plKey r=nil, bool async=false); // Message will self-destruct after send.
|
||||
bool SendAndKeep(const plKey r=nil, bool async=false); // Message won't self-destruct after send.
|
||||
|
||||
double GetTimeStamp() const { return fTimeStamp; }
|
||||
plMessage& SetTimeStamp(double t) { fTimeStamp = t; return *this; }
|
||||
|
||||
hsBool HasBCastFlag(uint32_t f) const { return 0 != (fBCastFlags & f); }
|
||||
plMessage& SetBCastFlag(uint32_t f, hsBool on=true) { if( on )fBCastFlags |= f; else fBCastFlags &= ~f; return *this; }
|
||||
bool HasBCastFlag(uint32_t f) const { return 0 != (fBCastFlags & f); }
|
||||
plMessage& SetBCastFlag(uint32_t f, bool on=true) { if( on )fBCastFlags |= f; else fBCastFlags &= ~f; return *this; }
|
||||
|
||||
void SetAllBCastFlags(uint32_t f) { fBCastFlags=f; }
|
||||
uint32_t GetAllBCastFlags() const { return fBCastFlags; }
|
||||
|
Reference in New Issue
Block a user