Resolving Conflicts ... Still there're errors that should be fixed
[satune.git] / src / Encoders / orderencoding.c
1 #include "orderencoding.h"
2
3 OrderEncoding * allocOrderEncoding(OrderEncodingType type, Order *order) {
4         OrderEncoding *This=ourmalloc(sizeof(OrderEncoding));
5         This->type=type;
6         This->order=order;
7         return This;
8 }
9
10 void deleteOrderEncoding(OrderEncoding *This) {
11         ourfree(This);
12 }