]> Dogcows Code - chaz/vimcoder/blob - src/com/dogcows/resources/C++Template
do not add editor name to the end of a submission
[chaz/vimcoder] / src / com / dogcows / resources / C++Template
1
2 // {{{ $VIMCODER$ <-----------------------------------------------------
3 // vim:filetype=cpp:foldmethod=marker:foldmarker={{{,}}}
4
5 #include <algorithm>
6 #include <bitset>
7 #include <cmath>
8 #include <cstdio>
9 #include <cstdlib>
10 #include <ctime>
11 #include <deque>
12 #include <functional>
13 #include <iomanip>
14 #include <iostream>
15 #include <list>
16 #include <map>
17 #include <numeric>
18 #include <queue>
19 #include <set>
20 #include <sstream>
21 #include <stack>
22 #include <utility>
23 #include <vector>
24
25 using namespace std;
26
27 // }}}
28
29 class $CLASSNAME$
30 {
31 public:
32 $RETURNTYPE$ $METHODNAME$($METHODPARAMS$)
33 {
34 return $RETURNTYPE$();
35 }
36 };
37
This page took 0.032271 seconds and 4 git commands to generate.