Skip to content

Commit

Permalink
make struct private again
Browse files Browse the repository at this point in the history
  • Loading branch information
pratheekshasn committed Aug 21, 2023
1 parent d08ff97 commit 18c6e93
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/lv_proto_server_reflection_service.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,6 @@ namespace grpc_labview
class LVProtoServerReflectionService final : public grpc::reflection::v1alpha::ServerReflection::Service
{
public:
struct ListServicesInfo
{
const grpc::protobuf::FileDescriptor* other_pool_file_descriptor;
std::vector<std::string>* other_pool_services_;
};

std::unique_ptr<ListServicesInfo> list_services_info_ptr;

LVProtoServerReflectionService();

Status ServerReflectionInfo(
Expand Down Expand Up @@ -78,5 +70,13 @@ namespace grpc_labview
const grpc::protobuf::DescriptorPool* descriptor_pool_;
grpc::protobuf::DescriptorPool other_pool;
std::vector<std::string>* services_;

struct ListServicesInfo
{
const grpc::protobuf::FileDescriptor* other_pool_file_descriptor;
std::vector<std::string>* other_pool_services_;
};

std::unique_ptr<ListServicesInfo> list_services_info_ptr;
};
}

0 comments on commit 18c6e93

Please sign in to comment.