2015-06-24 15:32:34 +02:00
|
|
|
# -*- mode: snippet -*-
|
|
|
|
# group: file templates
|
|
|
|
# contributor: Henrik Lissner
|
|
|
|
# --
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* @author `user-full-name` <`user-mail-address`>
|
2015-08-10 22:48:01 +02:00
|
|
|
* @version 0.1
|
2015-06-24 15:32:34 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
int main(int argc, char *argv[]) {
|
|
|
|
$0
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|