inlib  1.2.0
Public Member Functions | Protected Member Functions | Protected Attributes
inlib::sg::win_action Class Reference
Inheritance diagram for inlib::sg::win_action:
Inheritance graph
[legend]
Collaboration diagram for inlib::sg::win_action:
Collaboration graph
[legend]

List of all members.

Public Member Functions

 win_action (std::ostream &a_out, unsigned int a_ww, unsigned int a_wh)
virtual ~win_action ()
unsigned int ww () const
unsigned int wh () const

Protected Member Functions

 win_action (const inlib::sg::win_action &a_from)
inlib::sg::win_actionoperator= (const inlib::sg::win_action &a_from)

Protected Attributes

unsigned int m_ww
unsigned int m_wh

Detailed Description

Definition at line 12 of file win_action.


Constructor & Destructor Documentation

inlib::sg::win_action::win_action ( std::ostream &  a_out,
unsigned int  a_ww,
unsigned int  a_wh 
) [inline]

Definition at line 14 of file win_action.

  : action(a_out)
  ,m_ww(a_ww) //WARNING : we assume that we receive a not zero value.
  ,m_wh(a_wh) //WARNING : we assume that we receive a not zero value.
  {}
virtual inlib::sg::win_action::~win_action ( ) [inline, virtual]

Definition at line 19 of file win_action.

{}
inlib::sg::win_action::win_action ( const inlib::sg::win_action a_from) [inline, protected]

Definition at line 21 of file win_action.

  : action(a_from)
  ,m_ww(a_from.m_ww)
  ,m_wh(a_from.m_wh)
  {}

Member Function Documentation

inlib::sg::win_action& inlib::sg::win_action::operator= ( const inlib::sg::win_action a_from) [inline, protected]

Definition at line 26 of file win_action.

                                                               {
    action::operator=(a_from);
    return *this;
  }
unsigned int inlib::sg::win_action::wh ( ) const [inline]

Definition at line 32 of file win_action.

{return m_wh;}
unsigned int inlib::sg::win_action::ww ( ) const [inline]

Definition at line 31 of file win_action.

{return m_ww;}

Member Data Documentation

unsigned int inlib::sg::win_action::m_wh [protected]

Definition at line 35 of file win_action.

unsigned int inlib::sg::win_action::m_ww [protected]

Definition at line 34 of file win_action.


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