0024927: Getting rid of "Persistent" functionality -- Code
[occt.git] / src / PDataStd / PDataStd_ExtStringArray_1.cxx
diff --git a/src/PDataStd/PDataStd_ExtStringArray_1.cxx b/src/PDataStd/PDataStd_ExtStringArray_1.cxx
deleted file mode 100644 (file)
index 30bcb6f..0000000
+++ /dev/null
@@ -1,94 +0,0 @@
-// Created on: 2008-03-27
-// Created by: Sergey ZARITCHNY
-// Copyright (c) 2008-2014 OPEN CASCADE SAS
-//
-// This file is part of Open CASCADE Technology software library.
-//
-// This library is free software; you can redistribute it and/or modify it under
-// the terms of the GNU Lesser General Public License version 2.1 as published
-// by the Free Software Foundation, with special exception defined in the file
-// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
-// distribution for complete text of the license and disclaimer of any warranty.
-//
-// Alternatively, this file may be used under the terms of Open CASCADE
-// commercial license or contractual agreement.
-
-#include <PDataStd_ExtStringArray_1.ixx>
-
-//=======================================================================
-//function : PDataStd_ExtStringArray_1
-//purpose  : 
-//=======================================================================
-
-PDataStd_ExtStringArray_1::PDataStd_ExtStringArray_1 () : myDelta(Standard_False) { }
-
-//=======================================================================
-//function : Init
-//purpose  : 
-//=======================================================================
-
-void PDataStd_ExtStringArray_1::Init(const Standard_Integer lower,
-                                  const Standard_Integer upper)
-{
-  myValue = new PColStd_HArray1OfExtendedString(lower, upper);
-}
-
-
-//=======================================================================
-//function : SetValue
-//purpose  : 
-//=======================================================================
-
-void PDataStd_ExtStringArray_1::SetValue(const Standard_Integer index,
-                                      const Handle(PCollection_HExtendedString)& value)
-{
-  myValue->SetValue(index, value);
-}
-
-//=======================================================================
-//function : Value
-//purpose  : 
-//=======================================================================
-
-Handle(PCollection_HExtendedString) PDataStd_ExtStringArray_1::Value( const Standard_Integer index ) const
-{
-  return myValue->Value(index);
-}
-
-//=======================================================================
-//function : Lower
-//purpose  : 
-//=======================================================================
-Standard_Integer PDataStd_ExtStringArray_1::Lower (void) const 
-{
-  return myValue->Lower();
-}
-
-
-//=======================================================================
-//function : Upper
-//purpose  : 
-//=======================================================================
-Standard_Integer PDataStd_ExtStringArray_1::Upper (void) const 
-{
-  return myValue->Upper();
-}
-
-//=======================================================================
-//function : SetDelta
-//purpose  : 
-//=======================================================================
-void PDataStd_ExtStringArray_1::SetDelta(const Standard_Boolean delta)
-{
-  myDelta = delta;
-}
-
-//=======================================================================
-//function : GetDelta
-//purpose  : 
-//=======================================================================
-Standard_Boolean PDataStd_ExtStringArray_1::GetDelta() const
-{
-  return myDelta;
-}
-