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.
|
|
|
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
//<2F>ļ<EFBFBD> Station.h
|
|
|
|
|
|
//<2F><>Ҫ<EFBFBD><D2AA><EFBFBD><EFBFBD>:
|
|
|
|
|
|
//
|
|
|
|
|
|
//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>д: 2005-12-07
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
#include "insertdraw.h"
|
|
|
|
|
|
|
|
|
|
|
|
namespace NTV
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class CStation : public CInsertDraw
|
|
|
|
|
|
{
|
|
|
|
|
|
public:
|
|
|
|
|
|
CStation(void);
|
|
|
|
|
|
virtual ~CStation(void);
|
|
|
|
|
|
|
|
|
|
|
|
virtual void Write(CFile& fw, const short &ver);
|
|
|
|
|
|
virtual void Clear(void);
|
|
|
|
|
|
|
|
|
|
|
|
POSITION AddElement(void *pElement,int m_type);
|
|
|
|
|
|
void operator=(CStation& st);
|
|
|
|
|
|
void SetDataMode(int xMode, int yMode);
|
|
|
|
|
|
DWORD GetStyle(void);
|
|
|
|
|
|
void SetStyle(DWORD style);
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}//namespace
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
using namespace NTV;
|
|
|
|
|
|
|