mirror of
https://github.com/ivabus/pantry
synced 2024-11-14 12:35:10 +03:00
7 lines
214 B
C++
7 lines
214 B
C++
|
#include "fb303/thrift/gen-cpp2/BaseService.h"
|
||
|
#include <iostream>
|
||
|
int main() {
|
||
|
auto service = facebook::fb303::cpp2::BaseServiceSvIf();
|
||
|
std::cout << service.getGeneratedName() << std::endl;
|
||
|
return 0;
|
||
|
}
|