~ubuntu-branches/ubuntu/saucy/clementine/saucy

« back to all changes in this revision

Viewing changes to src/analyzers/analyzerbase.h

  • Committer: Package Import Robot
  • Author(s): Thomas PIERSON
  • Date: 2012-01-01 20:43:39 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20120101204339-lsb6nndwhfy05sde
Tags: 1.0.1+dfsg-1
New upstream release. (Closes: #653926, #651611, #657391)

Show diffs side-by-side

added added

removed removed

Lines of Context:
67
67
    int  resizeForBands( int );
68
68
    virtual void init() {}
69
69
    virtual void transform( Scope& );
70
 
    virtual void analyze( QPainter& p, const Scope& ) = 0;
 
70
    virtual void analyze( QPainter& p, const Scope&, bool new_frame) = 0;
71
71
    virtual void paused(QPainter& p);
72
72
    virtual void demo(QPainter& p);
73
73
 
77
77
    FHT    *m_fht;
78
78
    EngineBase* m_engine;
79
79
    Scope m_lastScope;
 
80
 
 
81
    bool new_frame_;
80
82
};
81
83
 
82
84