summaryrefslogtreecommitdiff
path: root/src/reel_asset.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-12-16 20:20:47 +0000
committerCarl Hetherington <cth@carlh.net>2015-12-16 20:20:47 +0000
commitff896d5f5ec20e1371b423bb746c32fa55cc126a (patch)
treebcd6f76709753812c8a988ad43c1f7b8727c6f28 /src/reel_asset.h
parent7a8bf6efd00161b1ce7bb160bd50a0c11c28d792 (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.h6
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 &lt;AnnotationText&gt; from the reel's entry for this asset