mirror of
https://github.com/joaotavora/yasnippet.git
synced 2025-10-13 13:13:03 +00:00
14 lines
263 B
Plaintext
14 lines
263 B
Plaintext
# -*- mode: snippet -*-
|
|
# key: cl
|
|
# contributor: Translated from TextMate Snippet
|
|
# name: Class
|
|
# --
|
|
class ${1:${TM_FILENAME/(.+)\..+|.*/(?1:\L$1_t:name)/}}
|
|
{
|
|
public:
|
|
${1/(\w+).*/$1/} (${2:arguments});
|
|
virtual ~${1/(\w+).*/$1/} ();
|
|
|
|
private:
|
|
${0:/* data */}
|
|
}; |