~gabriel1984sibiu/clipgrab/trunk

« back to all changes in this revision

Viewing changes to video_heuristic.h

  • Committer: Grevutiu Gabriel
  • Date: 2015-04-23 16:13:23 UTC
  • Revision ID: gabriel1984sibiu@gmail.com-20150423161323-63h88qa11tvxqcrd
original upstream source code

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
    ClipGrab³
 
3
    Copyright (C) Philipp Schmieder
 
4
    http://clipgrab.de
 
5
    feedback [at] clipgrab [dot] de
 
6
 
 
7
    This file is part of ClipGrab.
 
8
    ClipGrab is free software: you can redistribute it and/or modify
 
9
    it under the terms of the GNU General Public License as published by
 
10
    the Free Software Foundation, either version 3 of the License, or
 
11
    (at your option) any later version.
 
12
 
 
13
    ClipGrab is distributed in the hope that it will be useful,
 
14
    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
16
    GNU General Public License for more details.
 
17
 
 
18
    You should have received a copy of the GNU General Public License
 
19
    along with ClipGrab.  If not, see <http://www.gnu.org/licenses/>.
 
20
*/
 
21
 
 
22
 
 
23
 
 
24
#ifndef video_HEURISTIC_H
 
25
#define video_HEURISTIC_H
 
26
 
 
27
#include "video.h"
 
28
 
 
29
class video_heuristic : public video
 
30
{
 
31
    Q_OBJECT
 
32
 
 
33
    public:
 
34
        video_heuristic();
 
35
        video* createNewInstance();
 
36
 
 
37
    public slots:
 
38
        virtual void parseVideo(QString html);
 
39
};
 
40
 
 
41
#endif // video_HEURISTIC_H