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