cypress.cpp 640 B

123456789101112131415161718192021222324
  1. #include "cypress.h"
  2. #include "config.h"
  3. namespace NYT {
  4. ////////////////////////////////////////////////////////////////////////////////
  5. void ICypressClient::Concatenate(
  6. const TVector<TYPath>& sourcePaths,
  7. const TYPath& destinationPath,
  8. const TConcatenateOptions& options)
  9. {
  10. TVector<TRichYPath> richSourcePaths;
  11. richSourcePaths.reserve(sourcePaths.size());
  12. for (const auto& path : sourcePaths) {
  13. richSourcePaths.emplace_back(path);
  14. }
  15. Concatenate(richSourcePaths, destinationPath, options);
  16. }
  17. ////////////////////////////////////////////////////////////////////////////////
  18. } // namespace NYT