|
Lines 74-79
Link Here
|
| 74 |
const bool SGRawValue<bool>::DefaultValue = false ; |
74 |
template<> const bool SGRawValue<bool>::DefaultValue = false ; |
| 75 |
const int SGRawValue<int>::DefaultValue = 0 ; |
75 |
template<> const int SGRawValue<int>::DefaultValue = 0 ; |
| 76 |
const long SGRawValue<long>::DefaultValue = 0L ; |
76 |
template<> const long SGRawValue<long>::DefaultValue = 0L ; |
| 77 |
const float SGRawValue<float>::DefaultValue = 0.0 ; |
77 |
template<> const float SGRawValue<float>::DefaultValue = 0.0 ; |
| 78 |
const double SGRawValue<double>::DefaultValue = 0.0L ; |
78 |
template<> const double SGRawValue<double>::DefaultValue = 0.0L ; |
| 79 |
const char * const SGRawValue<const char *>::DefaultValue = ""; |
79 |
template<> const char * const SGRawValue<const char *>::DefaultValue = ""; |
| 80 |
-- |
|
|