Free Web Hosting Provider - Web Hosting - E-commerce - High Speed Internet - Free Web Page
Search the Web


// =====================================
//  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