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.
|
|
|
|
#pragma once
|
|
|
|
|
#include "LabVecRang.h"
|
|
|
|
|
|
|
|
|
|
//<2F>ʲ<EFBFBD><CAB2><EFBFBD>
|
|
|
|
|
class CPenPar
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
CPenPar(void);
|
|
|
|
|
~CPenPar(void);
|
|
|
|
|
CPenPar operator=(CPenPar rls);
|
|
|
|
|
void WriteWorkFile(vector<CLab> &LabVec);
|
|
|
|
|
void ReadWorkFile(CLabVecRang &LabVecRang);
|
|
|
|
|
COLORREF GetColor(){return m_color;};
|
|
|
|
|
void SetColor(COLORREF c){m_color = c;};
|
|
|
|
|
void Serialize(CArchive &ar);
|
|
|
|
|
double GetParByIdx(int idx);
|
|
|
|
|
void SetParByIdx(int idx,double val);
|
|
|
|
|
double &GetParReference(int idx){return m_ParVec[idx];};
|
|
|
|
|
private:
|
|
|
|
|
void CreatParVec();
|
|
|
|
|
public:
|
|
|
|
|
COLORREF m_color;//<2F>ʵ<EFBFBD><CAB5><EFBFBD>ɫ
|
|
|
|
|
bool m_bSelected;//<2F>Ƿ<EFBFBD><C7B7><EFBFBD>ѡ<EFBFBD><D1A1>
|
|
|
|
|
vector<double> m_ParVec;//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
};
|
|
|
|
|
|