10 lines
		
	
	
		
			187 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			187 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| # -*- mode: snippet -*-
 | |
| # name: class
 | |
| # key: cls
 | |
| # --
 | |
| class ${1:Name} {
 | |
| public:
 | |
|     ${1:$(yas/substr yas-text "[^: ]*")}();
 | |
|     ${2:virtual ~${1:$(yas/substr yas-text "[^: ]*")}();}
 | |
| };
 | |
| $0 |