Database
classlib.txt
Associated article: Designing Class Libraries for Visual Builders
Tags: Database .NET
Published source code accompanying the article by Arthur T. Jolin, David Lavin, and Susan Carpenter in which they discuss the differences between humans and programs, when it comes to understanding class libraries
Designing Class Libraries for Visual Builders
by Arthur T. Jolin, David Lavin, and Susan Carpenter
Example 1:
(a)
class IAddress : public IStandardNotifier {
public:
virtual IString
street () const;
virtual IAddress
&setStreet (const IString& aStreet);
static INotificationId const
streetId;
private:
IString ...


