00001 /*************************************************************************** 00002 *cr 00003 *cr (C) Copyright 1995-2019 The Board of Trustees of the 00004 *cr University of Illinois 00005 *cr All Rights Reserved 00006 *cr 00007 ***************************************************************************/ 00008 00009 /*************************************************************************** 00010 * RCS INFORMATION: 00011 * 00012 * $RCSfile: PlainTextInterp.h,v $ 00013 * $Author: johns $ $Locker: $ $State: Exp $ 00014 * $Revision: 1.12 $ $Date: 2019/01/17 21:21:01 $ 00015 * 00016 *************************************************************************** 00017 * DESCRIPTION: 00018 * Last resort text interpreter if no other is available. 00019 ***************************************************************************/ 00020 00021 #ifndef PLAIN_TEXT_INTERP_H 00022 #define PLAIN_TEXT_INTERP_H 00023 00024 #include "TextInterp.h" 00025 00028 class PlainTextInterp : public TextInterp { 00029 public: 00030 PlainTextInterp(); 00031 virtual ~PlainTextInterp(); 00032 00033 virtual int evalString(const char *); 00034 virtual void appendString(const char *); 00035 virtual void appendList(const char *); 00036 }; 00037 00038 #endif 00039 00040 00041