Visualization Library 2.0.0-b3

A lightweight C++ OpenGL middleware for 2D/3D graphics

VL     Star     Watch     Fork     Issue

[Download] [Tutorials] [All Classes] [Grouped Classes]
Public Member Functions | List of all members
vl::VLXVisitorExportToVLT Class Reference

Translates a VLX hierarchy into VLT notation. More...

#include <VLXVisitorExportToVLT.hpp>

+ Inheritance diagram for vl::VLXVisitorExportToVLT:

Public Member Functions

 VLXVisitorExportToVLT ()
 
bool isUsed (const std::string &uid)
 
void indent ()
 
void format (const char *fmt,...)
 
void visitValue (VLXValue &value)
 
virtual void visitStructure (VLXStructure *obj)
 
virtual void visitList (VLXList *list)
 
virtual void visitArray (VLXArrayInteger *arr)
 
virtual void visitArray (VLXArrayReal *arr)
 
std::string rawtextEncode (const char *str)
 
std::string stringEncode (const char *str)
 
const std::string & text () const
 
std::string & text ()
 
virtual void output (const std::string &str)
 
virtual void output (const char *str)
 
void writeHeader ()
 
void setIDSet (std::map< std::string, int > *uids)
 
std::map< std::string, int > * uidSet ()
 
const std::map< std::string, int > * uidSet () const
 
- Public Member Functions inherited from vl::VLXVisitor
virtual void visitRawtextBlock (VLXRawtextBlock *)
 
bool isVisited (void *node)
 
void resetVisitedNodes ()
 
- Public Member Functions inherited from vl::Object
 Object ()
 Constructor. More...
 
 Object (const Object &other)
 Copy constructor: copies the name, ref count mutex and user data. More...
 
Objectoperator= (const Object &other)
 Copy operator: copies the object's name, ref count mutex and user data. More...
 
const std::string & objectName () const
 The name of the object, by default set to the object's class name. More...
 
void setObjectName (const char *name)
 The name of the object, by default set to the object's class name in debug builds. More...
 
void setObjectName (const std::string &name)
 The name of the object, by default set to the object's class name in debug builds. More...
 
void setRefCountMutex (IMutex *mutex)
 The mutex used to protect the reference counting of an Object across multiple threads. More...
 
IMutexrefCountMutex ()
 The mutex used to protect the reference counting of an Object across multiple threads. More...
 
const IMutexrefCountMutex () const
 The mutex used to protect the reference counting of an Object across multiple threads. More...
 
int referenceCount () const
 Returns the number of references of an object. More...
 
void incReference () const
 Increments the reference count of an object. More...
 
void decReference ()
 Decrements the reference count of an object and deletes it if both automaticDelete() is true the count reaches 0. More...
 
void setAutomaticDelete (bool autodel_on)
 If set to true the Object is deleted when its reference count reaches 0. More...
 
bool automaticDelete () const
 If set to true the Object is deleted when its reference count reaches 0. More...
 
template<class T >
T * as ()
 Casts an Object to the specified class. More...
 
template<class T >
const T * as () const
 Casts an Object to the specified class. More...
 

Additional Inherited Members

- Protected Member Functions inherited from vl::Object
virtual ~Object ()
 
- Protected Attributes inherited from vl::Object
std::string mObjectName
 
IMutexmRefCountMutex
 
int mReferenceCount
 
bool mAutomaticDelete
 

Detailed Description

Translates a VLX hierarchy into VLT notation.

Definition at line 42 of file VLXVisitorExportToVLT.hpp.

Constructor & Destructor Documentation

◆ VLXVisitorExportToVLT()

vl::VLXVisitorExportToVLT::VLXVisitorExportToVLT ( )
inline

Definition at line 47 of file VLXVisitorExportToVLT.hpp.

References NULL.

Member Function Documentation

◆ format()

void vl::VLXVisitorExportToVLT::format ( const char *  fmt,
  ... 
)
inline

Definition at line 99 of file VLXVisitorExportToVLT.hpp.

References output().

Referenced by visitArray(), visitList(), visitStructure(), and visitValue().

◆ indent()

void vl::VLXVisitorExportToVLT::indent ( )
inline

Definition at line 73 of file VLXVisitorExportToVLT.hpp.

References output().

Referenced by visitArray(), visitList(), visitStructure(), and visitValue().

◆ isUsed()

bool vl::VLXVisitorExportToVLT::isUsed ( const std::string &  uid)
inline

Definition at line 55 of file VLXVisitorExportToVLT.hpp.

References VL_TRAP.

Referenced by visitStructure().

◆ output() [1/2]

virtual void vl::VLXVisitorExportToVLT::output ( const std::string &  str)
inlinevirtual

◆ output() [2/2]

virtual void vl::VLXVisitorExportToVLT::output ( const char *  str)
inlinevirtual

Definition at line 383 of file VLXVisitorExportToVLT.hpp.

◆ rawtextEncode()

std::string vl::VLXVisitorExportToVLT::rawtextEncode ( const char *  str)
inline

Definition at line 324 of file VLXVisitorExportToVLT.hpp.

Referenced by visitValue().

◆ setIDSet()

void vl::VLXVisitorExportToVLT::setIDSet ( std::map< std::string, int > *  uids)
inline

Definition at line 394 of file VLXVisitorExportToVLT.hpp.

Referenced by vl::VLXSerializer::saveVLT().

◆ stringEncode()

std::string vl::VLXVisitorExportToVLT::stringEncode ( const char *  str)
inline

Definition at line 343 of file VLXVisitorExportToVLT.hpp.

Referenced by visitValue().

◆ text() [1/2]

const std::string& vl::VLXVisitorExportToVLT::text ( ) const
inline

Definition at line 374 of file VLXVisitorExportToVLT.hpp.

Referenced by vl::VLXSerializer::saveVLT().

◆ text() [2/2]

std::string& vl::VLXVisitorExportToVLT::text ( )
inline

Definition at line 376 of file VLXVisitorExportToVLT.hpp.

◆ uidSet() [1/2]

std::map< std::string, int >* vl::VLXVisitorExportToVLT::uidSet ( )
inline

Definition at line 396 of file VLXVisitorExportToVLT.hpp.

◆ uidSet() [2/2]

const std::map< std::string, int >* vl::VLXVisitorExportToVLT::uidSet ( ) const
inline

Definition at line 398 of file VLXVisitorExportToVLT.hpp.

◆ visitArray() [1/2]

virtual void vl::VLXVisitorExportToVLT::visitArray ( VLXArrayInteger arr)
inlinevirtual

◆ visitArray() [2/2]

virtual void vl::VLXVisitorExportToVLT::visitArray ( VLXArrayReal arr)
inlinevirtual

◆ visitList()

virtual void vl::VLXVisitorExportToVLT::visitList ( VLXList list)
inlinevirtual

◆ visitStructure()

virtual void vl::VLXVisitorExportToVLT::visitStructure ( VLXStructure obj)
inlinevirtual

◆ visitValue()

void vl::VLXVisitorExportToVLT::visitValue ( VLXValue value)
inline

◆ writeHeader()

void vl::VLXVisitorExportToVLT::writeHeader ( )
inline

Definition at line 389 of file VLXVisitorExportToVLT.hpp.

Referenced by vl::VLXSerializer::saveVLT().


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