mirror of
https://github.com/joaotavora/yasnippet.git
synced 2025-10-14 21:43:04 +00:00
9 lines
163 B
Plaintext
9 lines
163 B
Plaintext
# name: class ... { ... }
|
|
# key: class
|
|
# --
|
|
class ${1:Name}
|
|
{
|
|
public:
|
|
${1:$(yas-substr text "[^: ]*")}($2);
|
|
virtual ~${1:$(yas-substr text "[^: ]*")}();
|
|
}; |