LRect Class Reference

LRect Class Reference

#include <LibPSD.h>

Class Description

Definition at line 164 of file LibPSD.h.

Public Member Functions

 LRect (int left=0, int top=0, int right=0, int bottom=0)
 
LRectoperator= (const LRect &LR)
 

Public Attributes

int top
 
int left
 
int bottom
 
int right
 

Constructor & Destructor Documentation

LRect ( int  left = 0,
int  top = 0,
int  right = 0,
int  bottom = 0 
)
inline

Definition at line 176 of file LibPSD.h.

177 {
178  left = inLeft ;
179  right = inRight ;
180  top = inTop ;
181  bottom = inBottom ;
182 }

Member Function Documentation

LRect & operator= ( const LRect LR)
inline

Definition at line 184 of file LibPSD.h.

185 {
186  if (this != &LR) {
187  this->bottom = LR.bottom;
188  this->left = LR.left;
189  this->right = LR.right;
190  this->top = LR.top;
191  }
192  return *this;
193 }

Member Data Documentation

int top

Definition at line 170 of file LibPSD.h.

int left

Definition at line 171 of file LibPSD.h.

int bottom

Definition at line 172 of file LibPSD.h.

int right

Definition at line 173 of file LibPSD.h.


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