#pragma once #include #include #include namespace NSQLTranslationV1 { TString GetDescription( const google::protobuf::Message& node, const google::protobuf::FieldDescriptor* d); TString AltDescription( const google::protobuf::Message& node, ui32 altCase, const google::protobuf::Descriptor* descr); template TString AltDescription(const TNode& node) { return AltDescription(node, node.Alt_case(), TNode::descriptor()); } } // namespace NSQLTranslationV1