Changeset 18827 for juggler/trunk/modules/gadgeteer/gadget/Type/Analog.h
- Timestamp:
- 05/12/06 10:22:33 (3 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
juggler/trunk/modules/gadgeteer/gadget/Type/Analog.h
r18824 r18827 71 71 Analog(); 72 72 73 virtual ~Analog() throw ();73 virtual ~Analog(); 74 74 75 /** Serializes this object. */ 76 virtual void writeObject(vpr::ObjectWriter* writer) 77 throw (vpr::IOException); 75 /** 76 * Serializes this object into the given object writer. 77 * 78 * @param writer The object writer to which this object will be serialized. 79 * 80 * @throw vpr::IOException is thrown if serialization fails. 81 */ 82 virtual void writeObject(vpr::ObjectWriter* writer); 78 83 79 /** De-serializes this object. */ 80 virtual void readObject(vpr::ObjectReader* reader) throw (vpr::IOException); 84 /** 85 * De-serializes this object. 86 * 87 * @param reader The object reader from which this object will be 88 * de-serialized. 89 * 90 * @throw vpr::IOException is thrown if de-serialization fails. 91 */ 92 virtual void readObject(vpr::ObjectReader* reader); 81 93 82 94 /**
