service.h
来自「这是个很好的源代码,有用的」· C头文件 代码 · 共 42 行
H
42 行
// ==============================================================
//
// 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 + =
减小字号Ctrl + -
显示快捷键?