dproto icon indicating copy to clipboard operation
dproto copied to clipboard

fully qualified name from a proto?

Open timotheecour opened this issue 7 years ago • 1 comments

@msoucy

mixin ProtocolBufferFromString!"
package foo.bar;
message Person {...}
";

void test(){
  static  assert(Person.fqname=="foo.bar.Person");
}

is there anything similar to fqname? (static method returning at compile time the fully qualified proto type)

timotheecour avatar May 17 '17 02:05 timotheecour

Not at the moment, no... That shouldn't be too bad though, I'll keep it in mind

msoucy avatar May 18 '17 01:05 msoucy