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

« back to all changes in this revision

Viewing changes to src/RawRideFile.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:
1
 
/* 
 
1
/*
2
2
 * Copyright (c) 2007 Sean C. Rhea (srhea@srhea.net)
3
3
 *
4
4
 * This program is free software; you can redistribute it and/or modify it
5
5
 * under the terms of the GNU General Public License as published by the Free
6
6
 * Software Foundation; either version 2 of the License, or (at your option)
7
7
 * any later version.
8
 
 * 
 
8
 *
9
9
 * This program is distributed in the hope that it will be useful, but WITHOUT
10
10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11
11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
12
12
 * more details.
13
 
 * 
 
13
 *
14
14
 * You should have received a copy of the GNU General Public License along
15
15
 * with this program; if not, write to the Free Software Foundation, Inc., 51
16
16
 * Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
18
18
 
19
19
#ifndef _RawRideFile_h
20
20
#define _RawRideFile_h
 
21
#include "GoldenCheetah.h"
21
22
 
22
23
#include "RideFile.h"
23
24
 
24
25
struct RawFileReader : public RideFileReader {
25
 
    virtual RideFile *openRideFile(QFile &file, QStringList &errors) const;
 
26
    virtual RideFile *openRideFile(QFile &file, QStringList &errors, QList<RideFile*>* = 0) const; 
 
27
    bool hasWrite() const { return false; }
26
28
};
27
29
 
28
30
#endif // _RawRideFile_h