// Fil : Automat.hh
// Beskrivning : En automatklass
// Version : 1
// Senast ändrad : 1998-01-01 Tor-Åke Fransson
#ifndef Automat_HH
#define Automat_HH
#include "Biljett.hh"
#include "String.hh"
#include <math.h>
class Automat
{
public:
Biljett* TaBiljett(void);
void BetalaBiljett(Biljett *);
};
#endif