]> Dogcows Code - chaz/vimcoder/blob - src/com/dogcows/resources/C++Template
b50dc60ffd9b003a25eab0fc380e8f6c41304130
[chaz/vimcoder] / src / com / dogcows / resources / C++Template
1
2 // {{{ Boilerplate Code <--------------------------------------------------
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 #define FOR(I,A,B) for(int I = (A); I < (B); ++I)
26 #define REP(I,N) FOR(I,0,N)
27 #define ALL(A) (A).begin(), (A).end()
28
29 using namespace std;
30
31 // }}}
32
33 class $CLASSNAME$
34 {
35 public:
36 $RETURNTYPE$ $METHODNAME$($METHODPARAMS$)
37 {
38 return $RETURNTYPE$();
39 }
40 };
41
This page took 0.034957 seconds and 3 git commands to generate.