source: NonGTP/Xerces/xerces-c_2_8_0/include/xercesc/framework/MemoryManager.hpp @ 2674

Revision 2674, 2.9 KB checked in by mattausch, 16 years ago (diff)
Line 
1/*
2 * Licensed to the Apache Software Foundation (ASF) under one or more
3 * contributor license agreements.  See the NOTICE file distributed with
4 * this work for additional information regarding copyright ownership.
5 * The ASF licenses this file to You under the Apache License, Version 2.0
6 * (the "License"); you may not use this file except in compliance with
7 * the License.  You may obtain a copy of the License at
8 *
9 *      http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17
18 /*
19 * $Id: MemoryManager.hpp 568078 2007-08-21 11:43:25Z amassari $
20 */
21
22
23#if !defined(MEMORYMANAGER_HPP)
24#define MEMORYMANAGER_HPP
25
26#include <xercesc/util/XercesDefs.hpp>
27#include <stdlib.h>
28
29
30XERCES_CPP_NAMESPACE_BEGIN
31
32
33/**
34 *  Configurable memory manager
35 *
36 *  <p>This interface allows outside applications to plug in their own memory
37 *  manager to be used by Xerces for memory allocation/deallocation.</p>
38 */
39class XMLPARSER_EXPORT MemoryManager
40{
41public:
42    // -----------------------------------------------------------------------
43    //  Constructors are hidden, only the virtual destructor is exposed
44    // -----------------------------------------------------------------------
45
46    /** @name Destructor */
47    //@{
48
49    /**
50      * Default destructor
51      */
52    virtual ~MemoryManager()
53    {
54    }
55    //@}
56
57
58    // -----------------------------------------------------------------------
59    //  The virtual memory manager interface
60    // -----------------------------------------------------------------------
61    /** @name The pure virtual methods in this interface. */
62    //@{
63
64    /**
65      * This method allocates requested memory.
66      *
67      * @param size The requested memory size
68      *
69      * @return A pointer to the allocated memory
70      */
71    virtual void* allocate(size_t size) = 0;
72
73    /**
74      * This method deallocates memory
75      *
76      * @param p The pointer to the allocated memory to be deleted
77      */
78    virtual void deallocate(void* p) = 0;
79
80    //@}
81
82
83protected :
84    // -----------------------------------------------------------------------
85    //  Hidden Constructors
86    // -----------------------------------------------------------------------
87    /** @name Constructor */
88    //@{
89
90    /**
91      * Protected default constructor
92      */
93    MemoryManager()
94    {
95    }
96    //@}
97
98
99
100private:
101    // -----------------------------------------------------------------------
102    //  Unimplemented constructors and operators
103    // -----------------------------------------------------------------------
104    MemoryManager(const MemoryManager&);
105    MemoryManager& operator=(const MemoryManager&);
106};
107
108XERCES_CPP_NAMESPACE_END
109
110#endif
Note: See TracBrowser for help on using the repository browser.