Mitsuba Renderer  0.5.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
mitsuba::WorkResult Class Referenceabstract

Abstract work result – represents the result of a processed WorkUnit instance. More...

#include <mitsuba/core/sched.h>

+ Inheritance diagram for mitsuba::WorkResult:

Public Member Functions

virtual void load (Stream *stream)=0
 Fill the work result with content acquired from a binary data stream. More...
 
virtual void save (Stream *stream) const =0
 Serialize a work result to a binary data stream. More...
 
virtual std::string toString () const =0
 Return a string representation. More...
 
virtual const ClassgetClass () const
 Retrieve this object's class. More...
 
- Public Member Functions inherited from Object
 Object ()
 Construct a new object. More...
 
int getRefCount () const
 Return the current reference count. More...
 
void incRef () const
 Increase the reference count of the object by one. More...
 
void decRef (bool autoDeallocate=true) const
 Decrease the reference count of the object and possibly deallocate it. More...
 

Static Public Attributes

static Classm_theClass
 
- Static Public Attributes inherited from Object
static Classm_theClass
 Pointer to the object's class descriptor. More...
 

Protected Member Functions

virtual ~WorkResult ()
 Virtual destructor. More...
 
- Protected Member Functions inherited from Object
virtual ~Object ()
 Virtual private deconstructor. (Will only be called by ref) More...
 

Additional Inherited Members

- Static Public Member Functions inherited from Object
static void staticInitialization ()
 Initializes the built-in reference count debugger (if enabled) More...
 
static void staticShutdown ()
 Free the memory taken by staticInitialization() More...
 

Detailed Description

Abstract work result – represents the result of a processed WorkUnit instance.

Instead of the usual serialization function and unserialization constructor, implementations of this class supply load() and save() methods that can be used for essentially the same purpose, but without requiring any memory allocations.

See Also
WorkProcessor

Constructor & Destructor Documentation

virtual mitsuba::WorkResult::~WorkResult ( )
inlineprotectedvirtual

Virtual destructor.

Member Function Documentation

virtual const Class* mitsuba::WorkResult::getClass ( ) const
virtual

Retrieve this object's class.

Reimplemented from Object.

Reimplemented in mitsuba::ImageBlock.

virtual void mitsuba::WorkResult::load ( Stream stream)
pure virtual

Fill the work result with content acquired from a binary data stream.

Implemented in mitsuba::ImageBlock.

virtual void mitsuba::WorkResult::save ( Stream stream) const
pure virtual

Serialize a work result to a binary data stream.

Implemented in mitsuba::ImageBlock.

virtual std::string mitsuba::WorkResult::toString ( ) const
pure virtual

Return a string representation.

Reimplemented from Object.

Implemented in mitsuba::ImageBlock.

Member Data Documentation

Class* mitsuba::WorkResult::m_theClass
static

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