summaryrefslogtreecommitdiff
path: root/tests/projects/c++/protobuf/src/main.cpp
blob: dc06458ae6ff2a9d01708a16f27b754d6b8144f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <iostream>
#include "test.pb.h"
#include "subdir/test2.pb.h"

using namespace std;

int main(int argc, char** argv)
{
    cout << "hello world!" << endl;
    return 0;
}