summaryrefslogtreecommitdiff
path: root/grab.h
diff options
context:
space:
mode:
Diffstat (limited to 'grab.h')
-rw-r--r--grab.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/grab.h b/grab.h
index 3895e9d..fb0fcfc 100644
--- a/grab.h
+++ b/grab.h
@@ -2,7 +2,8 @@
#define VDR_LIVE_GRAB_H
#include "stdext.h"
-#include "autoptr.h"
+
+#include <memory>
namespace vdrlive {
@@ -28,7 +29,7 @@ private:
void PutImage( char* image, int size );
- AUTO_PTR< GrabImageTask > m_task;
+ std::unique_ptr< GrabImageTask > m_task;
GrabImagePtr m_image;
int m_size;
};