//! VEXPR.H: RPN CALCULATOR HEADER FILE
//. J.L.Villar 08/03/2019

#ifndef _VEXPR_H_
#define _VEXPR_H_	1

double vexpr(const char *s);

class x__VExpr {
public:
	const char *m1;
	const char *m2;
	x__VExpr(const char *p1 = 0,const char *p2 = 0) : m1(p1), m2(p2) {}
};

#endif	// _VEXPR_H_
//@
