Vegastrike 0.5.1 rc1  1.0
Original sources for Vegastrike Evolved
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
BasicPointer< T > Class Template Reference

#include <python_compile.h>

Public Member Functions

 BasicPointer (T *myitem)
 
T & operator* ()
 

Detailed Description

template<class T>
class BasicPointer< T >

Warning: The basic pointer class does NOTHING for the user. NO Refcounts...if python holds onto this for longer than it can... CRASH!!

Definition at line 64 of file python_compile.h.

Constructor & Destructor Documentation

template<class T >
BasicPointer< T >::BasicPointer ( T *  myitem)
inline

Definition at line 67 of file python_compile.h.

67  : BasicPointer( T *myitem )
68  {
69  this->myitem = myitem;
70  }

Member Function Documentation

template<class T >
T& BasicPointer< T >::operator* ( )
inline

Definition at line 71 of file python_compile.h.

72  {
73  return *myitem;
74  }

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