mirror of
https://github.com/overte-org/overte.git
synced 2025-08-04 04:03:35 +02:00
28 lines
612 B
C++
28 lines
612 B
C++
//
|
|
// FileResourceRequest.h
|
|
// libraries/networking/src
|
|
//
|
|
// Created by Ryan Huffman on 2015/07/23
|
|
// Copyright 2015 High Fidelity, Inc.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
//
|
|
|
|
#ifndef hifi_FileResourceRequest_h
|
|
#define hifi_FileResourceRequest_h
|
|
|
|
#include <QUrl>
|
|
|
|
#include "ResourceRequest.h"
|
|
|
|
class FileResourceRequest : public ResourceRequest {
|
|
Q_OBJECT
|
|
public:
|
|
FileResourceRequest(const QUrl& url) : ResourceRequest(url) { }
|
|
|
|
protected:
|
|
virtual void doSend() override;
|
|
};
|
|
|
|
#endif
|