Salome HOME
#18963 Minimize compiler warnings
[modules/kernel.git] / src / Communication / ReceiverFactory.hxx
index 6baf841abb91291abacea46372e4a864db456d7b..7d59f53c2bed2f102a9d4d9ea3a04c941fdefb44 100644 (file)
 class COMMUNICATION_EXPORT ReceiverFactory
 {
 public:
-  static double *getValue(SALOME::SenderDouble_ptr sender,long &size)throw(MultiCommException);
-  static int *getValue(SALOME::SenderInt_ptr sender,long &size)throw(MultiCommException);
+  static double *getValue(SALOME::SenderDouble_ptr sender,long &size);
+  static int *getValue(SALOME::SenderInt_ptr sender,long &size);
 private:
-  static double *getValueOneShot(SALOME::SenderDouble_ptr sender,long &size)throw(MultiCommException);
-  static int *getValueOneShot(SALOME::SenderInt_ptr sender,long &size)throw(MultiCommException);
+  static double *getValueOneShot(SALOME::SenderDouble_ptr sender,long &size);
+  static int *getValueOneShot(SALOME::SenderInt_ptr sender,long &size);
 };
 
 #endif