About Visual Assist X's Snippets
The SnippetsType: cpp file template Shortcut: hhhh //============================================================================= /// @author <NAME> - <EMAIL> /// @author Copyright(C) $YEAR$ <COMPANY>. All rights reserved. /// @since $YEAR$/$MONTH$/$DAY$ /// @file $FILE_BASE$.$FILE_EXT$ //=============================================================================
#include "stdafx.h" #include "$FILE_BASE$.h"
//============================================================================= namespace $namespace$ {
$end$
//============================================================================= }
|
Type: h/hpp file template Shortcut: hhhhh //============================================================================= /// @author <NAME> - <EMAIL> /// @author Copyright(C) $YEAR$ <COMPANY>. All rights reserved. /// @since $YEAR$/$MONTH$/$DAY$ /// @file $FILE_BASE$.$FILE_EXT$ //=============================================================================
#ifndef $FILE_BASE_UPPER$_H #define $FILE_BASE_UPPER$_H
//============================================================================= namespace $namespace$ {
$end$
//============================================================================= }
#endif
|
Type: for (size_t i=0; i < ... Shortcut: forifor (size_t i=0; i < $end$; ++i) {
} |
|
|