/** * Aquarium Lab Series * Copyright (C) 2000 Alyce Brady * * This program simulates fish moving in an aquarium. * (Or will eventually.) * * Author: Your Name * based on a template provided by: Alyce Brady * * Creation Date: 7/1/99 * modified: Modification_Date reason * modified: Modification_Date reason * * Acknowledgements: * This class is part of the Aquarium Lab Series, which was inspired * by the AP Marine Biology Case Study found at * http://www.collegeboard.org/ap/computer-science/marine_biology/ * * License: * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * */ // include files #include #include "aquarium.h" #include "aquafish.h" #include "display.h" int main() { // This file contains the beginning of a program that // will simulate fish moving in an aquarium. Aquarium aqua(16,10); // aquarium Display d (aqua); // display for our simulation // So far, this code creates two objects, but doesn't // do anything with them! cout << "This will be a fish aquarium program." << endl; }