/*
 *      DEMETER System Version 5.0
 *      Copyright (c) 1993 Northeastern University
 *
 */

#include <iostream.h>
#include <stdlib.h>
#include <string.h>

/*
 * GEN_DIR is a global variable containing the path of the generation 
 * environment. This path is used to find the cd-print and cd-parse 
 * class dictionaries. 
 * Do NOT delete the following statement.
 */

char* GEN_DIR = getenv( "GEN_DIR" );


int main( int argc, char* argv[], char* envp[] )
{
  if (GEN_DIR == NULL)
     GEN_DIR = "./scanner/";



  return ( 0 );
}

