| 677 | } |
| 678 | |
| 679 | std::string SystemInformation::GetOSDescription() |
| 680 | { |
| 681 | std::ostringstream oss; |
| 682 | oss << this->GetOSName() << " " << this->GetOSRelease() << " " |
| 683 | << this->GetOSVersion(); |
| 684 | |
| 685 | return oss.str(); |
| 686 | } |
| 687 | |
| 688 | bool SystemInformation::Is64Bits() |
| 689 | { |
nothing calls this directly
no test coverage detected