Prusa Slicer 2.6.0
Loading...
Searching...
No Matches
igl::anttweakbar::ReTwRWItem Struct Reference

#include <src/libigl/igl/anttweakbar/ReAntTweakBar.h>

+ Collaboration diagram for igl::anttweakbar::ReTwRWItem:

Public Member Functions

IGL_INLINE ReTwRWItem (const std::string _name, TwType _type, void *_var)
 
IGL_INLINE ReTwRWItem (const ReTwRWItem &that)
 
IGL_INLINE ReTwRWItemoperator= (const ReTwRWItem &that)
 

Public Attributes

std::string name
 
TwType type
 
voidvar
 

Detailed Description

Constructor & Destructor Documentation

◆ ReTwRWItem() [1/2]

IGL_INLINE igl::anttweakbar::ReTwRWItem::ReTwRWItem ( const std::string  _name,
TwType  _type,
void _var 
)
inline
81 :
82 name(_name),
83 type(_type),
84 var(_var)
85 {
86 }
std::string name
Definition ReAntTweakBar.h:74
void * var
Definition ReAntTweakBar.h:76
TwType type
Definition ReAntTweakBar.h:75

◆ ReTwRWItem() [2/2]

IGL_INLINE igl::anttweakbar::ReTwRWItem::ReTwRWItem ( const ReTwRWItem that)
inline
90 :
91 name(that.name),
92 type(that.type),
93 var(that.var)
94 {
95 }

Member Function Documentation

◆ operator=()

IGL_INLINE ReTwRWItem & igl::anttweakbar::ReTwRWItem::operator= ( const ReTwRWItem that)
inline
99 {
100 if(this != &that)
101 {
102 this->name = that.name;
103 this->type = that.type;
104 this->var = that.var;
105 }
106 return *this;
107 }

References name, type, and var.

Member Data Documentation

◆ name

std::string igl::anttweakbar::ReTwRWItem::name

Referenced by operator=().

◆ type

TwType igl::anttweakbar::ReTwRWItem::type

Referenced by operator=().

◆ var

void* igl::anttweakbar::ReTwRWItem::var

Referenced by operator=().


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