inlib  1.2.0
Public Member Functions | Public Attributes
inlib::sg::rep_box Class Reference

List of all members.

Public Member Functions

 rep_box (float a_pos, float a_width, bool a_log)
 rep_box (const rep_box &a_from)
rep_boxoperator= (const rep_box &a_from)

Public Attributes

float m_pos
float m_width
bool m_log

Detailed Description

Definition at line 103 of file rep.


Constructor & Destructor Documentation

inlib::sg::rep_box::rep_box ( float  a_pos,
float  a_width,
bool  a_log 
) [inline]

Definition at line 105 of file rep.

  :m_pos(a_pos),m_width(a_width),m_log(a_log){}
inlib::sg::rep_box::rep_box ( const rep_box a_from) [inline]

Definition at line 108 of file rep.

  :m_pos(a_from.m_pos),m_width(a_from.m_width),m_log(a_from.m_log){}

Member Function Documentation

rep_box& inlib::sg::rep_box::operator= ( const rep_box a_from) [inline]

Definition at line 111 of file rep.

                                            {
    m_pos = a_from.m_pos;
    m_width = a_from.m_width;
    m_log = a_from.m_log;
    return *this;
  }

Member Data Documentation

Definition at line 120 of file rep.

Definition at line 118 of file rep.

Definition at line 119 of file rep.


The documentation for this class was generated from the following file:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines