#include <QtCore>
 
 using namespace eVaf;
-using namespace evaf::PswGen;
+using namespace eVaf::PswGen;
 using namespace eVaf::PswGen::Generator;
 
 //-------------------------------------------------------------------
 
-Generator::Generator()
+Module::Module()
     : Plugins::iPlugin()
     , mReady(false)
 {
     EVAF_INFO("%s created", qPrintable(objectName()));
 }
 
-Generator::~Generator()
+Module::~Module()
 {
     delete mGenerator;
 
     EVAF_INFO("%s destroyed", qPrintable(objectName()));
 }
 
-bool Generator::init(const QString & args)
+bool Module::init(const QString & args)
 {
     Q_UNUSED(args);
 
     return true;
 }
 
-void Generator::done()
+void Module::done()
 {
     mReady = false;
 
 //-------------------------------------------------------------------
 
 VER_EXPORT_VERSION_INFO()
-Q_EXPORT_PLUGIN2(VER_MODULE_NAME_STR, Generator)
+Q_EXPORT_PLUGIN2(VER_MODULE_NAME_STR, Module)
 
 /**
  * Module implementing the iGenerator interface.
  */
-class Generator : public Plugins::iPlugin
+class Module : public Plugins::iPlugin
 {
     Q_OBJECT
 
 public:
 
-    Generator();
+    Module();
 
-    virtual ~Generator();
+    virtual ~Module();
 
     virtual bool init(const QString & args);