add prototype wrapping of the qt sequence browser
[mussa.git] / qui / seqbrowser / SequenceBrowserWidget.hpp
index f57f9bb3a256703b30bca7a4ec864448e1593a93..8f957c76a1d975198205103a71f67a60266ec5f8 100644 (file)
@@ -20,6 +20,8 @@ class SequenceBrowserWidget : public QScrollArea
   Q_OBJECT 
 
 public:
+  SequenceBrowserWidget(QWidget *parent=0);
+  SequenceBrowserWidget(const SequenceBrowserWidget &);
   SequenceBrowserWidget(boost::shared_ptr<QDir>, QWidget *parent=0);
 
   //! return our wrapped browser, so we can test it.
@@ -99,5 +101,8 @@ private:
   /*! I need to save them so i can free them to avoid a memory leak 
    */
   std::vector<GlSequenceRef > converted_sequences;
+
+  //! shared code for constructors
+  void init();
 };
 #endif