C++

C++ code posted by shadow
created at 30 Mar 09:58

Edit | Back
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef  GRAPHICS_H  // 防止graphics.h被重复引用而编译
#define  GRAPHICS_H

#include <math.h>    // 引用标准库的头文件

#include myheader.h   // 引用非标准库的头文件

void Function1();  // 全局函数声明

class Box          // 类结构声明
{

};
#endif
218 Bytes in 3 ms with coderay