Some fixes to libmedia/video.h

Originally committed to SVN as r5327.
This commit is contained in:
Amar Takhar 2011-02-09 02:30:48 +00:00
parent ae7d00a57e
commit 83fd95c605
1 changed files with 7 additions and 2 deletions

View File

@ -36,6 +36,11 @@
#pragma once
#ifndef MAGI_PRE
#include <string>
#endif
#include <libmedia/factory_manager.h>
#include <libmedia/video_frame.h>
#include <libaegisub/exception.h>
#include <libaegisub/vfr.h>
@ -75,9 +80,9 @@ public:
};
class VideoProviderFactory : public Factory1<VideoProvider, wxString> {
class VideoProviderFactory : public Factory1<VideoProvider, std::string> {
public:
static VideoProvider *GetProvider(wxString video);
static VideoProvider *GetProvider(std::string video);
static void RegisterProviders();
};