#include "cypress.h" #include "config.h" namespace NYT { //////////////////////////////////////////////////////////////////////////////// void ICypressClient::Concatenate( const TVector& sourcePaths, const TYPath& destinationPath, const TConcatenateOptions& options) { TVector richSourcePaths; richSourcePaths.reserve(sourcePaths.size()); for (const auto& path : sourcePaths) { richSourcePaths.emplace_back(path); } Concatenate(richSourcePaths, destinationPath, options); } //////////////////////////////////////////////////////////////////////////////// } // namespace NYT