epoc32/include/symcpp.h
branchSymbian2
changeset 2 2fe1408b6811
parent 0 061f57f2323e
child 4 837f303aceeb
equal deleted inserted replaced
1:666f914201fb 2:2fe1408b6811
     1 symcpp.h
     1 // Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 // e32\compsupp\symcpp\symcpp.h
       
    15 // This is a preinclude file for the symbian cpp specific defintions from RVCT2.2 onwards
       
    16 // 
       
    17 //
       
    18 
       
    19 #ifdef __ARMCC_VERSION
       
    20 #if (__ARMCC_VERSION < 220000 || __ARMCC_VERSION >= 230000)
       
    21 #error This instantiation of the build requires use of RVCT 2.2
       
    22 #endif
       
    23 #endif
       
    24 
       
    25 // Deal with operator new issues here
       
    26 #ifdef __cplusplus
       
    27 namespace std {
       
    28 	struct nothrow_t { };
       
    29 	extern const nothrow_t nothrow;
       
    30 }
       
    31 
       
    32 IMPORT_C void* operator new(unsigned int aSize) __NO_THROW;
       
    33 
       
    34 IMPORT_C void* operator new(unsigned int aSize,unsigned int aSize1) __NO_THROW;
       
    35 
       
    36 IMPORT_C void* operator new[](unsigned int aSize) __NO_THROW;
       
    37 
       
    38 IMPORT_C void* operator new(unsigned int aSize, const std::nothrow_t& aNoThrow) __NO_THROW;
       
    39 
       
    40 IMPORT_C void* operator new[](unsigned int aSize, const std::nothrow_t& aNoThrow) __NO_THROW;
       
    41 
       
    42 IMPORT_C void operator delete(void* aPtr) __NO_THROW;
       
    43 
       
    44 IMPORT_C void operator delete[](void* aPtr) __NO_THROW;
       
    45 
       
    46 IMPORT_C void operator delete(void* aPtr, const std::nothrow_t& aNoThrow) __NO_THROW;
       
    47 
       
    48 IMPORT_C void operator delete[](void* aPtr, const std::nothrow_t& aNoThrow) __NO_THROW;
       
    49 
       
    50 #endif