summaryrefslogtreecommitdiff
path: root/grab.h
diff options
context:
space:
mode:
Diffstat (limited to 'grab.h')
-rw-r--r--grab.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/grab.h b/grab.h
index c5ffccd..2d6f820 100644
--- a/grab.h
+++ b/grab.h
@@ -1,12 +1,12 @@
#ifndef VDR_LIVE_GRAB_H
#define VDR_LIVE_GRAB_H
-#include <boost/shared_array.hpp>
+#include "stdext.h"
#include "tasks.h"
namespace vdrlive {
-typedef boost::shared_array< char > GrabImagePtr;
+typedef std::tr1::shared_ptr< char > GrabImagePtr;
typedef std::pair< GrabImagePtr, int > GrabImageInfo;
class GrabImageTask;