Commit df1422ffceea4f07b17458d9b5b8c62d19b7887e

Authored by Eric Menezes Noronha
1 parent f706937f
Exists in master

Nova classe para checkagem de módulos

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