28 lines
342 B
C
28 lines
342 B
C
|
|
/*
|
||
|
|
* This file is automaticaly generated, Please dont edit this file!
|
||
|
|
*/
|
||
|
|
#include <header.h>
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
header header_new() {
|
||
|
|
|
||
|
|
header instance;
|
||
|
|
|
||
|
|
instance.__classIndex = 15;
|
||
|
|
|
||
|
|
return instance;
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
header * header_newPointer() {
|
||
|
|
|
||
|
|
struct header * pointer = malloc( sizeof ( struct header ) );
|
||
|
|
|
||
|
|
pointer->__classIndex = 15;
|
||
|
|
|
||
|
|
return pointer;
|
||
|
|
|
||
|
|
}
|
||
|
|
|