c++dcl.h
来自「此源代码只用于学习,不得用于其他商业活动 .」· C头文件 代码 · 共 67 行
H
67 行
//# ##########################################################
//#
//# 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 + =
减小字号Ctrl + -
显示快捷键?