toolsandutils/e32tools/checklib/object/coff/coff_string_table.h
changeset 0 83f4b4db085c
child 1 d4b442d23379
equal deleted inserted replaced
-1:000000000000 0:83f4b4db085c
       
     1 // Copyright (c) 2008-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 "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 //
       
    15 
       
    16 #ifndef COFF_STRING_TABLE_H
       
    17 #define COFF_STRING_TABLE_H
       
    18 
       
    19 
       
    20 namespace coff
       
    21 {
       
    22     class String_table
       
    23     {
       
    24     public:
       
    25         String_table(const char*);
       
    26 
       
    27         const char* get_string(unsigned) const;
       
    28     private:
       
    29         const char* m_first_p;
       
    30         unsigned m_size;
       
    31     };
       
    32 }
       
    33 
       
    34 
       
    35 #endif
       
    36