YugabyteDB (2.13.0.0-b42, bfc6a6643e7399ac8a0e81d06a3ee6d6571b33ab)

Coverage Report

Created: 2022-03-09 17:30

/Users/deen/code/yugabyte-db/src/yb/yql/cql/cqlserver/cql_server_options.h
Line
Count
Source (jump to first uncovered line)
1
// Copyright (c) YugaByte, Inc.
2
//
3
// Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
4
// in compliance with the License.  You may obtain a copy of the License at
5
//
6
// http://www.apache.org/licenses/LICENSE-2.0
7
//
8
// Unless required by applicable law or agreed to in writing, software distributed under the License
9
// is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
10
// or implied.  See the License for the specific language governing permissions and limitations
11
// under the License.
12
//
13
//
14
// This file contains the CQLServerOptions class that defines the CQL server options.
15
16
#ifndef YB_YQL_CQL_CQLSERVER_CQL_SERVER_OPTIONS_H
17
#define YB_YQL_CQL_CQLSERVER_CQL_SERVER_OPTIONS_H
18
19
#include "yb/server/server_base_options.h"
20
21
namespace yb {
22
namespace cqlserver {
23
24
// Options for constructing a CQL server.
25
class CQLServerOptions : public yb::server::ServerBaseOptions {
26
 public:
27
  CQLServerOptions();
28
  std::string broadcast_rpc_address;
29
30
0
  ~CQLServerOptions() {}
31
};
32
33
} // namespace cqlserver
34
} // namespace yb
35
36
#endif // YB_YQL_CQL_CQLSERVER_CQL_SERVER_OPTIONS_H