From 5a7c0f6947869acd2ec916793797c6d000f955d1 Mon Sep 17 00:00:00 2001 From: Remy Prechelt <prechelt@hawaii.edu> Date: Fri, 30 Oct 2020 23:12:37 -1000 Subject: [PATCH] Delete YAML.hpp --- Outputs/YAML.hpp | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 Outputs/YAML.hpp diff --git a/Outputs/YAML.hpp b/Outputs/YAML.hpp deleted file mode 100644 index 9d1232d91..000000000 --- a/Outputs/YAML.hpp +++ /dev/null @@ -1,22 +0,0 @@ -/* - * (c) Copyright 2020 CORSIKA Project, corsika-project@lists.kit.edu - * - * This software is distributed under the terms of the GNU General Public - * Licence version 3 (GPL Version 3). See file LICENSE for a full version of - * the license. - */ -#pragma once - -#include <corsika/geometry/QuantityVector.h> - -namespace corsika { - - template <typename TDim> - YAML::Emitter& operator<<(YAML::Emitter& out, - geometry::QuantityVector<TDim> const& vec) { - out << YAML::Flow; - out << YAML::BeginSeq << v.x << v.y << v.z << YAML::EndSeq; - return out; - } - -} // namespace corsika -- GitLab