⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 c0_stack.hpp

📁 windRiver提供的的Zinc5.3完整源码,文档非常齐全
💻 HPP
字号:
//////////////////////////////////////
// START of File: C0_STACK.HPP
//////////////////////////////////////

#ifndef C0_STACK_HPP
#define C0_STACK_HPP

//-------------------------------------------------------------------
// COPYRIGHT NOTICE:  This code is protected by Copyright!
//
// Copyright (c) 1994 through 1997 by DPC Technology Corporation.
// All rights reserved. 
//
// See files "cf_copyr.txt" and "cf_licen.txt" for details of 
// copyright and license specifications, and contact information.
//-------------------------------------------------------------------

//
// Master Header File Listing:
//
// Usage:   #include	<cf_api/c0_stack.hpp>
			// Memory "stack" objects (independent of any base-framework).


class	cf_StackNode;

class CF_EXPORT	cf_Stack
{

public:

	cf_Stack();
	~cf_Stack();

   	void		push (void* item);
	void*		pop ();
	void*		top ();

private:

	cf_StackNode*		head_;

};

#endif

//////////////////////////////////////
// END of File: C0_STACK.HPP
//////////////////////////////////////
			

⌨️ 快捷键说明

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