summaryrefslogtreecommitdiff
path: root/svl/inc/svl/stritem.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'svl/inc/svl/stritem.hxx')
-rw-r--r--svl/inc/svl/stritem.hxx58
1 files changed, 58 insertions, 0 deletions
diff --git a/svl/inc/svl/stritem.hxx b/svl/inc/svl/stritem.hxx
new file mode 100644
index 000000000000..21ee9fadd1ec
--- /dev/null
+++ b/svl/inc/svl/stritem.hxx
@@ -0,0 +1,58 @@
+/*************************************************************************
+ *
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * Copyright 2008 by Sun Microsystems, Inc.
+ *
+ * OpenOffice.org - a multi-platform office productivity suite
+ *
+ * $RCSfile: stritem.hxx,v $
+ * $Revision: 1.3 $
+ *
+ * This file is part of OpenOffice.org.
+ *
+ * OpenOffice.org is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License version 3
+ * only, as published by the Free Software Foundation.
+ *
+ * OpenOffice.org is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License version 3 for more details
+ * (a copy is included in the LICENSE file that accompanied this code).
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * version 3 along with OpenOffice.org. If not, see
+ * <http://www.openoffice.org/license.html>
+ * for a copy of the LGPLv3 License.
+ *
+ ************************************************************************/
+
+#ifndef _SFXSTRITEM_HXX
+#define _SFXSTRITEM_HXX
+
+#include "svl/svldllapi.h"
+#include <svl/custritm.hxx>
+
+//============================================================================
+class SVL_DLLPUBLIC SfxStringItem: public CntUnencodedStringItem
+{
+public:
+ TYPEINFO();
+
+ SfxStringItem() {}
+
+ SfxStringItem(USHORT which, const XubString & rValue):
+ CntUnencodedStringItem(which, rValue) {}
+
+ SfxStringItem(USHORT nWhich, SvStream & rStream);
+
+ virtual SfxPoolItem * Create(SvStream & rStream, USHORT) const;
+
+ virtual SvStream & Store(SvStream & rStream, USHORT) const;
+
+ virtual SfxPoolItem * Clone(SfxItemPool * = 0) const;
+};
+
+#endif // _SFXSTRITEM_HXX
+