InterViews Reference Manual -- Subject

NAME
Subject - object with interactive views
SYNOPSIS
#include <InterViews/subject.h>
DESCRIPTION
A subject is an object that has one or more views that it wishes to notify when it changes.
PUBLIC OPERATIONS
virtual void Attach(Interactor*)
virtual void Detach(Interactor*)
Add or remove an interactor from the subject's list of views.
virtual void Notify()
Call Update on all the views attached to the subject. Update is a virtual function defined on interactors.
void DeleteViews()
Delete all the views attached to a subject.
SEE ALSO
Interactor

Next: Table | Prev: StringTable | Up: index | Top: index