Skip to content
Snippets Groups Projects
Select Git revision
  • 2fc0781811f80cbe5fd35b78d16bbe2bde384c93
  • master default protected
  • reset-event-fd
  • node-cpp-fixes
  • node-cpp
  • node-cpp-alt
  • fix-temper
  • node-ft4222
  • fix-sample-capacity-calc
  • refactor-path
  • node-iec61850-mms
  • relay-api-v2
  • fix-integration-tests
  • python-zeromq
  • node-lua
  • api-lua
  • fix-unit-tests
  • node-iec61850-8-1
  • client-simulink
  • fmi
  • node-gtwif
  • v0.11.0
  • v0.10.0
  • v0.9.0
  • v0.8.0
  • v0.7.3
  • v0.7.2
  • v0.7.1
  • v0.7.0
  • v0.6.4
  • v0.6.3
  • v0.6.2
  • v0.6.1
  • v0.6.0
  • v0.5.1
  • v0.5.0
  • v0.4.5
  • v0.4.4
  • v0.4.3
  • v0.4.2
  • v0.4.1
41 results

json_edgeflex.hpp

Blame
  • Forked from an inaccessible project.
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    json_edgeflex.hpp 1.24 KiB
    /** JSON serializtion for edgeFlex project.
     *
     * @author Manuel Pitz <manuel.pitz@eonerc.rwth-aachen.de>
     * @copyright 2014-2020, Institute for Automation of Complex Power Systems, EONERC
     * @license GNU General Public License (version 3)
     *
     * VILLASnode
     *
     * 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
     * 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.
     *
     * You should have received a copy of the GNU General Public License
     * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     *********************************************************************************/
    
    #pragma once
    
    #include <villas/formats/json.hpp>
    
    namespace villas {
    namespace node {
    
    class JsonEdgeflexFormat : public JsonFormat {
    
    protected:
    	int packSample(json_t **j, const struct sample *smp);
    	
    public:
    	using JsonFormat::JsonFormat;
    };
    
    } /* namespace node */
    } /* namespace villas */