blob: 7b5c69a13d56df002357769492c2fbdae9e2421c (
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
|
#ifndef __package_h__
#define __package_h__
#include "person.h"
#include <qvaluelist.h>
#include <ksharedptr.h>
class PackageImpl;
class Package
{
public:
typedef QValueList<Package> List;
Package();
Package( PackageImpl *impl );
Package( const Package &other );
Package &operator=( const Package &rhs );
~Package();
QString name() const;
QString description() const;
uint numberOfBugs() const;
Person maintainer() const;
const QStringList components() const;
bool isNull() const { return m_impl == 0; }
PackageImpl *impl() const { return m_impl; }
bool operator==( const Package &rhs );
bool operator<( const Package &rhs ) const;
private:
KSharedPtr<PackageImpl> m_impl;
};
#endif
/* vim: set sw=4 ts=4 et softtabstop=4: */
|