Audacity 3.2.0
ImportForwards.h
Go to the documentation of this file.
1//
2// ImportForwards.h
3// Audacity
4//
5// Created by Paul Licameli on 8/10/16.
6//
7//
8
9#ifndef __AUDACITY_IMPORT_FORWARDS__
10#define __AUDACITY_IMPORT_FORWARDS__
11
12#include <vector>
13#include <memory>
14
15class ImportPlugin;
17
19 std::vector< ImportPlugin * >;
21 std::vector< std::unique_ptr<UnusableImportPlugin> >;
22
23#endif
std::vector< std::unique_ptr< UnusableImportPlugin > > UnusableImportPluginList
std::vector< ImportPlugin * > ImportPluginList
Base class for FlacImportPlugin, LOFImportPlugin, MP3ImportPlugin, OggImportPlugin and PCMImportPlugi...
Definition: ImportPlugin.h:67
Used in place of a real plug in for plug ins that have not been compiled or are not available in this...
Definition: ImportPlugin.h:177