11 lines
No EOL
135 B
Text
11 lines
No EOL
135 B
Text
# -*- mode: snippet -*-
|
|
# name: guard
|
|
# key: guard
|
|
# contributor: Andrea crotti
|
|
# --
|
|
#ifndef ${1:NAME}_H
|
|
#define $1_H
|
|
|
|
$0
|
|
|
|
#endif // $1 |