Skip to content
Snippets Groups Projects
Select Git revision
  • cb2db0e8bcbe36faa9970296cc6b2b6b60f53d02
  • main default protected
  • Issue/3192-gitlabTokenUpdateNotPossible
  • dev protected
  • Issue/3175-uiQuotaSettingAndDisplayBug
  • Issue/3090-tosProblems
  • Issue/3178-iconColorBug
  • Issue/3176-addNewNFDI4INGLogo
  • Issue/3141-rdsNoLonga
  • Issue/3180-fixMetadataNotLoading
  • Issue/3177-resourceTypeDescriptionTexts
  • Issue/3160-deactivateDownloadForFolders
  • Issue/3111-fixLoadingGitLabResource
  • Issue/3133-subProjectsChanges
  • Issue/3139-dsnrw
  • Issue/3167-changeTextAndAddLink
  • Issue/3070-newIconsForResourceTypes
  • Issue/3145-redesignLoginPage
  • Issue/3093-moreInformationInTheDeletionEmails
  • Issue/3040-closeTokenWindowWithXButton
  • Issue/3152-fixResourceStore
  • v3.19.1
  • v3.19.0
  • v3.18.0
  • v3.17.2
  • v3.17.1
  • v3.17.0
  • v3.16.1
  • v3.16.0
  • v3.15.6
  • v3.15.5
  • v3.15.4
  • v3.15.3
  • v3.15.2
  • v3.15.1
  • v3.15.0
  • v3.14.0
  • v3.13.1
  • v3.13.0
  • v3.12.0
  • v3.11.0
41 results

ResourceModule.vue

Blame
  • 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 */