Class_Status

 

The "Class_Status()" function is used to report the status of the class.

 

 

Syntax

 

extern "C" __declspec(dllexport) void  Class_Status(

          void *text,

          unsigned short id

)

 

 

Parameters

 

text

Pointer to a Text structure (see The Text Class in Tools.dll) for the report.

 

id

ID of the class if more than one.

 

 

Return value

 

This function does not return a value.

 

 

Remarks

 

 

 

Requirements

 

Header:

          sliceO_include.hpp

 

Library:

          sliceO_Structures.lib

 

 

Example

 

The "Series" class

 

...

 

// ----------------------------------------------------------------------------

//

//          Function:          Class_Status

//

//          Parameters:          text (Texts *)                    pt to a Text struct for the reports

//                              id (unsigned short)          id of the struct if more than one

//          Returns:          (void)

//

//          Give the specifics of this structure

//

// ----------------------------------------------------------------------------

extern "C" __declspec(dllexport) void          Class_Status( void *text, unsigned short id )

{

          ((Texts *)text)->Write( "Discriminate on:" ) ;

          ((Texts *)text)->Write( "->  \001 ima->g1.series_num" ) ;

}

...

 

See also