Ignore:
Timestamp:
27/08/2010 19:33:13 (21 months ago)
Author:
chris
Message:

Add support for account numbers greater than 0x7fffffff without
wrapping. (merges [2696] from trunk).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • box/RELEASE/0.11/lib/common/Configuration.h

    r2251 r2716  
    2323        ConfigTest_Exists = 2, 
    2424        ConfigTest_IsInt = 4, 
    25         ConfigTest_MultiValueAllowed = 8, 
    26         ConfigTest_IsBool = 16 
     25        ConfigTest_IsUint32 = 8,  
     26        ConfigTest_MultiValueAllowed = 16, 
     27        ConfigTest_IsBool = 32 
    2728}; 
    2829 
     
    113114        const std::string &GetKeyValue(const std::string& rKeyName) const; 
    114115        int GetKeyValueInt(const std::string& rKeyName) const; 
     116        uint32_t GetKeyValueUint32(const std::string& rKeyName) const; 
    115117        bool GetKeyValueBool(const std::string& rKeyName) const; 
    116118        std::vector<std::string> GetKeyNames() const; 
Note: See TracChangeset for help on using the changeset viewer.