mirror of
https://github.com/CachyOS/New-Cli-Installer.git
synced 2025-02-03 06:27:14 +08:00
14 lines
230 B
C++
14 lines
230 B
C++
#ifndef CPU_HPP
|
|
#define CPU_HPP
|
|
|
|
#include <string> // for string
|
|
#include <vector> // for vector
|
|
|
|
namespace gucc::cpu {
|
|
|
|
auto get_isa_levels() noexcept -> std::vector<std::string>;
|
|
|
|
} // namespace gucc::cpu
|
|
|
|
#endif // CPU_HPP
|