view parser.h @ 5:54edd85237ab

use signal to send input to qt interpreter object
author John W. Eaton <jwe@octave.org>
date Wed, 22 May 2019 18:07:37 -0400
parents 0e154787183d
children 894be158b32d
line wrap: on
line source

#if ! defined (calc_parse_h)
#define calc_parse_h 1

namespace parser
{
  extern bool beg_of_stmt;

  extern void init (void);
  extern void fini (void);

  extern int parse_and_execute (const std::string& line);
}

#endif