16 lines
274 B
C
16 lines
274 B
C
|
//
|
||
|
// Created by Alex Birch on 11/04/2018.
|
||
|
// Copyright (c) 2018 Birchlabs. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#import "FilePickerFragment.h"
|
||
|
|
||
|
class ExposesComponents {
|
||
|
public:
|
||
|
virtual ~ExposesComponents() {}
|
||
|
|
||
|
virtual FilePickerFragment& getFilePicker() = 0;
|
||
|
|
||
|
};
|