annotation.cpp

来自「IO函数调用测试」· C++ 代码 · 共 44 行

CPP
44
字号
#include "stdafx.h"
#include "IoExplorer.h"
#include "DataArray.h"
#include "TraceEvent.h"
  #include "Annotation.h"
 

/****************************************************************************
*                         AnnotationEvent::display_result
* Result: CString
*       An empty string, always
****************************************************************************/

CString AnnotationEvent::display_result()
    {
     return CString(_T(""));
    }

/****************************************************************************
*                             AnnotationEvent::execute
* Result: LRESULT
*       0, always
* Effect: 
*       For an annotation, does nothing
****************************************************************************/

LRESULT AnnotationEvent::execute()
    {
     return 0;
    }

/****************************************************************************
*                             AnnotationEvent::display
* Result: CString
*       Display string for the event
* Effect: 
*       Creates a displayable string
****************************************************************************/

CString AnnotationEvent::display()
    {
     return text;
    }

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?