Fixed a bug in Am2900; created dlatch8/80; relayouted some components
[Mograsim.git] / net.mograsim.logic.model / src / net / mograsim / logic / model / serializing / SerializablePojo.java
1 package net.mograsim.logic.model.serializing;
2
3 import net.mograsim.logic.model.util.Version;
4
5 /**
6  * This class is the superclass of all POJOs that can be serialized to JSON.
7  * 
8  * @author Daniel Kirschten
9  *
10  */
11 public class SerializablePojo
12 {
13         public Version version;
14
15         public SerializablePojo(Version version)
16         {
17                 this.version = version;
18         }
19 }