ParamVersionDesc Class Reference
 
 
 
ParamVersionDesc Class Reference

This reference page is linked to from the following overview topics: Backward Compatibility, Loading Old Parameter Data using IParamBlock2.


#include <iparamb.h>

Inheritance diagram for ParamVersionDesc:
MaxHeapOperators

Class Description

Description:
This structure describes a version of the parameter block.
Data Members:
ParamBlockDescID *desc;

This is an array of parameter block descriptors.

int count;

This is the number of items in the array.

DWORD version;

This is the version number.

Public Member Functions

  ParamVersionDesc (ParamBlockDescID *d, int c, int v)

Public Attributes

ParamBlockDescID desc
int  count
DWORD  version

Constructor & Destructor Documentation

ParamVersionDesc ( ParamBlockDescID d,
int  c,
int  v 
) [inline]
Remarks:
Constructor.
Parameters:
ParamBlockDescID *d

This is an array of parameter block descriptors.

int c

This is the number of items in the array.

int v

This is the version number.
{desc=d;count=c;version=v;}

Member Data Documentation