Changeset 18827 for juggler/trunk/modules/gadgeteer/gadget/Type/Command.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/Command.h
r18824 r18827 72 72 } 73 73 74 virtual ~Command() throw ()74 virtual ~Command() 75 75 { 76 76 ; … … 136 136 } 137 137 138 /** Serializes this object. */ 139 virtual void writeObject(vpr::ObjectWriter* writer) 140 throw (vpr::IOException); 138 /** 139 * Serializes this object into the given object writer. 140 * 141 * @param writer The object writer to which this object will be 142 * serialized. 143 * 144 * @throw vpr::IOException is thrown if serialization fails. 145 */ 146 virtual void writeObject(vpr::ObjectWriter* writer); 141 147 142 /** De-serializes this object. */ 143 virtual void readObject(vpr::ObjectReader* reader) 144 throw (vpr::IOException); 148 /** 149 * De-serializes this object. 150 * 151 * @param reader The object reader from which this object will be 152 * de-serialized. 153 * 154 * @throw vpr::IOException is thrown if de-serialization fails. 155 */ 156 virtual void readObject(vpr::ObjectReader* reader); 145 157 146 158 protected:
