Database
solution.txt
Associated article: ODBMS Solutions
Tags: Database
Source code accompanying the article by Chris Aakre in which he describes how his company used an ODBMS to build an application designed to aid customer-support analysts capture information and find solutions.
_ODBMS Object Management_
by Chris Aakre
Example 1:
Link<Solution> solution = myapp.FindSolution("1234");
cout << solution->GetTitle();
Listing One
class RefAny
{
};
template <class T>
class Ref : public RefAny
{
public:
Ref() : referent_(NULL) {}
Ref(...


