WindowsXP/net/wlbs/nlbmgr/exe/righttopview.h
2025-04-27 07:49:33 -04:00

29 lines
454 B
C++

#ifndef RIGHTTOPVIEW_H
#define RIGHTTOPVIEW_H
#include "stdafx.h"
#include "Document.h"
class RightTopView : public CListView
{
DECLARE_DYNCREATE( RightTopView )
public:
virtual void OnInitialUpdate();
protected:
Document* GetDocument();
afx_msg void OnColumnClick( NMHDR* pNMHDR, LRESULT* pResult );
private:
bool m_sort_ascending;
int m_sort_column;
DECLARE_MESSAGE_MAP()
};
#endif