Initial commit
This commit is contained in:
34
application/target/street.c
Normal file
34
application/target/street.c
Normal file
@@ -0,0 +1,34 @@
|
||||
/*
|
||||
* This file is automaticaly generated, Please dont edit this file!
|
||||
*/
|
||||
#include <street.h>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
void address_someMethod( address * this ) {
|
||||
|
||||
|
||||
}
|
||||
|
||||
address address_new() {
|
||||
|
||||
address instance;
|
||||
|
||||
instance.__classIndex = 19;
|
||||
|
||||
return instance;
|
||||
|
||||
}
|
||||
|
||||
address * address_newPointer() {
|
||||
|
||||
struct address * pointer = malloc( sizeof ( struct address ) );
|
||||
|
||||
pointer->__classIndex = 19;
|
||||
|
||||
return pointer;
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user