Visual studio Visual Assistテンプレート

4063 ワード

Visual studio Visual Assistテンプレート
Title: .c Shortcut: C Description: .cファイルテンプレート
// #define _CRT_SECURE_NO_WARNINGS  //     ,   strcpy,scanf       
/********************************Copyright (c)**********************************
**
**                   (c) Copyright 2020, Main, China, QD.
**                           All Rights Reserved
**
**                       X X X X X X X X X X X X     
**                           http://www.xxxxxxx.com
**
**----------------------------------    ------------------------------------
**     : $FILE_BASE$.$FILE_EXT$
**     : MrWang
**     : $YEAR$/$MONTH_02$/$DAY_02$ $HOUR_02$:$MINUTE$
**     : brief
**
**----------------------------------    ------------------------------------
**     : V0.0.0.1
**     :     
**
**------------------------------------------------------------------------------
*/

#include 

$selected$
int main()
{
    printf("Hello World!
"); return 0; } /*-----------------By_MrWang_$YEAR$/$MONTH_02$/$DAY_02$ $HOUR_02$:$MINUTE$-----------------*/ /*-----------------------------------------------------------------------------------------------*/

Title: .cpp Shortcut: CPP Description: .cppファイルテンプレート
/********************************Copyright (c)**********************************
**
**                   (c) Copyright 2020, Main, China, QD.
**                           All Rights Reserved
**
**                       X X X X X X X X X X X X     
**                           http://www.xxxxxxx.com
**
**----------------------------------    ------------------------------------
**     : $FILE_BASE$.$FILE_EXT$
**     : MrWang
**     : $YEAR$/$MONTH_02$/$DAY_02$ $HOUR_02$:$MINUTE$
**     : brief
**
**----------------------------------    ------------------------------------
**     : V0.0.0.1
**     :     
**
**------------------------------------------------------------------------------
*/
#include 

using namespace std;
$selected$
int main()
{
    cout << "Hello World!" << endl;
    return 0;
}

/*-----------------By_MrWang_$YEAR$/$MONTH_02$/$DAY_02$ $HOUR_02$:$MINUTE$-----------------*/
/*-----------------------------------------------------------------------------------------------*/

Title: .h Shortcut: H Description: .hファイルテンプレート
/********************************Copyright (c)**********************************
**
**                   (c) Copyright 2020, Main, China, QD.
**                           All Rights Reserved
**
**                       X X X X X X X X X X X X     
**                           http://www.xxxxxxx.com
**
**----------------------------------    ------------------------------------
**     : $FILE_BASE$.$FILE_EXT$
**     : MrWang
**     : $YEAR$/$MONTH_02$/$DAY_02$ $HOUR_02$:$MINUTE$
**     : brief
**
**----------------------------------    ------------------------------------
**     : V0.0.0.1
**     :     
**
**------------------------------------------------------------------------------
*/

#ifndef _H_$FILE_BASE_UPPER$_H_
#define _H_$FILE_BASE_UPPER$_H_

//         
#pragma  once

#ifdef __cplusplus
extern "C"
{
#endif
 
//   C       
$selected$


#ifdef __cplusplus
}
#endif
#endif

/*-----------------By_MrWang_$YEAR$/$MONTH_02$/$DAY_02$ $HOUR_02$:$MINUTE$-----------------*/
/*-----------------------------------------------------------------------------------------------*/

Title: .head Shortcut:HEAD Description:関数コメント
/*******************************************************************************
**     : $SymbolContext$
**     : $brief$
**     : $MethodArg$
**     : $SymbolType$
**     : MrWang
**     : $YEAR$/$MONTH_02$/$DAY_02$ $HOUR_02$:$MINUTE$
**------------------------------------------------------------------------------
**     :
**     :
**     :
**------------------------------------------------------------------------------
********************************************************************************/