Skip to content
Snippets Groups Projects
Commit 8809aa25 authored by Querejeta Lomas, Leire's avatar Querejeta Lomas, Leire
Browse files

Subir nuevo archivo

parent 8c2d7311
Branches
No related tags found
No related merge requests found
/**
* @file class_structures.hpp
* @author Alfonso Dominguez <alfonso.dominguez@tecnalia.com> and Leire Querejeta Lomas <leire.querejeta@tecnalia.com>
* @date 2020
*
* Copyright 2020 Tecnalia Research & Innovation.
* Distributed under the GNU GPL v3.
* For full terms see https://www.gnu.org/licenses/gpl.txt
*
* @brief Structures interchanged through the API methods
*/
#pragma once
#include <vector>
//! Structure for a acquisition frame
struct AcqFrame
{
double timestamp; ///< timestamp of the acquisition frame
std::vector<double> values; ///< values for the different channels
};
//! Structure for pattern
struct Pattern
{
std::string amp;
std::string pw;
std::string r;
int ampval;
int pwval;
int time;
};
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment