QTfrontend/M3Panel.h
changeset 2400 2422ea85d100
child 2948 3f21a9dc93d0
equal deleted inserted replaced
2399:ddde0ac1472b 2400:2422ea85d100
       
     1 /*
       
     2  *  M3Panel.h
       
     3  *  
       
     4  *
       
     5  *  Created by Vittorio on 28/09/09.
       
     6  *  Copyright 2009 __MyCompanyName__. All rights reserved.
       
     7  *
       
     8  */
       
     9 
       
    10 #ifndef M3PANEL_H
       
    11 #define M3PANEL_H
       
    12 
       
    13 #include "InstallController.h"
       
    14 
       
    15 class M3Panel : public InstallController
       
    16         {
       
    17 	public:
       
    18 		M3Panel(void);
       
    19 		~M3Panel();
       
    20                 
       
    21 		void showInstallController();
       
    22                 
       
    23 	private:
       
    24 		class Private;
       
    25 		Private* c;
       
    26         };
       
    27 
       
    28 #endif