Subversion Repositories svn1-original

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
181 - 1
#ifndef QMTEAMDATA_H
2
#define QMTEAMDATA_H
3
 
4
#include <QFile>
5
#include <QString>
6
 
7
class QmTeamData
8
{
9
public:
10
    QmTeamData();
11
    void initTeamData( const QString &file);
12
    void closeTeamData(void);
13
 
14
    QString fileName;
15
    QFile file;
16
};
17
 
18
#endif // QMTEAMDATA_H