crossroads

Git mirror of https://crossroads.e-tunity.com/
git clone git://git.finwo.net/app/crossroads
Log | Files | Refs | LICENSE

opassign.cc (212B)


      1 #include "netbuffer"
      2 
      3 Netbuffer const &Netbuffer::operator= (Netbuffer const &other) {
      4     debugmsg("Netbuffer: copying other\n");
      5     if (this != &other) {
      6 	destroy();
      7 	copy (other);
      8     }
      9     return (*this);
     10 }