aboutsummaryrefslogtreecommitdiffstats
path: root/doc/examples/cpuid.cpp
blob: 0a94d87171ddf5652da60bda8fc606596ac0eac3 (plain)
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);
   }