/****************************************************************************/1// Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo2// Copyright (C) 2001-2025 German Aerospace Center (DLR) and others.3// activitygen module4// Copyright 2010 TUM (Technische Universitaet Muenchen, http://www.tum.de/)5// This program and the accompanying materials are made available under the6// terms of the Eclipse Public License 2.0 which is available at7// https://www.eclipse.org/legal/epl-2.0/8// This Source Code may also be made available under the following Secondary9// Licenses when the conditions for such availability set forth in the Eclipse10// Public License 2.0 are satisfied: GNU General Public License, version 211// or later which is available at12// https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html13// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-or-later14/****************************************************************************/15/// @file AGBus.h16/// @author Piotr Woznica17/// @author Daniel Krajzewicz18/// @author Walter Bamberger19/// @date July 201020///21// A bus driving in the city22/****************************************************************************/23#pragma once24#include <config.h>2526#include <iostream>27#include <string>282930// ===========================================================================31// class definitions32// ===========================================================================33class AGBus {34public:35AGBus(std::string name, int depTime) :36myName(name),37myDepartureTime(depTime) {};38AGBus(int depTime) :39myDepartureTime(depTime) {};40void setName(std::string name);41int getDeparture();42std::string getName();43void print() const;4445private:46std::string myName;47int myDepartureTime;48};495051