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

📄 group.h

📁 1.注册功能 2.登录功能 3.退出系统功能 4.发布新广告功能 5.添加子目录功能 6.查找广告功能 7.广告排序功能 8.查看当前目录中的广告 9.查看当前目录及其子目录中的广告
💻 H
字号:
#ifndef GROUP_H
#define GROUP_H

#include <iostream>
#include <vector>
#include <iterator>
#include <algorithm>
#include <functional>

#include "Client.h"

using namespace std;

class Group;

class Group {

protected:
	typedef vector<Client*> Container;

public:
	typedef Container::iterator iterator;

protected:
	Container objects;

public:
    Client *operator[](const string& email);

	virtual void add(Client* ptr);

	virtual iterator begin();
	virtual iterator end();

};

#endif

⌨️ 快捷键说明

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