/****************************************************************************/1// Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo2// Copyright (C) 2010-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 AGActivityTripWriter.h16/// @author Piotr Woznica17/// @author Daniel Krajzewicz18/// @author Walter Bamberger19/// @author Michael Behrisch20/// @date July 201021///22// Class for writing Trip objects in a SUMO-route file.23/****************************************************************************/24#pragma once25#include <config.h>2627// ===========================================================================28// class declarations29// ===========================================================================30class OutputDevice;31class AGTrip;323334// ===========================================================================35// class definitions36// ===========================================================================37class AGActivityTripWriter {38public:39AGActivityTripWriter(OutputDevice& file);4041void addTrip(const AGTrip& trip);4243private:44OutputDevice& myTripOutput;4546private:47/// @brief Invalidated copy constructor.48AGActivityTripWriter(const AGActivityTripWriter&);4950/// @brief Invalidated assignment operator.51AGActivityTripWriter& operator=(const AGActivityTripWriter&);5253};545556