File: arraydumper.h

package info (click to toggle)
qsstv 9.5.8-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 10,928 kB
  • sloc: cpp: 47,579; makefile: 4
file content (15 lines) | stat: -rw-r--r-- 822 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef ARRAYDUMPER_H
#define ARRAYDUMPER_H
#include <QString>
//#include "vector.h"

void arrayDump(QString label, short int *data, unsigned int len, bool toAux, bool singleColumn);
void arrayDump(QString label,quint16 *data, unsigned int len,bool inHex,bool toAux);
void arrayDump(QString label, int *data, unsigned int len, bool toAux);
void arrayDump(QString label, float *data, unsigned int len, bool toAux, bool singleColumn);
void arrayDump(QString label, double *data, unsigned int len, bool toAux, bool singleColumn);
void arrayDump(QString label, quint32 *data, unsigned int len, bool inHex, bool toAux);
//void arrayBinDump(QString label, CVector<_BINARY> data, unsigned int len, bool toAux);
//void arrayComplexDump(QString label,CVectorEx<_COMPLEX> data,unsigned int len,bool toAux);

#endif // ARRAYDUMPER_H