OSDN Git Service

refactor
[winmerge-jp/winmerge-jp.git] / Src / MergeEditStatus.h
1 /** 
2  * @file  MergeEditStatus.h
3  *
4  * @brief Interface for merge edit view to display status bar info
5  *
6  */
7 #pragma once
8
9 /**
10  * @brief Interface for merge edit view to display status bar info
11  */
12 class IMergeEditStatus
13 {
14 public:
15         virtual void SetLineInfo(const tchar_t* szLine, int nChar, int nChars, int nColumn,
16                 int nColumns, int nSelectedLines, int nSelectedChars, const tchar_t* szEol, int nCodepage, bool bHasBom) = 0;
17 };