📄 page.c
字号:
/*
* Description of a simple page
* $Id: page.C,v 1.1 1997/01/02 12:46:41 flisakow Exp $
*/
#ifdef PAGE_DEBUG
# include <iostream.h>
#endif
#include "page.h"
// Methods of the class Page
//***********************************************************
// Constructor
Page::Page()
{
#ifdef PAGE_DEBUG
cout << "constructing page" << endl;
#endif
}
//*************************************************************
// Destructor
Page::~Page()
{
#ifdef PAGE_DEBUG
cout << "Destroying page" << endl;
#endif
}
//************************************************************
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -