Commit 50cd216a21f2d795d15a53cace17dfd4eb2dffd7

Authored by Eric Menezes Noronha
1 parent a65e13cf
Exists in master

Criação da classe de hardware. Tentativas falhas de coleta de dados do

regedit em 64bits.
Showing 2 changed files with 15 additions and 0 deletions   Show diff stats
src/cacic_hardware.cpp 0 → 100644
... ... @@ -0,0 +1,5 @@
  1 +#include "cacic_hardware.h"
  2 +
  3 +cacic_hardware::cacic_hardware()
  4 +{
  5 +}
... ...
src/cacic_hardware.h 0 → 100644
... ... @@ -0,0 +1,10 @@
  1 +#ifndef CACIC_HARDWARE_H
  2 +#define CACIC_HARDWARE_H
  3 +
  4 +class cacic_hardware
  5 +{
  6 +public:
  7 + cacic_hardware();
  8 +};
  9 +
  10 +#endif // CACIC_HARDWARE_H
... ...