inlib  1.2.0
Public Member Functions | Public Attributes
inlib::f2cmn::point Class Reference

List of all members.

Public Member Functions

 point ()
virtual ~point ()
 point (const point &a_from)
pointoperator= (const point &a_from)

Public Attributes

std::vector< double > m_coords
double m_value
double m_error

Detailed Description

Definition at line 7603 of file f2cmn.


Constructor & Destructor Documentation

inlib::f2cmn::point::point ( ) [inline]

Definition at line 7605 of file f2cmn.

:m_value(0),m_error(0){}
virtual inlib::f2cmn::point::~point ( ) [inline, virtual]

Definition at line 7606 of file f2cmn.

{}
inlib::f2cmn::point::point ( const point a_from) [inline]

Definition at line 7608 of file f2cmn.

  :m_coords(a_from.m_coords)
  ,m_value(a_from.m_value)
  ,m_error(a_from.m_error)
  {}

Member Function Documentation

point& inlib::f2cmn::point::operator= ( const point a_from) [inline]

Definition at line 7613 of file f2cmn.

                                       {
    m_coords = a_from.m_coords;
    m_value = a_from.m_value;
    m_error = a_from.m_error;
    return *this;
  }

Member Data Documentation

std::vector<double> inlib::f2cmn::point::m_coords

Definition at line 7620 of file f2cmn.

Definition at line 7622 of file f2cmn.

Definition at line 7621 of file f2cmn.


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