EvEmu  0.8.4
11 September 2021
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
PyBool Class Reference

Python boolean. More...

#include "PyRep.h"

Inheritance diagram for PyBool:
Collaboration diagram for PyBool:

Public Member Functions

 PyBool (bool i)
 
 PyBool (const PyBool &oth)
 
 PyBool (PyBool &&oth)=delete
 
PyBooloperator= (const PyBool &oth)=delete
 
PyBooloperator= (PyBool &&oth)=delete
 
PyRepClone () const
 Clones object. More...
 
bool visit (PyVisitor &v) const
 Visits object. More...
 
bool value () const
 
- Public Member Functions inherited from PyRep
PyType GetType () const
 
bool IsInt () const
 
bool IsLong () const
 
bool IsFloat () const
 
bool IsBool () const
 
bool IsBuffer () const
 
bool IsString () const
 
bool IsWString () const
 
bool IsToken () const
 
bool IsTuple () const
 
bool IsList () const
 
bool IsDict () const
 
bool IsNone () const
 
bool IsSubStruct () const
 
bool IsSubStream () const
 
bool IsChecksumedStream () const
 
bool IsObject () const
 
bool IsObjectEx () const
 
bool IsPackedRow () const
 
const char * TypeString () const
 
PyIntAsInt ()
 
const PyIntAsInt () const
 
PyLongAsLong ()
 
const PyLongAsLong () const
 
PyFloatAsFloat ()
 
const PyFloatAsFloat () const
 
PyBoolAsBool ()
 
const PyBoolAsBool () const
 
PyBufferAsBuffer ()
 
const PyBufferAsBuffer () const
 
PyStringAsString ()
 
const PyStringAsString () const
 
PyWStringAsWString ()
 
const PyWStringAsWString () const
 
PyTokenAsToken ()
 
const PyTokenAsToken () const
 
PyTupleAsTuple ()
 
const PyTupleAsTuple () const
 
PyListAsList ()
 
const PyListAsList () const
 
PyDictAsDict ()
 
const PyDictAsDict () const
 
PyNoneAsNone ()
 
const PyNoneAsNone () const
 
PySubStructAsSubStruct ()
 
const PySubStructAsSubStruct () const
 
PySubStreamAsSubStream ()
 
const PySubStreamAsSubStream () const
 
PyChecksumedStreamAsChecksumedStream ()
 
const PyChecksumedStreamAsChecksumedStream () const
 
PyObjectAsObject ()
 
const PyObjectAsObject () const
 
PyObjectExAsObjectEx ()
 
const PyObjectExAsObjectEx () const
 
PyPackedRowAsPackedRow ()
 
const PyPackedRowAsPackedRow () const
 
void Dump (FILE *into, const char *pfx) const
 Dumps object to file. More...
 
void Dump (LogType type, const char *pfx) const
 Dumps object to console. More...
 
virtual int32 hash () const
 virtual function to generate a hash value of a object. More...
 
- Public Member Functions inherited from RefObject
 RefObject (size_t initRefCount)
 Initializes reference count. More...
 
virtual ~RefObject ()
 Destructor; must be virtual. More...
 
size_t GetCount ()
 

Protected Member Functions

virtual ~PyBool ()
 
- Protected Member Functions inherited from PyRep
 PyRep (PyType t)
 
 PyRep (const PyRep &oth)
 
 PyRep (PyRep &&oth)=delete
 
PyRepoperator= (const PyRep &oth)=default
 
PyRepoperator= (PyRep &&oth)=default
 
virtual ~PyRep ()
 
- Protected Member Functions inherited from RefObject
void IncRef () const
 Increments reference count of object by one. More...
 
void DecRef () const
 Decrements reference count of object by one. More...
 

Protected Attributes

const bool mValue
 
- Protected Attributes inherited from PyRep
const PyType mType
 
- Protected Attributes inherited from RefObject
size_t mRefCount
 Reference count of instance. More...
 
bool mDeleted
 

Additional Inherited Members

- Public Types inherited from PyRep
enum  PyType {
  PyTypeMin = 0, PyTypeInt = 1, PyTypeLong = 2, PyTypeFloat = 3,
  PyTypeBool = 4, PyTypeBuffer = 5, PyTypeString = 6, PyTypeWString = 7,
  PyTypeToken = 8, PyTypeTuple = 9, PyTypeList = 10, PyTypeDict = 11,
  PyTypeNone = 12, PyTypeSubStruct = 13, PyTypeSubStream = 14, PyTypeChecksumedStream = 15,
  PyTypeObject = 16, PyTypeObjectEx = 17, PyTypePackedRow = 18, PyTypeError = 19
}
 Python wire object types. More...
 
- Static Public Member Functions inherited from PyRep
static std::string StringContent (PyRep *pRep)
 
static int64 IntegerValue (PyRep *pRep)
 
static uint32 IntegerValueU32 (PyRep *pRep)
 

Detailed Description

Python boolean.

Class represeting boolean.

Definition at line 323 of file PyRep.h.

Constructor & Destructor Documentation

PyBool::PyBool ( bool  i)

Definition at line 320 of file PyRep.cpp.

Referenced by Clone().

320 : PyRep( PyRep::PyTypeBool ), mValue( i ) { }
PyRep(PyType t)
Definition: PyRep.cpp:73
const bool mValue
Definition: PyRep.h:344

Here is the caller graph for this function:

PyBool::PyBool ( const PyBool oth)

Definition at line 321 of file PyRep.cpp.

321 : PyRep( PyRep::PyTypeBool ), mValue( oth.value() ) { }
bool value() const
Definition: PyRep.h:340
PyRep(PyType t)
Definition: PyRep.cpp:73
const bool mValue
Definition: PyRep.h:344
PyBool::PyBool ( PyBool &&  oth)
delete
virtual PyBool::~PyBool ( )
inlineprotectedvirtual

Definition at line 343 of file PyRep.h.

343 { /* do we need to do anything here? */ }

Member Function Documentation

PyRep * PyBool::Clone ( ) const
virtual

Clones object.

Returns
Indentical copy of object.

Implements PyRep.

Definition at line 323 of file PyRep.cpp.

References PyBool().

324 {
325  return new PyBool( *this );
326 }
PyBool(bool i)
Definition: PyRep.cpp:320

Here is the call graph for this function:

PyBool& PyBool::operator= ( const PyBool oth)
delete
PyBool& PyBool::operator= ( PyBool &&  oth)
delete
bool PyBool::value ( ) const
inline

Definition at line 340 of file PyRep.h.

References mValue.

Referenced by ClientSession::EncodeChanges(), PyRep::IntegerValue(), PyRep::IntegerValueU32(), PyDumpVisitor::VisitBoolean(), MarshalStream::VisitBoolean(), and MarshalStream::VisitPackedRow().

340 { return mValue; }
const bool mValue
Definition: PyRep.h:344

Here is the caller graph for this function:

bool PyBool::visit ( PyVisitor v) const
virtual

Visits object.

Parameters
[in]vVisitor to be used for visiting.
Return values
trueVisit successful.
falseError during visit.

Implements PyRep.

Definition at line 328 of file PyRep.cpp.

References PyVisitor::VisitBoolean().

329 {
330  return v.VisitBoolean( this );
331 }
virtual bool VisitBoolean(const PyBool *rep)
Definition: PyVisitor.h:58

Here is the call graph for this function:

Member Data Documentation

const bool PyBool::mValue
protected

Definition at line 344 of file PyRep.h.

Referenced by value().


The documentation for this class was generated from the following files: