added missing 'using namespace std;' for gcc 3.0

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1064 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
arpi_esp 2001-06-09 00:10:50 +00:00
parent 47c9dcec30
commit 55e418923b
3 changed files with 8 additions and 1 deletions

View File

@ -14,6 +14,8 @@
#include <except.h>
#define __MODULE__ "DirectShow_AudioDecoder"
using namespace std;
#include <errno.h>
#ifdef HAVE_MALLOC_H
#include <malloc.h>

View File

@ -14,6 +14,8 @@
#include <except.h>
#define __MODULE__ "DirectShow_VideoDecoder"
using namespace std;
#include <errno.h>
#ifdef HAVE_MALLOC_H
#include <malloc.h>

View File

@ -1,6 +1,7 @@
#include <cstdio>
#include <string>
#include <cstring>
//#include <string>
#include "outputpin.h"
#include "allocator.h"
@ -12,6 +13,8 @@
Returned by COutputPin through call IPin::EnumMediaTypes().
*/
using namespace std;
class CEnumMediaTypes: public IEnumMediaTypes
{
AM_MEDIA_TYPE type;