-
Notifications
You must be signed in to change notification settings - Fork 0
/
QHelpers.h
30 lines (24 loc) · 884 Bytes
/
QHelpers.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/******************************************************************************
* @file QHelpers.h
*
* @brief
*
* @date 04-12-2010
* @author Rafal Kukla
******************************************************************************
* Copyright (C) 2010 Rafal Kukla ( rkdevel@gmail.com )
* This file is a part of rs232testng project and is released
* under the terms of the license contained in the file LICENSE
******************************************************************************
*/
#ifndef QHELPERS_H_
#define QHELPERS_H_
#include <QStandardItem>
#include <QString>
/*
*
*/
QStandardItem* genStandardItem(const QString& Title, const char* IconResPath, int ID);
QStandardItem* genStandardItemSeparator();
QString TextToHtml(const char* str, size_t size);
#endif /* QHELPERS_H_ */