attribute.h
Go to the documentation of this file.
1 
9 #ifndef _ATTRIBUTE_H_
10 #define _ATTRIBUTE_H_
11 
12 #include "attribute-types.h"
13 
21 typedef struct Attribute {
25  int value;
26 } Attribute;
27 
28 #endif // _ATTRIBUTE_H_
unsigned char attrType
Stores the type of the attribute.
Definition: attribute-types.h:17
Represents an attribute and the value it holds.
Definition: attribute.h:21
Contains the attribute's types definition In our model we have five attribute types: interval of inte...
attrType type
The type of the attribute.
Definition: attribute.h:23
struct Attribute Attribute
Represents an attribute and the value it holds.
int value
The value of the attribute.
Definition: attribute.h:25