// -------------------------------------------------------- | |
// Code generated by Papyrus C | |
// -------------------------------------------------------- | |
// This template is called by the main module file | |
/* | |
* File generated from the CCodegenTest::Class5 uml class | |
* Generated by the Papyrus C Generator (CEA LIST) | |
* | |
*/ | |
#ifndef CLASS5_H_ | |
#define CLASS5_H_ | |
// Explicit import of the class | |
/* | |
*-----------------------Import---------------------- | |
*/ | |
#include <stdlib.h> | |
// User imports | |
/* "startUserCode" to add imports */ | |
/* "endUserCode" to add imports */ | |
/* include other files*/ | |
// header body | |
/* | |
*--------------Public Class Description------------- | |
*/ | |
// Structure | |
/* Class Macro definition */ | |
#define Class5(OBJ) ((Class5*)OBJ) | |
typedef struct Class5 Class5; | |
struct Class5 { | |
int externalProp; | |
}; | |
// Constructor and destructor declarations | |
/* | |
*----Default constructor & destructor prototypes--- | |
*/ | |
/** | |
* Dynamic instantiation of a Class5 structure | |
* @return Class5 instance pointer | |
*/ | |
Class5* Class5_create(); | |
/** | |
* Dynamic destruction of a Class5 structure instantiation | |
* @param Pointer to an instance of the Class5 structure | |
* @return void | |
*/ | |
void Class5_destroy(Class5*); | |
// Property initialisation declarations | |
// Class methods declarations | |
/* | |
*---------------Function Declarations-------------- | |
*/ | |
int | |
Class5_pureVirtualOp(Class5 *self); | |
int* | |
Class5_pureVirtualConstOp(Class5 *self); | |
// ----------------------------------Public Global VariableDescription---------------------------------- | |
// ----------------------------------Global Public Functions---------------------------------- | |
#endif /*CLASS5_H_*/ |