summaryrefslogtreecommitdiff
path: root/sd/source/ui/inc/fuarea.hxx
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2004-01-20 10:55:36 +0000
committerOliver Bolte <obo@openoffice.org>2004-01-20 10:55:36 +0000
commiteb4130994669cd228a92ee4c4348d7d28250e9f8 (patch)
treef70bece7978c0a3fbd2363ff7dec7da251bf8825 /sd/source/ui/inc/fuarea.hxx
parent306947ff02a7394acd65cedcc274029118c9a71c (diff)
INTEGRATION: CWS impress1 (1.1.1.1.262); FILE MERGED
2003/09/16 13:35:48 af 1.1.1.1.262.1: #111996# Introduction of namespace sd. Use of sub-shells.
Diffstat (limited to 'sd/source/ui/inc/fuarea.hxx')
-rw-r--r--sd/source/ui/inc/fuarea.hxx33
1 files changed, 20 insertions, 13 deletions
diff --git a/sd/source/ui/inc/fuarea.hxx b/sd/source/ui/inc/fuarea.hxx
index 08248027bee4..fed955ab7068 100644
--- a/sd/source/ui/inc/fuarea.hxx
+++ b/sd/source/ui/inc/fuarea.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: fuarea.hxx,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: hr $ $Date: 2000-09-18 16:48:38 $
+ * last change: $Author: obo $ $Date: 2004-01-20 11:54:48 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -59,27 +59,34 @@
*
************************************************************************/
+#ifndef SD_FU_AREA_HXX
+#define SD_FU_AREA_HXX
-#ifndef _SD_FUAREA_HXX
-#define _SD_FUAREA_HXX
-
-#ifndef _SD_FUPOOR_HXX
+#ifndef SD_FU_POOR_HXX
#include "fupoor.hxx"
#endif
-class FuArea : public FuPoor
+namespace sd {
+
+class FuArea
+ : public FuPoor
{
- public:
+public:
TYPEINFO();
- FuArea(SdViewShell* pViewSh, SdWindow* pWin, SdView* pView,
- SdDrawDocument* pDoc, SfxRequest& rReq);
-
- virtual ~FuArea() {}
+ FuArea (
+ ViewShell* pViewSh,
+ ::sd::Window* pWin,
+ ::sd::View* pView,
+ SdDrawDocument* pDoc,
+ SfxRequest& rReq);
+ virtual ~FuArea (void) {}
virtual void Activate() {}
virtual void Deactivate() {}
};
-#endif // _SD_FUAREA_HXX
+} // end of namespace sd
+
+#endif