00001 #ifndef MEMPL_H 00002 #define MEMPL_H 00003 #include"allg.h" 00004 00008 struct mempl_t 00009 { 00010 size_t l; 00011 const octet_t *ptr; 00012 00013 mempl_t():l(0),ptr(0) {} 00014 mempl_t(size_t len,octet_t *p):l(len),ptr(p) {} 00015 }; 00016 #endif