You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdesdk/kbugbuster/backend/packageimpl.h

28 lines
666 B

#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