예제 #1
0
파일: ydr.cpp 프로젝트: AbuMussabRaja/yarp
 bool destroy() {
     if (save) {
         int size = 0;
         const char *data = b.toBinary(&size);
         if ((unsigned int)size<obuflen) {
             memcpy(obuf,data,obuflen);
         }
     }
     return true;
 }
예제 #2
0
파일: ydr.cpp 프로젝트: AbuMussabRaja/yarp
 size_t getpos() {
     int size = 0;
     b.toBinary(&size);
     return size;
 }