added qa library (currently consisting of wxDebugReport and related classes only); moved debugrpt.* files there

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32942 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2005-03-21 00:11:06 +00:00
parent b7e4c6681d
commit 61639efb66
34 changed files with 2262 additions and 638 deletions

View File

@@ -21,7 +21,7 @@ class WXDLLIMPEXP_XML wxXmlNode;
// wxDebugReport: generate a debug report, processing is done in derived class
// ----------------------------------------------------------------------------
class wxDebugReport
class WXDLLIMPEXP_QA wxDebugReport
{
public:
// this is used for the functions which may report either the current state
@@ -114,7 +114,7 @@ private:
// wxDebugReportCompress: compress all files of this debug report in a .ZIP
// ----------------------------------------------------------------------------
class wxDebugReportCompress : public wxDebugReport
class WXDLLIMPEXP_QA wxDebugReportCompress : public wxDebugReport
{
public:
wxDebugReportCompress() { }
@@ -134,7 +134,7 @@ private:
// wxDebugReportUploader: uploads compressed file using HTTP POST request
// ----------------------------------------------------------------------------
class wxDebugReportUpload : public wxDebugReportCompress
class WXDLLIMPEXP_QA wxDebugReportUpload : public wxDebugReportCompress
{
public:
// this class will upload the compressed file created by its base class to
@@ -182,7 +182,7 @@ private:
// to veto report entirely or remove some parts of it
// ----------------------------------------------------------------------------
class wxDebugReportPreview
class WXDLLIMPEXP_QA wxDebugReportPreview
{
public:
// ctor is trivial
@@ -205,7 +205,7 @@ public:
// wxDebugReportPreviewStd: standard debug report preview window
// ----------------------------------------------------------------------------
class wxDebugReportPreviewStd : public wxDebugReportPreview
class WXDLLIMPEXP_QA wxDebugReportPreviewStd : public wxDebugReportPreview
{
public:
wxDebugReportPreviewStd() { }