Database
tagged.txt
Associated article: Tagged Data Storage
Tags: Database
Published source code accompanying the article by Jeremy Vineyard in which he presents a tagged data storage technique which improves the efficiency and robustness of your data-storage architecture and decreases the time you spend writing code to store and restore data. Also see TAGGED.ZIP.
_Tagged Data Storage Architectures_
by Jeremy Vineyard
Listing One
class CSizable
{
protected:
CRect cs_dimensions; // Assume we already have a CRect class.
public:
virtual CRect GetDimensions();
virtual void Resize(CRect& rNewSize);
...
}
Listing Two
class FT_TaggableObject
{
public:
// Basic tag ...


