function.h

来自「软件的名称:AA制用餐管理系统 软件的功能:管理消费中产生的费用」· C头文件 代码 · 共 19 行

H
19
字号
#if !defined(_FUNCTION_h)
#define _FUNCTION_h
/*一些函数封装*/
class function
{
public:
	static void SetTextCorlor(unsigned short int color);
	static void GetXY(int *x,int *y);
	static void SetXY(int xcursor, int ycursor);
	static void GetTime();
	static void DrawInputFrame(unsigned short color,int xcursor,int ycursor,int len);
	static void ClearScreen(int fromX,int fromY,int toX,int toY);
	static void Loading();
	static void SetCorlor(short int color);
	static int input(char str[], int len);
	static int InputValidate(char str[],int begin,int to);
};

#endif

⌨️ 快捷键说明

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