📄 c++dcl.h
字号:
//# ##########################################################
//#
//# c++dcl.h -- the c++ libary declaration
//# Language: C++
//#
//# Authors: J.Rui
//#
//# Copyright (C) 2001 by J.Rui, Linkage. All Rights Reserved.
//#
//# Revision History:
//#
//# ##########################################################
#ifndef CPLUSPLUSDECL_H__
#define CPLUSPLUSDECL_H__
#if defined(hpux) || defined(__hpux__) || defined(__hpux)
#define _HPUX
#else
#undef _HPUX
#endif
//# IOSTREAM DECLARATION BLOCK
#ifdef _HPUX
#include <fstream.h>
#include <iostream.h>
#include <strstream.h>
#else
#include <fstream>
#include <iostream>
#include <sstream>
#endif
//#
#include <string>
//#
#include <vector>
//#
#include <list>
//#
#include <set>
//#
#include <map>
//#
#include <stack>
//#
#include <algorithm>
//#
#include <functional>
//# NAMESPACE DECLARATION BLOCK
#define NAMESPACE_DISABLE
#ifdef _HPUX
#define std
#else
using namespace std;
#endif
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -