]> icculus.org git repositories - taylor/freespace2.git/blob - include/helpedline.h
Initial revision
[taylor/freespace2.git] / include / helpedline.h
1 // HelpEdLine.h: interface for the HelpEdLine class.
2 //
3 //////////////////////////////////////////////////////////////////////
4
5 #if !defined(AFX_HELPEDLINE_H__159085D7_C1B5_11D2_9904_00A0CC39C0BE__INCLUDED_)
6 #define AFX_HELPEDLINE_H__159085D7_C1B5_11D2_9904_00A0CC39C0BE__INCLUDED_
7
8 #if _MSC_VER > 1000
9 #pragma once
10 #endif // _MSC_VER > 1000
11
12 class HelpEdLine : public CObject  
13 {
14 public:
15         void Draw(CDC *pDC);
16         HelpEdLine(CPoint point_from, CPoint point_to);
17         HelpEdLine();
18         virtual ~HelpEdLine();
19
20 private:
21         CPoint line_end;
22         CPoint line_start;
23 };
24
25 #endif // !defined(AFX_HELPEDLINE_H__159085D7_C1B5_11D2_9904_00A0CC39C0BE__INCLUDED_)
26