Changeset 7165
- Timestamp:
- Aug 16, 2010, 8:31:40 PM (14 years ago)
- Location:
- code/trunk/src/libraries
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/libraries/core/TclThreadManager.cc
r6417 r7165 621 621 const int argc = 2; 622 622 char* argv[argc]; 623 argv[0] = "tclthread";623 argv[0] = const_cast<char*>("tclthread"); 624 624 argv[1] = const_cast<char*>(file.c_str()); 625 625 -
code/trunk/src/libraries/util/MultiType.h
r6417 r7165 508 508 template <> inline bool MultiType::convert<const orxonox::Degree&>() { return this->convert<orxonox::Degree>(); } /** @brief Converts the current value to the given type. */ 509 509 510 template <> void MultiType::createNewValueContainer(const char& value);511 template <> void MultiType::createNewValueContainer(const unsigned char& value);512 template <> void MultiType::createNewValueContainer(const short& value);513 template <> void MultiType::createNewValueContainer(const unsigned short& value);514 template <> void MultiType::createNewValueContainer(const int& value);515 template <> void MultiType::createNewValueContainer(const unsigned int& value);516 template <> void MultiType::createNewValueContainer(const long& value);517 template <> void MultiType::createNewValueContainer(const unsigned long& value);518 template <> void MultiType::createNewValueContainer(const long long& value);519 template <> void MultiType::createNewValueContainer(const unsigned long long& value);520 template <> void MultiType::createNewValueContainer(const float& value);521 template <> void MultiType::createNewValueContainer(const double& value);522 template <> void MultiType::createNewValueContainer(const bool& value);523 template <> void MultiType::createNewValueContainer(const long double& value);524 template <> void MultiType::createNewValueContainer( void* const& value);525 template <> void MultiType::createNewValueContainer(const std::string& value);526 template <> void MultiType::createNewValueContainer(const orxonox::Vector2& value);527 template <> void MultiType::createNewValueContainer(const orxonox::Vector3& value);528 template <> void MultiType::createNewValueContainer(const orxonox::Vector4& value);529 template <> void MultiType::createNewValueContainer(const orxonox::ColourValue& value);530 template <> void MultiType::createNewValueContainer(const orxonox::Quaternion& value);531 template <> void MultiType::createNewValueContainer(const orxonox::Radian& value);532 template <> void MultiType::createNewValueContainer(const orxonox::Degree& value);510 template <> _UtilExport void MultiType::createNewValueContainer(const char& value); 511 template <> _UtilExport void MultiType::createNewValueContainer(const unsigned char& value); 512 template <> _UtilExport void MultiType::createNewValueContainer(const short& value); 513 template <> _UtilExport void MultiType::createNewValueContainer(const unsigned short& value); 514 template <> _UtilExport void MultiType::createNewValueContainer(const int& value); 515 template <> _UtilExport void MultiType::createNewValueContainer(const unsigned int& value); 516 template <> _UtilExport void MultiType::createNewValueContainer(const long& value); 517 template <> _UtilExport void MultiType::createNewValueContainer(const unsigned long& value); 518 template <> _UtilExport void MultiType::createNewValueContainer(const long long& value); 519 template <> _UtilExport void MultiType::createNewValueContainer(const unsigned long long& value); 520 template <> _UtilExport void MultiType::createNewValueContainer(const float& value); 521 template <> _UtilExport void MultiType::createNewValueContainer(const double& value); 522 template <> _UtilExport void MultiType::createNewValueContainer(const bool& value); 523 template <> _UtilExport void MultiType::createNewValueContainer(const long double& value); 524 template <> _UtilExport void MultiType::createNewValueContainer( void* const& value); 525 template <> _UtilExport void MultiType::createNewValueContainer(const std::string& value); 526 template <> _UtilExport void MultiType::createNewValueContainer(const orxonox::Vector2& value); 527 template <> _UtilExport void MultiType::createNewValueContainer(const orxonox::Vector3& value); 528 template <> _UtilExport void MultiType::createNewValueContainer(const orxonox::Vector4& value); 529 template <> _UtilExport void MultiType::createNewValueContainer(const orxonox::ColourValue& value); 530 template <> _UtilExport void MultiType::createNewValueContainer(const orxonox::Quaternion& value); 531 template <> _UtilExport void MultiType::createNewValueContainer(const orxonox::Radian& value); 532 template <> _UtilExport void MultiType::createNewValueContainer(const orxonox::Degree& value); 533 533 534 534 inline bool MultiType::setValue(const char& value) { if (this->value_) { return this->value_->setValue(value); } else { return this->assignValue(value); } } /** @brief Assigns the given value and converts it to the current type. */ -
code/trunk/src/libraries/util/SubString.cc
r6417 r7165 554 554 void SubString::debug() const 555 555 { 556 printf("Substring-information::count=% zd ::", this->strings.size());556 printf("Substring-information::count=%d ::", this->strings.size()); 557 557 for (unsigned int i = 0; i < this->strings.size(); i++) 558 558 printf("s%d='%s'::", i, this->strings[i].c_str());
Note: See TracChangeset
for help on using the changeset viewer.