1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/* * (C) 2009 Jack Lloyd * * Distributed under the terms of the Botan license */ #include <iostream> #include <string> #include <botan/cpuid.h> using namespace Botan; int main() { CPUID::initialize(); CPUID::print(std::cout); }