Views
Foundation Package API Reference Guide
Product Documentation:
Views Documentation Home
Classes | Macros
smartset.h File Reference
#include <ilviews/base/clssinfo.h>
#include <ilviews/graphics/io.h>

Classes

class  IlvSmartSet
 Group class. More...
 

Macros

#define DeclareSmartSetInfo()
 
#define DeclareSmartSetInfoRO()
 
#define DeclareSmartSetIOConstructors(classname)
 

Detailed Description

Library: views
Declaration of the IlvSmartSet class

Macro Definition Documentation

◆ DeclareSmartSetInfo

#define DeclareSmartSetInfo ( )

This macro must be use in the body declaration of a subclass of IlvSmartSet.

Use this macro to declare the input/output routines of your smart set subclass: write(), and copy().

See also
DeclareSmartSetInfoRO(), DeclareSmartSetIOConstructors().

◆ DeclareSmartSetInfoRO

#define DeclareSmartSetInfoRO ( )

This macro must be use in the body declaration of a subclass of IlvSmartSet.

Use this macro to declare the input/output routines of your smart set subclass when you do not need to add the write() member function (that is, your smart set subtype does not add any new data that needs to be saved, and the implementation of the write() member function in the parent class already does the job).

See also
DeclareSmartSetInfo(), DeclareSmartSetIOConstructors().

◆ DeclareSmartSetIOConstructors

#define DeclareSmartSetIOConstructors (   classname)

This macro must be use in the body declaration of a subclass of IlvSmartSet.

Use this macro to declare the input/output constructors of your smart set subclass. This declares the copy constructor of the class, and the constructor from and IlvInputFile.

Parameters
classnameThe class name of your subclass.
See also
DeclareSmartSetInfo(), DeclareSmartSetInfoRO().