2018-04-11 07:52:44 +08:00
|
|
|
//
|
|
|
|
// Created by Alex Birch on 11/04/2018.
|
|
|
|
// Copyright (c) 2018 Birchlabs. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2018-06-14 07:47:06 +08:00
|
|
|
#include "FilePickerFragment.h"
|
2018-04-11 07:52:44 +08:00
|
|
|
|
|
|
|
class ExposesComponents {
|
|
|
|
public:
|
|
|
|
virtual ~ExposesComponents() {}
|
|
|
|
|
|
|
|
virtual FilePickerFragment& getFilePicker() = 0;
|
|
|
|
|
|
|
|
};
|