// Copyright (c) 1999-2000 David Muse
// See the COPYING file for more information.

#ifndef TEXT_H
#define TEXT_H

class text {
	public:
			text();
		virtual	~text();

		int	isNumber(char *val);
				// returns 1 the string val is a number
				// and 0 if it is not a number
				// decimal points and negatives cause the
				// function to fail
};

#endif