Documentation fixes
[vlp.git] / src / lgconfig / lgconfig.h
index bdd2ae24fa39cd360fb7638c778409576eae81df..e303582b1ebed4979c9e5cef0c25b085c59f6a9e 100644 (file)
@@ -2,14 +2,14 @@
 #define _VLP_LGCONFIG_H
 
 #include <QtGui/QMainWindow>
-#include <QtGui/QPushButton>
 #include <QtCore/QList>
-#include <QtGui/QMenuBar>
-
-#include <Qt3Support/Q3ListBox>
 
 #include "ui/VLPConfigWindow.h"
 
+/**
+ * @file
+ */
+
 namespace loglan {
 namespace vlp {
 
@@ -27,34 +27,13 @@ public:
 class QInstall: public QMainWindow, private Ui::VLPConfigWindow {
        Q_OBJECT
 public:
-       Q3ListBox *nodelist;
-       QList<VLPEntry*> Nodes;
+       QList<VLPEntry*> nodes;
 
        /**
         * Class constructor
         */
        QInstall();
 
-       /**
-        * Checks if node with specified id already exists
-        *
-        * @param id ID of the node to search for
-        * @return true if node with specified ID has been found, false otherwise
-        */
-       bool check_id(int id);
-
-       /**
-        * Checks if node with specified address already exists
-        *
-        * @param addr address of the node to search for
-        * @return true if node with specified address has been found, false otherwise
-        */
-       bool check_addr(QString addr);
-
-public slots:
-       void AddNode();
-       void DelNode();
-
 private slots:
        void on_actionConfigure_triggered();
        void on_actionQuit_triggered();