#ifndef __EC_H__
#define __EC_H__

#define SIZE_DISPLAY	17
#define SIZE_MANTISSA	8

// In alpha order
enum currency
{
	ats,
	bef,
	dem,
	esp,
	fim,
	frf,
	iep,
	itl,
	luf,
	nlg,
	pte,
	numCurrencies
};

enum calcOp
{
	nop,
	equals,
	add,
	subtract,
	multiply,
	divide
};


#endif
