]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/mac/classic/dcprint.h
removed outdated Classic files to avoid confusing people
[wxWidgets.git] / include / wx / mac / classic / dcprint.h
diff --git a/include/wx/mac/classic/dcprint.h b/include/wx/mac/classic/dcprint.h
deleted file mode 100644 (file)
index cb2d4da..0000000
+++ /dev/null
@@ -1,48 +0,0 @@
-/////////////////////////////////////////////////////////////////////////////
-// Name:        wx/mac/classic/dcprint.h
-// Purpose:     wxPrinterDC class
-// Author:      Stefan Csomor
-// Modified by:
-// Created:     1998-01-01
-// RCS-ID:      $Id$
-// Copyright:   (c) Stefan Csomor
-// Licence:     wxWindows licence
-/////////////////////////////////////////////////////////////////////////////
-
-#ifndef _WX_DCPRINT_H_
-#define _WX_DCPRINT_H_
-
-#include "wx/dc.h"
-#include "wx/cmndata.h"
-
-class wxNativePrinterDC ;
-
-class WXDLLEXPORT wxPrinterDC: public wxDC
-{
- public:
-  DECLARE_CLASS(wxPrinterDC)
-
-#if wxUSE_PRINTING_ARCHITECTURE
-  // Create a printer DC
-  wxPrinterDC(const wxPrintData& printdata );
-  virtual ~wxPrinterDC();
-
-    virtual bool StartDoc( const wxString& WXUNUSED(message) ) ;
-    virtual void EndDoc(void) ;
-    virtual void StartPage(void) ;
-    virtual void EndPage(void) ;
-
-    wxRect GetPaperRect();
-
-    wxPrintData& GetPrintData() { return m_printData; }
-    virtual void DoGetSize( int *width, int *height ) const;
-    
- protected:
-    wxPrintData   m_printData ;
-    wxNativePrinterDC* m_nativePrinterDC ;
-#endif // wxUSE_PRINTING_ARCHITECTURE
-};
-
-#endif
-    // _WX_DCPRINT_H_
-