Esempio n. 1
0
	Item( const Sequence& sequence, const std::string& folder )
	: _type(eTypeSequence)
	, _path(folder)
	, _sequence(sequence)
	{
		_path /= sequence.getFilenameWithStandardPattern();
	}
Esempio n. 2
0
	Item( const Sequence& sequence, const boost::filesystem::path& folder )
	: _type(eTypeSequence)
	, _path(folder)
	, _sequence(sequence)
	{
		_path /= sequence.getFilenameWithStandardPattern();
	}