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

    r18824 r18827  
    7272      } 
    7373 
    74       virtual ~Command() throw () 
     74      virtual ~Command() 
    7575      { 
    7676         ; 
     
    136136      } 
    137137 
    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); 
    141147 
    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); 
    145157 
    146158   protected: