* plugins/project-wizard/templates/cpp/src/main.cc:
[anjuta-git-plugin.git] / plugins / project-wizard / templates / cpp / src / main.cc
blobef60123cbdfc9700d2bfcb19ab4390727e8dd490
1 [+ autogen5 template +]
2 /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
3 /*
4 * main.cc
5 * Copyright (C) [+Author+] [+(shell "date +%Y")+] <[+Email+]>
6 *
7 [+CASE (get "License") +]
8 [+ == "BSD" +][+(bsd "main.cc" (get "Author") " * ")+]
9 [+ == "LGPL" +][+(lgpl "main.cc" (get "Author") " * ")+]
10 [+ == "GPL" +][+(gpl "main.cc" " * ")+]
11 [+ESAC+] */
13 #include <iostream>
15 int main()
17 std::cout << "Hello world!" << std::endl;
18 return 0;