blob: 72de0df358521f7f2cbcbd8a289862b749f07314 (
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
|
#ifndef __packageimpl_h__
#define __packageimpl_h__
#include "person.h"
#include <tqstringlist.h>
#include <kurl.h>
#include <ksharedptr.h>
struct PackageImpl : public TDEShared
{
public:
PackageImpl( const TQString &_name, const TQString &_description,
uint _numberOfBugs, const Person &_maintainer,
const TQStringList &_components )
: name( _name ), description( _description ),numberOfBugs( _numberOfBugs ),
maintainer( _maintainer ), components(_components)
{}
TQString name;
TQString description;
uint numberOfBugs;
Person maintainer;
TQStringList components;
};
#endif
|