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/bugdetailsimpl.h

37 lines
1.1 KiB

#ifndef __bugdetails_impl_h__
#define __bugdetails_impl_h__
#include <ksharedptr.h>
#include "bugdetailspart.h"
struct BugDetailsImpl : public TDEShared
{
public:
BugDetailsImpl( const TQString &_version, const TQString &_source,
const TQString &_compiler, const TQString &_os,
const BugDetailsPart::List &_parts )
: version( _version ), source( _source ), compiler( _compiler ),
os( _os ), parts( _parts ) {}
struct AttachmentDetails {
AttachmentDetails() { }
AttachmentDetails( const TQString& descr, const TQString& dt,
const TQString& idf ) : description( descr ),
date( dt ),
id( idf ) { }
TQString description;
TQString date;
TQString id;
};
TQString version;
TQString source;
TQString compiler;
TQString os;
BugDetailsPart::List parts;
TQValueList<BugDetailsImpl::AttachmentDetails> attachments;
};
#endif