1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-19 22:27:43 +02:00
audacity/src/import/ImportForwards.h
2018-05-10 00:56:37 -04:00

24 lines
427 B
C++

//
// ImportForwards.h
// Audacity
//
// Created by Paul Licameli on 8/10/16.
//
//
#ifndef __AUDACITY_IMPORT_FORWARDS__
#define __AUDACITY_IMPORT_FORWARDS__
#include <vector>
#include "../MemoryX.h"
class ImportPlugin;
class UnusableImportPlugin;
using ImportPluginList =
std::vector< std::unique_ptr<ImportPlugin> >;
using UnusableImportPluginList =
std::vector< std::unique_ptr<UnusableImportPlugin> >;
#endif