Skip to content

Instantly share code, notes, and snippets.

@mirosht
Created December 1, 2014 14:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mirosht/23011856c562a754a5d2 to your computer and use it in GitHub Desktop.
Save mirosht/23011856c562a754a5d2 to your computer and use it in GitHub Desktop.
#ifndef WORDFINDER_H
#define WORDFINDER_H
#include <QWidget>
namespace Ui {
class WordFinder;
}
class WordFinder : public QWidget
{
Q_OBJECT
public:
explicit WordFinder(QWidget *parent = 0);
~WordFinder();
private slots:
void on_FindButton_clicked();
private:
Ui::WordFinder *ui;
void getTexFile();
};
#endif // WORDFINDER_H
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment