// THE USER CAN NOT HAVE BOTH CHECKED AT THE SAME TIME. IT IS AN ACE OR NARSIM PARSE. NOT BOTH.
int NAR=0; // Radio button input for a NARSIM Parse
int ACE=1; // RAdio button input for an ACE Parse
if (NAR)
{
NAR_manager NAR_app; // Create a NARSIM application object to manage the parse
NARSIM_PARSE(); // Go and parse NARSIM Files
}
if (ACE)
{
ACE_manager ACE_app; // Create an ACE application object to manage the parse
ACE_PARSE(); // Go and parse ACE files
}
return 0;
}
|