]> vaikene.ee Git - evaf/blobdiff - src/apps/PswGen/GUI/gui.h
Fixed a conflict where our forward declaration did not match the actual declaration...
[evaf] / src / apps / PswGen / GUI / gui.h
index e9607e4ee8a142e2d4259c5a2cfe5d604f21d8a0..9102945cae1331a8488c116cccd62d277094e5ea 100644 (file)
@@ -31,7 +31,8 @@ class QPushButton;
 
 namespace eVaf {
 namespace PswGen {
-    class iGenerator;
+    struct iGenerator;
+    struct iStorage;
 namespace GUI {
 
 /**
@@ -70,12 +71,17 @@ private slots:
 
 private: // Members
 
+    static int const DefaultPasswordLength;
+
     /// Flag indicating that the module is ready
     bool mReady;
 
     /// The iGenerator interface
     eVaf::PswGen::iGenerator * mGenerator;
 
+    /// The iStorage interface (can be null)
+    eVaf::PswGen::iStorage * mStorage;
+
     /// Widgets on the screen
     QLineEdit * wName;
     QLineEdit * wMasterPassword;