summaryrefslogtreecommitdiff
path: root/sd/source/ui/inc/fupage.hxx
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2004-01-20 11:07:14 +0000
committerOliver Bolte <obo@openoffice.org>2004-01-20 11:07:14 +0000
commit637561cd962a04843f572fa14c6deee189a1e0f4 (patch)
tree7ecf7d850237ee07b75763dd4a3115d19475cb3d /sd/source/ui/inc/fupage.hxx
parent96f65a63d2b1918e990778eb7c1ff8837fe3b063 (diff)
INTEGRATION: CWS impress1 (1.1.1.1.262); FILE MERGED
2003/09/16 13:36:02 af 1.1.1.1.262.1: #111996# Introduction of namespace sd. Use of sub-shells.
Diffstat (limited to 'sd/source/ui/inc/fupage.hxx')
-rw-r--r--sd/source/ui/inc/fupage.hxx29
1 files changed, 19 insertions, 10 deletions
diff --git a/sd/source/ui/inc/fupage.hxx b/sd/source/ui/inc/fupage.hxx
index aba27d2d958b..ea15d6ba9871 100644
--- a/sd/source/ui/inc/fupage.hxx
+++ b/sd/source/ui/inc/fupage.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: fupage.hxx,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: hr $ $Date: 2000-09-18 16:48:39 $
+ * last change: $Author: obo $ $Date: 2004-01-20 12:07:14 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -59,25 +59,34 @@
*
************************************************************************/
-#ifndef _SD_FUPAGE_HXX
-#define _SD_FUPAGE_HXX
+#ifndef SD_FU_PAGE_HXX
+#define SD_FU_PAGE_HXX
-#ifndef _SD_FUPOOR_HXX
+#ifndef SD_FU_POOR_HXX
#include "fupoor.hxx"
#endif
-class FuPage : public FuPoor
+namespace sd {
+
+class FuPage
+ : public FuPoor
{
public:
TYPEINFO();
- FuPage( SdViewShell* pViewSh, SdWindow* pWin, SdView* pView,
- SdDrawDocument* pDoc, SfxRequest& rReq );
- ~FuPage() {}
+ FuPage (
+ ViewShell* pViewSh,
+ ::sd::Window* pWin,
+ ::sd::View* pView,
+ SdDrawDocument* pDoc,
+ SfxRequest& rReq );
+ virtual ~FuPage (void) {}
virtual void Activate() {} // Function aktivieren
virtual void Deactivate() {} // Function deaktivieren
};
-#endif // _SD_FUPAGE_HXX
+} // end of namespace sd
+
+#endif