summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoraustriancoder <austriancoder>2004-10-04 18:29:55 +0000
committeraustriancoder <austriancoder>2004-10-04 18:29:55 +0000
commitfc4a8e8c4be77630685ab2210d88aa98dc3292f4 (patch)
tree5955007cde6c6bcb6e853913132a979b310459d1
parentf7e4a11eac5fc55d4831f89a28ee460b26b52984 (diff)
downloadvdr-plugin-dxr3-fc4a8e8c4be77630685ab2210d88aa98dc3292f4.tar.gz
vdr-plugin-dxr3-fc4a8e8c4be77630685ab2210d88aa98dc3292f4.tar.bz2
using std::vector and std::string
-rw-r--r--dxr3device.h4
-rw-r--r--dxr3memcpy.h2
-rw-r--r--dxr3vdrincludes.h2
3 files changed, 4 insertions, 4 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);
diff --git a/dxr3memcpy.h b/dxr3memcpy.h
index 1c0f777..5200434 100644
--- a/dxr3memcpy.h
+++ b/dxr3memcpy.h
@@ -82,7 +82,7 @@ public:
private:
unsigned long long int Rdtsc();
- vector<memcpy_routine> m_methods; ///< a std::vector with all methodes
+ std::vector<memcpy_routine> m_methods; ///< a std::vector with all methodes
};
// ==================================
diff --git a/dxr3vdrincludes.h b/dxr3vdrincludes.h
index c995461..b78845a 100644
--- a/dxr3vdrincludes.h
+++ b/dxr3vdrincludes.h
@@ -26,7 +26,7 @@
#include <string>
#include <algorithm>
#include <vector>
-using namespace std;
+//using namespace std;
#ifndef __STL_CONFIG_H
#define __STL_CONFIG_H