/* * Please do not edit this file. * It was generated using PAB's VML system. */ #include CPS_START_NAMESPACE bool A2AArg::Encode(char *filename,char *instance){ VML vmls; if ( !vmls.Create(filename,VML_ENCODE)) return false; if ( !Vml(&vmls,instance) ) return false; vmls.Destroy(); return true; } bool A2AArg::Decode(char *filename,char *instance){ VML vmls; if ( !vmls.Create(filename,VML_DECODE)) return false; if ( !Vml(&vmls,instance)) return false; vmls.Destroy(); return true; } bool A2AArg::Vml(VML *vmls,char *instance){ if(!vml_A2AArg(vmls,instance,this)) return false; return true; } bool_t vml_A2AArg (VML *vmls, char *name,A2AArg *objp) { vml_class_begin(vmls,"A2AArg",name); if (!vml_int (vmls, "nl", &objp->nl)) return FALSE; if (!vml_int (vmls, "nhits", &objp->nhits)) return FALSE; if (!vml_RandomType (vmls, "rand_type", &objp->rand_type)) return FALSE; if (!vml_int (vmls, "src_width", &objp->src_width)) return FALSE; vml_class_end(vmls,"A2AArg",name); return TRUE; } CPS_END_NAMESPACE