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

📄 pkgset.h

📁 About: Paco (pacKAGE oRGANIZER) is a simple, yet powerful tool to aid package management when insta
💻 H
字号:
//=======================================================================// PkgSet.h//-----------------------------------------------------------------------// This file is part of the package paco// Copyright (C) 2004-2007 David Rosal <david.3r@gmail.com>// For more information visit http://paco.sourceforge.net//=======================================================================#ifndef GPACO_PKGSET_H#define GPACO_PKGSET_H#include <vector>#include <iosfwd>namespace Gpaco {class Pkg;class PkgSet : public std::vector<Pkg*>{	public:	PkgSet();	~PkgSet();	PkgSet& operator+=(Pkg*);	PkgSet& operator-=(Pkg*);	float sizeInst() const	{ return mSizeInst; } 	bool hasPkg(std::string const& pkgName);	private:	float mSizeInst;};}	// namespace Gpaco#endif  // GPACO_PKGSET_H

⌨️ 快捷键说明

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