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

📄 room.cpp

📁 利用遗传算法自动进行排课
💻 CPP
字号:

////////////////////////////////////
// (C)2007-2008 Coolsoft Company. //
// All rights reserved.           //
// http://www.coolsoft-sd.com     //
// Licence: licence.txt           //
////////////////////////////////////

#include "stdafx.h"
#include "Room.h"

int Room::_nextRoomId = 0;

// Initializes room data and assign ID to room
Room::Room(const string& name, bool lab, int numberOfSeats) : _id(_nextRoomId++),
																	  _name(name),
																	  _lab(lab),
																	  _numberOfSeats(numberOfSeats) { }

⌨️ 快捷键说明

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