diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | bd9e6617827818fd043452c08c606f07b78014a0 (patch) | |
tree | 425bb4c3168f9c02f10150f235d2cb998dcc6108 /kbugbuster/backend/bugdetailsimpl.h | |
download | tdesdk-bd9e6617827818fd043452c08c606f07b78014a0.tar.gz tdesdk-bd9e6617827818fd043452c08c606f07b78014a0.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdesdk@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kbugbuster/backend/bugdetailsimpl.h')
-rw-r--r-- | kbugbuster/backend/bugdetailsimpl.h | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/kbugbuster/backend/bugdetailsimpl.h b/kbugbuster/backend/bugdetailsimpl.h new file mode 100644 index 00000000..df3e5d6d --- /dev/null +++ b/kbugbuster/backend/bugdetailsimpl.h @@ -0,0 +1,40 @@ +#ifndef __bugdetails_impl_h__ +#define __bugdetails_impl_h__ + +#include <ksharedptr.h> + +#include "bugdetailspart.h" + +struct BugDetailsImpl : public KShared +{ +public: + BugDetailsImpl( const QString &_version, const QString &_source, + const QString &_compiler, const QString &_os, + const BugDetailsPart::List &_parts ) + : version( _version ), source( _source ), compiler( _compiler ), + os( _os ), parts( _parts ) {} + + struct AttachmentDetails { + AttachmentDetails() { } + AttachmentDetails( const QString& descr, const QString& dt, + const QString& idf ) : description( descr ), + date( dt ), + id( idf ) { } + QString description; + QString date; + QString id; + }; + + QString version; + QString source; + QString compiler; + QString os; + BugDetailsPart::List parts; + QValueList<BugDetailsImpl::AttachmentDetails> attachments; +}; + +#endif + +/* + * vim:sw=4:ts=4:et + */ |