diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-12-16 20:20:47 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-12-16 20:20:47 +0000 |
| commit | ff896d5f5ec20e1371b423bb746c32fa55cc126a (patch) | |
| tree | bcd6f76709753812c8a988ad43c1f7b8727c6f28 /src/reel_asset.h | |
| parent | 7a8bf6efd00161b1ce7bb160bd50a0c11c28d792 (diff) | |
Ref does not need to be a template since it's always used for Asset.
Diffstat (limited to 'src/reel_asset.h')
| -rw-r--r-- | src/reel_asset.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/reel_asset.h b/src/reel_asset.h index 6c501abf..9211fbd1 100644 --- a/src/reel_asset.h +++ b/src/reel_asset.h @@ -59,12 +59,12 @@ public: virtual bool equals (boost::shared_ptr<const ReelAsset>, EqualityOptions, NoteHandler) const; /** @return a Ref to our actual asset */ - Ref<Asset> const & asset_ref () const { + Ref const & asset_ref () const { return _asset_ref; } /** @return a Ref to our actual asset */ - Ref<Asset>& asset_ref () { + Ref & asset_ref () { return _asset_ref; } @@ -98,7 +98,7 @@ protected: /** Reference to the asset (MXF or XML file) that this reel entry * applies to. */ - Ref<Asset> _asset_ref; + Ref _asset_ref; private: std::string _annotation_text; ///< The <AnnotationText> from the reel's entry for this asset |
