mirror of
https://github.com/overte-org/overte.git
synced 2025-07-07 03:51:10 +02:00
19 lines
533 B
C++
19 lines
533 B
C++
//
|
|
// Created by Bradley Austin Davis on 2015/12/17
|
|
// Copyright 2013-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
|
|
//
|
|
|
|
#pragma once
|
|
#ifndef hifi_network_AbstractUriHandler_h
|
|
#define hifi_network_AbstractUriHandler_h
|
|
|
|
class AbstractUriHandler {
|
|
public:
|
|
virtual bool canAcceptURL(const QString& url) const = 0;
|
|
virtual bool acceptURL(const QString& url, bool defaultUpload = false) = 0;
|
|
};
|
|
|
|
#endif
|