Skip to content

Commit 0b8f172

Browse files
committed
Added temporary inline namespace V3
1 parent efddedf commit 0b8f172

File tree

244 files changed

+302
-303
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

244 files changed

+302
-303
lines changed

include/ydb-cpp-sdk/client/common_client/settings.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
#include <optional>
1010

11-
namespace NYdb {
11+
namespace NYdb::inline V3 {
1212

1313
using TCertificateAndPrivateKey = std::pair<std::string, std::string>;
1414

include/ydb-cpp-sdk/client/common_client/ssl_credentials.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
#include <string>
44

5-
namespace NYdb {
5+
namespace NYdb::inline V3 {
66

77
struct TSslCredentials {
88
bool IsEnabled = false;

include/ydb-cpp-sdk/client/coordination/coordination.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ namespace Coordination {
1010
}
1111
}
1212

13-
namespace NYdb {
13+
namespace NYdb::inline V3 {
1414

1515
namespace NScheme {
1616
struct TPermissions;

include/ydb-cpp-sdk/client/datastreams/datastreams.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
#include <src/api/grpc/draft/ydb_datastreams_v1.pb.h>
66

7-
namespace NYdb::NDataStreams::V1 {
7+
namespace NYdb::inline V3::NDataStreams::V1 {
88

99
template<class TProtoResult>
1010
class TProtoResultWrapper : public NYdb::TStatus {

include/ydb-cpp-sdk/client/debug/client.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
#include <ydb-cpp-sdk/client/driver/driver.h>
44

5-
namespace NYdb::NDebug {
5+
namespace NYdb::inline V3::NDebug {
66

77
////////////////////////////////////////////////////////////////////////////////
88

@@ -80,4 +80,4 @@ class TDebugClient {
8080
std::shared_ptr<TImpl> Impl_;
8181
};
8282

83-
} // namespace NYdb::NDebug
83+
} // namespace NYdb::V3::NDebug

include/ydb-cpp-sdk/client/discovery/discovery.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ namespace Discovery {
1212
} // namespace Discovery
1313
} // namespace Ydb
1414

15-
namespace NYdb {
15+
namespace NYdb::inline V3 {
1616
namespace NDiscovery {
1717

1818
////////////////////////////////////////////////////////////////////////////////
@@ -140,5 +140,5 @@ class TDiscoveryClient {
140140
std::shared_ptr<TImpl> Impl_;
141141
};
142142

143-
} // namespace NTable
144143
} // namespace NDiscovery
144+
} // namespace NYdb

include/ydb-cpp-sdk/client/draft/ydb_dynamic_config.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
#include <memory>
1010

11-
namespace NYdb::NDynamicConfig {
11+
namespace NYdb::inline V3::NDynamicConfig {
1212

1313
struct TGetConfigResult : public TStatus {
1414
TGetConfigResult(

include/ydb-cpp-sdk/client/draft/ydb_replication.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ namespace Ydb::Replication {
1313
class DescribeReplicationResult_Stats;
1414
}
1515

16-
namespace NYdb {
16+
namespace NYdb::inline V3 {
1717
class TProtoAccessor;
1818
}
1919

20-
namespace NYdb::NReplication {
20+
namespace NYdb::inline V3::NReplication {
2121

2222
class TDescribeReplicationResult;
2323
using TAsyncDescribeReplicationResult = NThreading::TFuture<TDescribeReplicationResult>;
@@ -135,7 +135,7 @@ class TReplicationDescription {
135135
};
136136

137137
class TDescribeReplicationResult: public NScheme::TDescribePathResult {
138-
friend class NYdb::TProtoAccessor;
138+
friend class NYdb::V3::TProtoAccessor;
139139
const Ydb::Replication::DescribeReplicationResult& GetProto() const;
140140

141141
public:
@@ -160,4 +160,4 @@ class TReplicationClient {
160160
std::shared_ptr<TImpl> Impl_;
161161
};
162162

163-
} // namespace NYdb::NReplication
163+
} // namespace NYdb::V3::NReplication

include/ydb-cpp-sdk/client/draft/ydb_scripting.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#include <ydb-cpp-sdk/client/table/table.h>
44
#include <src/api/protos/ydb_query.pb.h>
55

6-
namespace NYdb {
6+
namespace NYdb::inline V3 {
77
namespace NScripting {
88

99
class TExecuteYqlResult : public TStatus {

include/ydb-cpp-sdk/client/draft/ydb_view.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ namespace Ydb::View {
77
class DescribeViewResult;
88
}
99

10-
namespace NYdb {
10+
namespace NYdb::inline V3 {
1111
class TProtoAccessor;
1212
}
1313

14-
namespace NYdb::NView {
14+
namespace NYdb::inline V3::NView {
1515

1616
class TDescribeViewResult;
1717
using TAsyncDescribeViewResult = NThreading::TFuture<TDescribeViewResult>;
@@ -31,7 +31,7 @@ class TViewDescription {
3131
};
3232

3333
class TDescribeViewResult : public NScheme::TDescribePathResult {
34-
friend class NYdb::TProtoAccessor;
34+
friend class NYdb::V3::TProtoAccessor;
3535
const Ydb::View::DescribeViewResult& GetProto() const;
3636

3737
public:
@@ -55,4 +55,4 @@ class TViewClient {
5555
std::shared_ptr<TImpl> Impl_;
5656
};
5757

58-
} // namespace NYdb::NView
58+
} // namespace NYdb::V3::NView

0 commit comments

Comments
 (0)