~ubuntu-branches/ubuntu/saucy/goldencheetah/saucy

« back to all changes in this revision

Viewing changes to src/RideFileTableModel.h

  • Committer: Package Import Robot
  • Author(s): KURASHIKI Satoru
  • Date: 2013-08-18 07:02:45 UTC
  • mfrom: (4.1.8 sid)
  • Revision ID: package-import@ubuntu.com-20130818070245-zgdvb47e1k3mtgil
Tags: 3.0-3
debian/control: remove needless dependency. (Closes: #719571)

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 
19
19
#ifndef _GC_RideFileTableModel_h
20
20
#define _GC_RideFileTableModel_h 1
 
21
#include "GoldenCheetah.h"
21
22
 
22
23
#include "RideFile.h"
23
24
#include "RideFileCommand.h"
34
35
class RideFileTableModel : public QAbstractTableModel
35
36
{
36
37
    Q_OBJECT
 
38
    G_OBJECT
 
39
 
37
40
 
38
41
    public:
39
42
 
80
83
        void beginCommand(bool undo, RideCommand *);
81
84
        void endCommand(bool undo, RideCommand *);
82
85
 
 
86
        // Import wizard frees the ridefile memory to
 
87
        // stop exhausting memory, but we need to know
 
88
        // coz we reference the ride file and not the 
 
89
        // ride item. long story.
 
90
        void deleted();
 
91
 
83
92
        // force redraw - used by anomaly detection and find
84
93
        void forceRedraw();
85
94