MAK Data Logger API Documentation for HLA
Home
Modules
Namespaces
Classes
Files
Examples
Libraries
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Groups
Pages
include
trafficAnalyzer
stringListViewItem.h
Go to the documentation of this file.
1
/*******************************************************************************
2
** Copyright (c) 2006 MAK Technologies, Inc.
3
** All rights reserved.
4
*******************************************************************************/
5
/*******************************************************************************
6
** $RCSfile: stringListViewItem.h,v $ $Revision: 143799 $ $State: Exp $
7
*******************************************************************************/
8
9
#pragma once
10
#include <
trafficAnalyzer/trafficAnalyzerPlugin.h
>
11
12
#include <Q3ListView>
13
14
// An extension on Qt's List that allows each item to keep an
15
// extra string with information on type
16
class
DT_DLL_TRFCANLZR
DtStringListViewItem
:
public
Q3ListViewItem
17
{
18
public
:
19
20
// Constructor
21
DtStringListViewItem
(Q3ListView* parent,
Q3ListViewItem
* after,
22
const
char
* label,
23
const
char
* extra);
24
DtStringListViewItem
(
Q3ListViewItem
* parent,
Q3ListViewItem
* after,
25
const
char
* label,
26
const
char
* extra);
27
28
// Destructor
29
virtual
~
DtStringListViewItem
();
30
31
// Grab the extra information
32
virtual
QString getExtraStringInfo();
33
34
protected
:
35
36
QString
myExtra
;
37
38
private
:
39
40
// Copy Constructor
41
DtStringListViewItem
(
const
DtStringListViewItem
& orig);
42
43
// Assignment Operator
44
DtStringListViewItem
& operator=(
const
DtStringListViewItem
& rhs);
45
46
};
Document ID: Generated on Thu Apr 7 20:50:59 EDT 2016 from SVN revision 163818
Copyright © 2005-2012 VT MÄK. All Rights Reserved (
www.mak.com
)