16 lines
274 B
Objective-C
16 lines
274 B
Objective-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;
|
|
|
|
}; |