diff options
author | austriancoder <austriancoder> | 2004-10-04 18:29:55 +0000 |
---|---|---|
committer | austriancoder <austriancoder> | 2004-10-04 18:29:55 +0000 |
commit | fc4a8e8c4be77630685ab2210d88aa98dc3292f4 (patch) | |
tree | 5955007cde6c6bcb6e853913132a979b310459d1 /dxr3device.h | |
parent | f7e4a11eac5fc55d4831f89a28ee460b26b52984 (diff) | |
download | vdr-plugin-dxr3-fc4a8e8c4be77630685ab2210d88aa98dc3292f4.tar.gz vdr-plugin-dxr3-fc4a8e8c4be77630685ab2210d88aa98dc3292f4.tar.bz2 |
using std::vector and std::string
Diffstat (limited to 'dxr3device.h')
-rw-r--r-- | dxr3device.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dxr3device.h b/dxr3device.h index 292642a..40b8696 100644 --- a/dxr3device.h +++ b/dxr3device.h @@ -28,7 +28,7 @@ #include "dxr3demuxdevice.h" #include "dxr3spudecoder.h" #include <string> -using namespace std; +//using namespace std; // ================================== // our device :) @@ -79,7 +79,7 @@ protected: cDxr3DemuxDevice m_DemuxDevice; bool m_AC3Present; bool m_CalledBySet; - string m_strBuf; + std::string m_strBuf; int m_Offset; //virtual bool SetPlayMode(ePlayMode PlayMode); |