FindTaginfoAlgo Class Reference

#include <findtaginfoalgo.h>

Inheritance diagram for FindTaginfoAlgo:

Inheritance graph
[legend]
Collaboration diagram for FindTaginfoAlgo:

Collaboration graph
[legend]
List of all members.

Public Member Functions

 FindTaginfoAlgo (TrapperDoc *pDoc_, std::set< db_recno_t > &recnoList, AlgoParam *param)
void start ()

Detailed Description

Definition at line 6 of file findtaginfoalgo.h.


Constructor & Destructor Documentation

FindTaginfoAlgo::FindTaginfoAlgo ( TrapperDoc pDoc_,
std::set< db_recno_t > &  recnoList,
AlgoParam param 
) [inline]

Definition at line 9 of file findtaginfoalgo.h.

00009 : Algo(pDoc_, recnoList, param) {}


Member Function Documentation

void FindTaginfoAlgo::start (  )  [virtual]

Implements Algo.

Definition at line 15 of file findtaginfoalgo.cc.

References QInputDialog::getText(), and Algo::selectedReads.

00016 {
00017   if ( selectedReads.empty() ) {
00018     return;
00019   }
00020   
00021   bool ok;
00022   QString res = QInputDialog::getText ( "Find TagInfo", "Enter tag string:", QLineEdit::Normal, QString::null, &ok );
00023   
00024   
00025   if ( ok ) {
00026     // user entered something and pressed OK
00027   } else {
00028     // user pressed Cancel
00029     return;
00030   }
00031   
00032   
00033   
00034 }


The documentation for this class was generated from the following files:
Generated on Fri Jul 17 20:19:48 2009 for ngsview by  doxygen 1.5.1