Subversion Repositories Projects

Compare Revisions

Ignore whitespace Rev 198 → Rev 199

/QMK-Groundstation/trunk/ToolBox.h
20,6 → 20,7
#define TOOLBOX_H
 
#include <QString>
#include <QIcon>
#include "global.h"
 
class ToolBox
27,14 → 28,14
public :
ToolBox();
static bool Decode64(sRxData &RX, bool Long = true);
static QString Encode64(char Data[150],unsigned int Length);
static bool check_CRC(QString RXString);
static QString add_CRC(QString TXString);
static QString Encode64(char Data[150],unsigned int Length);
static QString DataToString(int Data[150]);
static int Data2Int(int *Data , int Start, bool is_signed = true);
static long Data2Long(int *Data , int Start, bool is_signed = true);
static QString Data2QString(int Data[150], int Start = 0, int End = 150);
 
static QIcon Icon(int ID);
static QString get_Float(long Wert, long Count);
};
 
#endif // TOOLBOX_H