Changeset 3037 for source/ariba/utility
- Timestamp:
- Apr 22, 2009, 9:07:53 PM (16 years ago)
- Location:
- source/ariba/utility
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
source/ariba/utility/messages/Message.h
r3036 r3037 235 235 } 236 236 return NULL; 237 } 238 239 /** 240 * The same as decapsulate, but this function 241 * is used in the samples to make the semantics easier 242 * to understand. The semantics is shown to be: you get 243 * a message and convert it to your type. Not as: you 244 * get a message and have to extract your message from it. 245 */ 246 template<class T> 247 inline T* convert() { 248 return decapsulate<T>(); 237 249 } 238 250 -
source/ariba/utility/misc/Helper.cpp
r3036 r3037 49 49 _ultoa_s (val, buf, 16, 10); 50 50 #else 51 sprintf (buf, "% u", val);51 sprintf (buf, "%lu", val); 52 52 #endif 53 53 … … 62 62 _ltoa_s (val, buf, 16, 10); 63 63 #else 64 sprintf (buf, "% i", val);64 sprintf (buf, "%li", val); 65 65 #endif 66 66 … … 75 75 _ultoa_s (val, buf, 16, 16); 76 76 #else 77 sprintf (buf, "% x", val);77 sprintf (buf, "%lx", val); 78 78 #endif 79 79 … … 93 93 _ltoa_s (val, buf, 16, 16); 94 94 #else 95 sprintf (buf, "% x", val);95 sprintf (buf, "%lx", val); 96 96 #endif 97 97 -
source/ariba/utility/system/StartupInterface.h
r3036 r3037 45 45 46 46 namespace ariba { 47 namespace interface {48 class UnderlayAbstraction;49 }}50 51 using ariba::interface::UnderlayAbstraction;52 53 namespace ariba {54 47 namespace utility { 55 48
Note:
See TracChangeset
for help on using the changeset viewer.