You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
307 B
C++
13 lines
307 B
C++
#pragma once
|
|
#include "sectionbase.h"
|
|
|
|
class AFX_EXT_CLASS CProcessSection :
|
|
public CSectionBase
|
|
{
|
|
public:
|
|
CProcessSection(void);
|
|
~CProcessSection(void);
|
|
void Draw(CDC *pDC, CScreenXY& sr,void *pColor);
|
|
void Draw(CDC *pDC,double x0, double y0,double dx, double dy,int step,void *pColor,int IsDF=0);
|
|
};
|