Hi,
I have an access database set up that I'm accessing through an ASP front end. The data in the database consists mainly of three tables:
Main
===============================
= RecordID (autonumber)
= Name, Phone, etc...
= ReportType (integer)
===============================
Categories...
I have two classes, Foo and FooBox. FooBox contains a vector that stores Foo objects, so the FooBox.h file looks something like:
#ifndef FOOBOX
#define FOOBOX
#include "Foo.h"
class FooBox {
vector<Foo> foos;
...
};
#endif
and the Foo.h file looks like
#ifndef FOO
#define FOO...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.