Main Page   Namespace List   Class Hierarchy   Compound List   File List   Compound Members   File Members  

lregress::point Class Reference

A container for an {x,y} point of type double. More...

#include <lregress.h>

List of all members.

Public Methods

 point (double xVal, double yVal)
 constructor. More...

 point (const point &rhs)
 copy constructor. More...

 ~point ()
 destructor does nothing. More...

double x ()
void x (const double v)
double y ()
void y (const double v)

Private Attributes

double x_
double y_


Detailed Description

A container for an {x,y} point of type double.

Definition at line 52 of file lregress.h.


Constructor & Destructor Documentation

lregress::point::point ( double xVal,
double yVal ) [inline]
 

constructor.

Definition at line 58 of file lregress.h.

00058 { x_ = xVal; y_ = yVal; }

lregress::point::point ( const point & rhs ) [inline]
 

copy constructor.

Definition at line 60 of file lregress.h.

00060 { x_ = rhs.x_; y_ = rhs.y_; }

lregress::point::~point ( ) [inline]
 

destructor does nothing.

Definition at line 62 of file lregress.h.

00062 {};


Member Function Documentation

void lregress::point::x ( const double v ) [inline]
 

Definition at line 65 of file lregress.h.

00065 { x_ = v; }

double lregress::point::x ( ) [inline]
 

Definition at line 64 of file lregress.h.

00064 { return x_; }

void lregress::point::y ( const double v ) [inline]
 

Definition at line 67 of file lregress.h.

00067 { y_ = v; }

double lregress::point::y ( ) [inline]
 

Definition at line 66 of file lregress.h.

00066 { return y_; }


Member Data Documentation

double lregress::point::x_ [private]
 

Definition at line 55 of file lregress.h.

double lregress::point::y_ [private]
 

Definition at line 55 of file lregress.h.


The documentation for this class was generated from the following file:
Generated at Wed May 21 21:19:27 2003 for Basic Statistics Functions by doxygen1.2.8.1 written by Dimitri van Heesch, © 1997-2001