aboutsummaryrefslogtreecommitdiff
path: root/contrib/protoc-bnet/main.cpp
blob: 7fc55c8829328ed0c68adbe55958ca127101b8f6 (plain)
1
2
3
4
5
6
7
8
#include "BnetCodeGenerator.h"
#include <google/protobuf/compiler/plugin.h>

int main(int argc, char* argv[])
{
    BnetCodeGenerator gen;
    return google::protobuf::compiler::PluginMain(argc, argv, &gen);
}