inlib  1.2.0
Public Member Functions | Public Attributes
inlib::hplot::_text Class Reference

List of all members.

Public Member Functions

 _text (double aX, double aY, double aAngle, double aSize, const std::string &aString, short aAlign)
virtual ~_text ()
 _text (const _text &aFrom)
_textoperator= (const _text &aFrom)

Public Attributes

double fX
double fY
double fAngle
double fSize
std::string fString
short fAlign

Detailed Description

Definition at line 33 of file hplot.


Constructor & Destructor Documentation

inlib::hplot::_text::_text ( double  aX,
double  aY,
double  aAngle,
double  aSize,
const std::string &  aString,
short  aAlign 
) [inline]

Definition at line 42 of file hplot.

  :fX(aX),fY(aY)
  ,fAngle(aAngle),fSize(aSize)
  ,fString(aString),fAlign(aAlign)
  {}
virtual inlib::hplot::_text::~_text ( ) [inline, virtual]

Definition at line 50 of file hplot.

{}
inlib::hplot::_text::_text ( const _text aFrom) [inline]

Definition at line 52 of file hplot.

  :fX(aFrom.fX),fY(aFrom.fY)
  ,fAngle(aFrom.fAngle),fSize(aFrom.fSize)
  ,fString(aFrom.fString)
  ,fAlign(aFrom.fAlign)
  {}

Member Function Documentation

_text& inlib::hplot::_text::operator= ( const _text aFrom) [inline]

Definition at line 58 of file hplot.

                                      {
    fX = aFrom.fX;
    fY = aFrom.fY;
    fAngle = aFrom.fAngle;
    fSize = aFrom.fSize;
    fString = aFrom.fString;
    fAlign = aFrom.fAlign;
    return *this;
  }

Member Data Documentation

Definition at line 73 of file hplot.

Definition at line 70 of file hplot.

Definition at line 71 of file hplot.

Definition at line 72 of file hplot.

Definition at line 68 of file hplot.

Definition at line 69 of file hplot.


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