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

hurst_test_base::equityEntry Class Reference

A container for the information for a given stock: the company name, the name of the file containing the stock market data and the stock market "ticker" (e.g., market symbol). More...

#include <hurst_test_base.h>

List of all members.

Public Methods

 equityEntry (const char *n, const char *tic, const char *phile)
 equityEntry (const equityEntry &rhs)
 ~equityEntry ()
const char* name ()
const char* file ()
const char* ticker ()

Private Attributes

const char* name_
 company name. More...

const char* file_
 file name for data. More...

const char* ticker_
 market symbol. More...


Detailed Description

A container for the information for a given stock: the company name, the name of the file containing the stock market data and the stock market "ticker" (e.g., market symbol).

Definition at line 37 of file hurst_test_base.h.


Constructor & Destructor Documentation

hurst_test_base::equityEntry::equityEntry ( const char * n,
const char * tic,
const char * phile ) [inline]
 

Definition at line 46 of file hurst_test_base.h.

00048                                      : name_(n), ticker_(tic), file_(phile) {}

hurst_test_base::equityEntry::equityEntry ( const equityEntry & rhs ) [inline]
 

Definition at line 49 of file hurst_test_base.h.

00050     {
00051       name_ = rhs.name_;
00052       file_ = rhs.file_;
00053       ticker_ = rhs.ticker_;
00054     }

hurst_test_base::equityEntry::~equityEntry ( ) [inline]
 

Definition at line 55 of file hurst_test_base.h.

00055 {}


Member Function Documentation

const char * hurst_test_base::equityEntry::file ( ) [inline]
 

Definition at line 57 of file hurst_test_base.h.

00057 { return file_; }

const char * hurst_test_base::equityEntry::name ( ) [inline]
 

Definition at line 56 of file hurst_test_base.h.

00056 { return name_; }

const char * hurst_test_base::equityEntry::ticker ( ) [inline]
 

Definition at line 58 of file hurst_test_base.h.

Referenced by hurst_test_base::findTableEntry().

00058 { return ticker_; }


Member Data Documentation

const char * hurst_test_base::equityEntry::file_ [private]
 

file name for data.

Definition at line 42 of file hurst_test_base.h.

const char * hurst_test_base::equityEntry::name_ [private]
 

company name.

Definition at line 40 of file hurst_test_base.h.

const char * hurst_test_base::equityEntry::ticker_ [private]
 

market symbol.

Definition at line 44 of file hurst_test_base.h.


The documentation for this class was generated from the following file:
Generated at Thu May 22 21:12:35 2003 for Hurst Exponent Calculation and Supporting Statistics by doxygen1.2.8.1 written by Dimitri van Heesch, © 1997-2001