Program Listing for File CommonData.hpp

Return to documentation for file (include/rmf_visualization_schedule/CommonData.hpp)

/*
 * Copyright (C) 2021 Open Source Robotics Foundation
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
*/

#ifndef RMF_VISUALIZATION_SCHEDULE__COMMONDATA_HPP
#define RMF_VISUALIZATION_SCHEDULE__COMMONDATA_HPP

#include <rmf_traffic/Time.hpp>
#include <string>
#include <memory>

namespace rmf_visualization_schedule {

struct RequestParam
{
  std::string map_name;
  rmf_traffic::Time start_time;
  rmf_traffic::Time finish_time;
};

using RequestParamPtr = std::shared_ptr<RequestParam>;

} // namespace rmf_visualization_schedule

#endif //RMF_VISUALIZATION_SCHEDULE__COMMONDATA_HPP