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/Analog.h

    r18824 r18827  
    7171   Analog(); 
    7272 
    73    virtual ~Analog() throw ()
     73   virtual ~Analog()
    7474 
    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); 
    7883 
    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); 
    8193 
    8294   /**