Get platform string
| 664 | |
| 665 | // Get platform string |
| 666 | std::string get_platform() |
| 667 | { |
| 668 | #ifdef _WIN32 |
| 669 | return "Windows"; |
| 670 | #elif __APPLE__ |
| 671 | return "macOS"; |
| 672 | #elif __linux__ |
| 673 | return "Linux"; |
| 674 | #else |
| 675 | return "Unknown"; |
| 676 | #endif |
| 677 | } |
| 678 | |
| 679 | // Get current timestamp |
| 680 | std::string get_timestamp() |