Commit 78a935340f8759bf9935a55ee4f015e13be49e65

Authored by Eric Menezes Noronha
1 parent 18065fa9
Exists in master

Criação da classe wmi caso seja necessário usar em outro lugar depois.

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