qca
allocate.h
Go to the documentation of this file.00001 /* 00002 Copyright (C) 1999-2007 The Botan Project. All rights reserved. 00003 00004 Redistribution and use in source and binary forms, for any use, with or without 00005 modification, is permitted provided that the following conditions are met: 00006 00007 1. Redistributions of source code must retain the above copyright notice, this 00008 list of conditions, and the following disclaimer. 00009 00010 2. Redistributions in binary form must reproduce the above copyright notice, 00011 this list of conditions, and the following disclaimer in the documentation 00012 and/or other materials provided with the distribution. 00013 00014 THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) "AS IS" AND ANY EXPRESS OR IMPLIED 00015 WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 00016 MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ARE DISCLAIMED. 00017 00018 IN NO EVENT SHALL THE AUTHOR(S) OR CONTRIBUTOR(S) BE LIABLE FOR ANY DIRECT, 00019 INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 00020 BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 00021 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF 00022 LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE 00023 OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF 00024 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 00025 */ 00026 // LICENSEHEADER_END 00027 namespace QCA { // WRAPNS_LINE 00028 /************************************************* 00029 * Allocator Header File * 00030 * (C) 1999-2007 The Botan Project * 00031 *************************************************/ 00032 00033 #ifndef BOTAN_ALLOCATOR_H__ 00034 #define BOTAN_ALLOCATOR_H__ 00035 00036 } // WRAPNS_LINE 00037 #include <botan/types.h> 00038 namespace QCA { // WRAPNS_LINE 00039 } // WRAPNS_LINE 00040 #include <string> 00041 namespace QCA { // WRAPNS_LINE 00042 00043 namespace Botan { 00044 00045 /************************************************* 00046 * Allocator * 00047 *************************************************/ 00048 class Allocator 00049 { 00050 public: 00051 static Allocator* get(bool); 00052 00053 virtual void* allocate(u32bit) = 0; 00054 virtual void deallocate(void*, u32bit) = 0; 00055 00056 virtual std::string type() const = 0; 00057 00058 virtual void init() {} 00059 virtual void destroy() {} 00060 00061 virtual ~Allocator() {} 00062 }; 00063 00064 /************************************************* 00065 * Get an allocator * 00066 *************************************************/ 00067 00068 } 00069 00070 #endif 00071 } // WRAPNS_LINE
KDE 4.4 API Reference