Esempio n. 1
0
 public mcpdstate(mcpd.mcpdstate obj)
 {
     _innerobj = obj;
 }
Esempio n. 2
0
 public mcpdreport(mcpd.mcpdreport obj)
 {
     _innerobj = obj;
 }
 /*************************************************************************
 This function is used to create MCPD object with arbitrary combination of
 entry and exit states
 *************************************************************************/
 private static void createee(int n,
     int entrystate,
     int exitstate,
     mcpd.mcpdstate s)
 {
     if( entrystate<0 & exitstate<0 )
     {
         mcpd.mcpdcreate(n, s);
     }
     if( entrystate>=0 & exitstate<0 )
     {
         mcpd.mcpdcreateentry(n, entrystate, s);
     }
     if( entrystate<0 & exitstate>=0 )
     {
         mcpd.mcpdcreateexit(n, exitstate, s);
     }
     if( entrystate>=0 & exitstate>=0 )
     {
         mcpd.mcpdcreateentryexit(n, entrystate, exitstate, s);
     }
 }