[inline]
Definition at line 222 of file FXProcess.h.
00224 : 00225 dllHandle &operator=(dllHandle &o); 00226 public: 00227 dllHandle &&operator=(dllHandle &&o) 00228 #endif 00229 { 00230 if(h) 00231 { 00232 dllUnload(*this); 00233 h=0; 00234 } 00235 h=o.h; 00236 o.h=0; 00237 return *this; 00238 }