00001 #ifndef N2NC_UTILSSHAREDOPTIONS_H 00002 #define N2NC_UTILSSHAREDOPTIONS_H 00003 00004 #include "nixsys.h" 00005 00006 namespace n2nc { 00007 namespace utils { 00008 00013 uint32_t stringToHex(std::string num){ 00014 uint32_t val ; 00015 std::istringstream is ; 00016 is.str(num); 00017 is >> std::hex >> val ; 00018 return val; 00019 } 00020 00021 } 00022 } 00023 00024 00025 #endif