// =====================================
// Turing Machine (C++ Implementation)
// Alex Vinokur
// http://up.to/alexvn
// =====================================
// ===============
// File service.h
// ===============
// ###############
#ifndef _SERVICE_H
#define _SERVICE_H
#include "defs.h"
class Logo
{
private :
void show_logo (const string& msg_i) const;
public :
Logo ();
~Logo ();
};
#endif // _SERVICE_H