Merge branch 'master' of ssh://plrg.eecs.uci.edu/home/git/constraint_compiler
[satune.git] / src / Serialize / serializable.h
1
2 /* 
3  * File:   serializable.h
4  * Author: hamed
5  *
6  * Created on September 7, 2017, 3:39 PM
7  */
8
9 #ifndef SERIALIZABLE_H
10 #define SERIALIZABLE_H
11
12 class Serializable{
13         virtual void serialize(Serializer* ) = 0;
14 };
15
16 #endif /* SERIALIZABLE_H */
17