[go: up one dir, main page]

Menu

[d56ae5]: / file.h  Maximize  Restore  History

Download this file

21 lines (17 with data), 255 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
#ifndef FILE_H
#define FILE_H
#include "types.h"
class File
{
public:
File();
QString base;
QString simple;
QString source;
QString object;
QString ext;
QString language;
int lineCount;
void setLanguage();
};
#endif