0024911: Avoid using virtual functions in NCollection classes
[occt.git] / src / NCollection / NCollection_AlignedAllocator.cxx
1 // Created on: 2014-03-31
2 // Created by: Kirill Gavrilov
3 // Copyright (c) 2014 OPEN CASCADE SAS
4 //
5 // This file is part of Open CASCADE Technology software library.
6 //
7 // This library is free software; you can redistribute it and/or modify it under
8 // the terms of the GNU Lesser General Public License version 2.1 as published
9 // by the Free Software Foundation, with special exception defined in the file
10 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
11 // distribution for complete text of the license and disclaimer of any warranty.
12 //
13 // Alternatively, this file may be used under the terms of Open CASCADE
14 // commercial license or contractual agreement.
15
16 #include <NCollection_AlignedAllocator.hxx>
17
18 IMPLEMENT_STANDARD_HANDLE  (NCollection_AlignedAllocator, NCollection_BaseAllocator)
19 IMPLEMENT_STANDARD_RTTIEXT (NCollection_AlignedAllocator, NCollection_BaseAllocator)
20
21 //=======================================================================
22 //function : NCollection_AlignedAllocator()
23 //purpose  : Constructor
24 //=======================================================================
25 NCollection_AlignedAllocator::NCollection_AlignedAllocator (const size_t theAlignment)
26 : myAlignment (theAlignment)
27 {
28   //
29 }
30
31 //=======================================================================
32 //function : Allocate
33 //purpose  : allocate a memory
34 //=======================================================================
35 void* NCollection_AlignedAllocator::Allocate (const size_t theSize)
36 {
37   return Standard::AllocateAligned (theSize, myAlignment);
38 }
39
40 //=======================================================================
41 //function : Free
42 //purpose  :
43 //=======================================================================
44 void NCollection_AlignedAllocator::Free (void* thePtr)
45 {
46   Standard::FreeAligned (thePtr);
47 }