diff options
author | Tor Lillqvist <tml@iki.fi> | 2012-03-05 22:58:20 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2012-03-05 23:03:34 +0200 |
commit | c5bf9b10b9060b750d3651e9c0022ad0261612f8 (patch) | |
tree | b739cf3e42a8a5efe5a9eac43d553cf70a1a332f /basic | |
parent | 0be7432f3b5210808438ab2ab2bae09a81b06ae8 (diff) |
Remove unused SbxMemoryStream
Diffstat (limited to 'basic')
-rw-r--r-- | basic/Library_sb.mk | 1 | ||||
-rw-r--r-- | basic/inc/basic/sbxmstrm.hxx | 53 | ||||
-rw-r--r-- | basic/source/sbx/sbxmstrm.cxx | 40 |
3 files changed, 0 insertions, 94 deletions
diff --git a/basic/Library_sb.mk b/basic/Library_sb.mk index 4ba93cb1531e..7ea3d59cc368 100644 --- a/basic/Library_sb.mk +++ b/basic/Library_sb.mk @@ -112,7 +112,6 @@ $(eval $(call gb_Library_add_exception_objects,sb,\ basic/source/runtime/step0 \ basic/source/runtime/step1 \ basic/source/runtime/step2 \ - basic/source/sbx/sbxmstrm \ )) endif diff --git a/basic/inc/basic/sbxmstrm.hxx b/basic/inc/basic/sbxmstrm.hxx deleted file mode 100644 index 12e17957a3e3..000000000000 --- a/basic/inc/basic/sbxmstrm.hxx +++ /dev/null @@ -1,53 +0,0 @@ -/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ -/************************************************************************* - * - * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. - * - * Copyright 2000, 2010 Oracle and/or its affiliates. - * - * OpenOffice.org - a multi-platform office productivity suite - * - * 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 _SBXMSTRM_HXX -#define _SBXMSTRM_HXX 1 - -#include <tools/stream.hxx> -#include <basic/sbxdef.hxx> -#include <basic/sbxcore.hxx> -#include "basicdllapi.h" - -SV_DECL_REF(SbxMemoryStream) - -class BASIC_DLLPUBLIC SbxMemoryStream : public SbxBase, public SvMemoryStream -{ - public: - SbxMemoryStream(sal_uIntPtr nInitSize_=512, sal_uIntPtr nResize_=64) : - SvMemoryStream(nInitSize_,nResize_) {} - ~SbxMemoryStream(); - - virtual SbxDataType GetType() const; -}; - -SV_IMPL_REF(SbxMemoryStream) - -#endif - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/basic/source/sbx/sbxmstrm.cxx b/basic/source/sbx/sbxmstrm.cxx deleted file mode 100644 index 9b62a045a7db..000000000000 --- a/basic/source/sbx/sbxmstrm.cxx +++ /dev/null @@ -1,40 +0,0 @@ -/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ -/************************************************************************* - * - * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. - * - * Copyright 2000, 2010 Oracle and/or its affiliates. - * - * OpenOffice.org - a multi-platform office productivity suite - * - * 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. - * - ************************************************************************/ - -#include <basic/sbxmstrm.hxx> - -SbxDataType SbxMemoryStream::GetType() const -{ - return SbxMEMORYSTREAM; -} - -SbxMemoryStream::~SbxMemoryStream() -{ -} - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |