mirror of
https://github.com/overte-org/overte.git
synced 2025-08-07 20:35:04 +02:00
41 lines
777 B
C++
41 lines
777 B
C++
//
|
|
// FstReader.h
|
|
// hifi
|
|
//
|
|
// Created by Clément Brisset on 3/4/14.
|
|
// Copyright (c) 2014 High Fidelity, Inc. All rights reserved.
|
|
//
|
|
//
|
|
|
|
#ifndef __hifi__FstReader__
|
|
#define __hifi__FstReader__
|
|
|
|
#include <QTemporaryDir>
|
|
|
|
class QHttpMultiPart;
|
|
|
|
class FstReader {
|
|
public:
|
|
FstReader();
|
|
~FstReader();
|
|
|
|
bool zip();
|
|
bool send();
|
|
|
|
private:
|
|
QTemporaryDir _zipDir;
|
|
int _lodCount;
|
|
int _texturesCount;
|
|
int _totalSize;
|
|
bool _isHead;
|
|
bool _readyToSend;
|
|
|
|
QHttpMultiPart* _dataMultiPart;
|
|
|
|
|
|
bool addTextures(const QFileInfo& texdir);
|
|
bool compressFile(const QString& inFileName, const QString& outFileName);
|
|
bool addPart(const QString& path, const QString& name);
|
|
};
|
|
|
|
#endif /* defined(__hifi__FstReader__) */
|