X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Freferenced_reel_asset.h;h=813d3214864f44c2331ad2711f6441530ed70c07;hb=295076f7bf8d84d19f22a073814968aab76aebcc;hp=1479ade5d27c85df800b4ddffbfc77665b816a45;hpb=7a65b08f1b09beacc0e0a8060641f677683d400c;p=dcpomatic.git diff --git a/src/lib/referenced_reel_asset.h b/src/lib/referenced_reel_asset.h index 1479ade5d..813d32148 100644 --- a/src/lib/referenced_reel_asset.h +++ b/src/lib/referenced_reel_asset.h @@ -1,19 +1,20 @@ /* Copyright (C) 2015 Carl Hetherington - This program is free software; you can redistribute it and/or modify + This file is part of DCP-o-matic. + + DCP-o-matic is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. - This program is distributed in the hope that it will be useful, + DCP-o-matic is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + along with DCP-o-matic. If not, see . */ @@ -25,15 +26,15 @@ class ReferencedReelAsset { public: - ReferencedReelAsset (boost::shared_ptr asset_, DCPTimePeriod period_) + ReferencedReelAsset (std::shared_ptr asset_, dcpomatic::DCPTimePeriod period_) : asset (asset_) , period (period_) {} /** The asset */ - boost::shared_ptr asset; + std::shared_ptr asset; /** Period that this asset covers in the DCP */ - DCPTimePeriod period; + dcpomatic::DCPTimePeriod period; }; #endif