blob: 9817a467c64a5b2aee3c9ed59b25469c0963dc18 (
plain)
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
/***************************************************************************
sq_mountviewitem.h - description
-------------------
begin : ??? Feb 24 2007
copyright : (C) 2007 by Baryshev Dmitry
email : [email protected]
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef SQ_MOUNTVIEWITEM_H
#define SQ_MOUNTVIEWITEM_H
#include <klistview.h>
class SQ_MountViewItem : public KListViewItem
{
public:
SQ_MountViewItem(KListView *tqparent, const TQString &mpoint);
~SQ_MountViewItem();
bool mounted() const;
void setMounted(bool b);
TQString device() const;
void setDevice(const TQString &dev);
private:
bool m_mounted;
TQString m_device;
};
inline
bool SQ_MountViewItem::mounted() const
{
return m_mounted;
}
inline
TQString SQ_MountViewItem::device() const
{
return m_device;
}
inline
void SQ_MountViewItem::setDevice(const TQString &dev)
{
m_device = dev;
}
#endif
|