blob: 0d7173c2f453cf322919cbe8bd08a377ab6061bd (
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
|
#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
/*
* vim:sw=4:ts=4:et
*/
|