From 3235a22cc6a3bb2ace6a21e7fa028d21b5fdd476 Mon Sep 17 00:00:00 2001 From: Sascha Volkenandt Date: Tue, 29 May 2007 15:50:21 +0000 Subject: - moved everything from boost to stdext.h - using std::tr1 instead of boost where available --- recordings.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'recordings.h') diff --git a/recordings.h b/recordings.h index 1e4b57b..9e42ada 100644 --- a/recordings.h +++ b/recordings.h @@ -4,17 +4,17 @@ #include #include #include -#include #include +#include "stdext.h" namespace vdrlive { // Forward declations from epg_events.h class EpgEvent; - typedef boost::shared_ptr EpgEventPtr; + typedef std::tr1::shared_ptr EpgEventPtr; class RecordingsManager; - typedef boost::shared_ptr RecordingsManagerPtr; + typedef std::tr1::shared_ptr RecordingsManagerPtr; class RecordingsManager { @@ -46,7 +46,7 @@ namespace vdrlive { class RecordingsItem; - typedef boost::shared_ptr< RecordingsItem > RecordingsItemPtr; + typedef std::tr1::shared_ptr< RecordingsItem > RecordingsItemPtr; typedef std::multimap< std::string, RecordingsItemPtr > Map; class RecordingsItem -- cgit v1.2.3