finish doxygen classify/intproto.cpp

This commit is contained in:
Jim O'Regan 2015-07-20 14:35:57 +01:00
parent dbb60411a9
commit 2aa72dba40

View File

@ -657,18 +657,18 @@ void DisplayIntProto(INT_CLASS Class, PROTO_ID ProtoId, FLOAT32 Evidence) {
} /* DisplayIntProto */ } /* DisplayIntProto */
#endif #endif
INT_CLASS NewIntClass(int MaxNumProtos, int MaxNumConfigs) { /**
/* * This routine creates a new integer class data structure
** MaxNumProtos number of protos to allocate space for * and returns it. Sufficient space is allocated
** MaxNumConfigs number of configs to allocate space for * to handle the specified number of protos and configs.
** Operation: This routine creates a new integer class data structure * @param MaxNumProtos number of protos to allocate space for
** and returns it. Sufficient space is allocated * @param MaxNumConfigs number of configs to allocate space for
** to handle the specified number of protos and configs.
* @return New class created. * @return New class created.
** Globals: none * @note Globals: none
** Exceptions: none * @note Exceptions: none
** History: Fri Feb 8 10:51:23 1991, DSJ, Created. * @note History: Fri Feb 8 10:51:23 1991, DSJ, Created.
*/ */
INT_CLASS NewIntClass(int MaxNumProtos, int MaxNumConfigs) {
INT_CLASS Class; INT_CLASS Class;
PROTO_SET ProtoSet; PROTO_SET ProtoSet;
int i; int i;
@ -707,7 +707,6 @@ INT_CLASS NewIntClass(int MaxNumProtos, int MaxNumConfigs) {
} /* NewIntClass */ } /* NewIntClass */
/*-------------------------------------------------------------------------*/
void free_int_class(INT_CLASS int_class) { void free_int_class(INT_CLASS int_class) {
int i; int i;
@ -1880,7 +1879,6 @@ int TruncateParam(FLOAT32 Param, int Min, int Max, char *Id) {
} /* TruncateParam */ } /* TruncateParam */
/*---------------------------------------------------------------------------*/
#ifndef GRAPHICS_DISABLED #ifndef GRAPHICS_DISABLED
/** /**
* Initializes the int matcher window if it is not already * Initializes the int matcher window if it is not already