Show
Ignore:
Timestamp:
05/12/06 10:22:33 (3 years ago)
Author:
patrick
Message:

Update to VPR 1.1.20, which removed all exception specifications from
methods. As would be expected, this change removes all exception
specifications except those that are required by exception types
deriving from std::exception or vpr::Exception.

Bumped the Gadgeteer version to 1.1.8.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • juggler/trunk/modules/gadgeteer/gadget/Type/Glove.h

    r18824 r18827  
    5757   Glove(); 
    5858 
    59    virtual ~Glove() throw () 
     59   virtual ~Glove() 
    6060   { 
    6161      /* Do nothing. */ ; 
     
    129129   } 
    130130 
    131    virtual void writeObject(vpr::ObjectWriter* writer) 
    132       throw (vpr::IOException); 
    133    virtual void readObject(vpr::ObjectReader* reader) throw (vpr::IOException); 
     131   /** 
     132    * Serializes this object into the given object writer. 
     133    * 
     134    * @param writer The object writer to which this object will be serialized. 
     135    * 
     136    * @throw vpr::IOException is thrown if serialization fails. 
     137    */ 
     138   virtual void writeObject(vpr::ObjectWriter* writer); 
     139 
     140   /** 
     141    * De-serializes this object. 
     142    * 
     143    * @param reader The object reader from which this object will be 
     144    *               de-serialized. 
     145    * 
     146    * @throw vpr::IOException is thrown if de-serialization fails. 
     147    */ 
     148   virtual void readObject(vpr::ObjectReader* reader); 
    134149 
    135150   /** Utility function to generate GloveData from DigitalData. */