[go: up one dir, main page]

Menu

[r9]: / filecopier.h  Maximize  Restore  History

Download this file

25 lines (19 with data), 447 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef FILECOPIER_H
#define FILECOPIER_H
#include <stdio.h>
#include "videosegment.h"
#include <QProgressDialog>
class FileCopier
{
public:
FileCopier();
~FileCopier();
bool Open(const QString&aFileIn,
const QString&aFileOut);
void Close();
bool Write(const VideoSegment&aSegment,QProgressDialog*aDial = NULL);
private:
FILE*mFileIn;
FILE*mFileOut;
};
#endif // FILECOPIER_H