23 lines
257 B
C
23 lines
257 B
C
|
|
#ifndef _templateInstance
|
||
|
|
|
||
|
|
#define _templateInstance
|
||
|
|
|
||
|
|
|
||
|
|
#include <stdio.h>
|
||
|
|
|
||
|
|
#include <array.h>
|
||
|
|
|
||
|
|
#include "stdlib.h"
|
||
|
|
|
||
|
|
struct templateInstance{
|
||
|
|
|
||
|
|
struct array * argumentValues; // not properties
|
||
|
|
|
||
|
|
};
|
||
|
|
|
||
|
|
|
||
|
|
struct templateInstance * templateInstance_new();
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
#endif
|