Commit 0fa41b2b authored by Giovanni La Mura's avatar Giovanni La Mura
Browse files

Create the header and code files to manage output data structures

parent 0ddbe1e7
Loading
Loading
Loading
Loading

src/include/outputs.h

0 → 100644
+24 −0
Original line number Diff line number Diff line
/* Copyright (C) 2024   INAF - Osservatorio Astronomico di Cagliari

   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, either version 3 of the License, or
   (at your option) any later version.
   
   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.
   
   A copy of the GNU General Public License is distributed along with
   this program in the COPYING file. If not, see: <https://www.gnu.org/licenses/>.
 */

/*! \file outputs.h
 *
 * \brief Definition of the logging system.
 */
#ifndef INCLUDE_OUTPUTS_H_
#define INCLUDE_OUTPUTS_H_

#endif // INCLUDE_OUTPUTS_H_
+24 −0
Original line number Diff line number Diff line
/* Copyright (C) 2024   INAF - Osservatorio Astronomico di Cagliari

   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, either version 3 of the License, or
   (at your option) any later version.
   
   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.
   
   A copy of the GNU General Public License is distributed along with
   this program in the COPYING file. If not, see: <https://www.gnu.org/licenses/>.
 */

/*! \file outputs.cpp
 *
 * \brief Implementation of the code output classes.
 */

#ifndef INCLUDE_OUTPUTS_H_
#include "../include/outputs.h"
#endif