FF4 - Skeleton code for 2.0

- Created new objects for the 2.0.0 code base, needed in 1.8.0.
- Sketched out basic interfaces.
This commit is contained in:
Paul Beckingham 2009-05-16 17:38:54 -04:00
parent 833fac3c13
commit 69ed1e0ebb
21 changed files with 357 additions and 79 deletions

View file

@ -27,15 +27,19 @@
#ifndef INCLUDED_RECORD
#define INCLUDED_RECORD
#include <vector>
#include "Att.h"
class Record
{
public:
Record (); // Default constructor
Record (); // Default constructor
Record (const Record&); // Copy constructor
Record& operator= (const Record&); // Assignment operator
~Record (); // Destructor
~Record (); // Destructor
private:
std::vector <Att> mAtts;
};
#endif