Home > dev > api > name > gb_desc 
 en fr de es it nl pt pt_BR mk sq ca hu cs tr ar fa id vi ko ja ru zh zh_TW eo
Previous  Next  Edit  Rename  Undo  Search  Administration  
Documentation  
Warning! This page is not translated.  See english version 
GB_DESC
typedef
  struct {
    char *name;
    long val1;
    long val2;
    long val3;
    long val4;
    long val5;
    }
  GB_DESC;

This structure is used for describing a class.

A class description is an array of this structure.

Example

GB_DESC MyClassDesc[] = {
  GB_DECLARE("MyClass", sizeof(MyClassStruct)),
  ...
  GB_END_DECLARE
};

Do not fill this structure directly. Use the appropriate declaration macros.

See also

api/cat/desc