⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 service.h

📁 这是个很好的源代码,有用的
💻 H
字号:
// ==============================================================
//
//  Copyright (c) 2002-2003 by Alex Vinokur.
//
//  For conditions of distribution and use, see
//  copyright notice in version.h
//
// ==============================================================


// ##############################################################
//
//  SOFTWARE : Turing Machine (C++ Implementation)
//  FILE     : service.h
//
//  DESCRIPTION :
//         Auxilary classes/functions (Declaration)
//
// ##############################################################




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

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -