www.pudn.com > backmode824.rar > Rgb.h


// Rgb.h: interface for the CRgb class. 
// 
////////////////////////////////////////////////////////////////////// 
 
#if !defined(AFX_RGB_H__4806A984_906E_4ECC_A5F9_686197E81C73__INCLUDED_) 
#define AFX_RGB_H__4806A984_906E_4ECC_A5F9_686197E81C73__INCLUDED_ 
 
#if _MSC_VER > 1000 
#pragma once 
#endif // _MSC_VER > 1000 
 
class CRgb   
{ 
public: 
	CRgb(); 
	CRgb(int r,int g,int b); 
 
	setRgb(int r,int g,int b); 
	virtual ~CRgb(); 
 
public: 
	int m_iR; 
	int m_iG; 
	int m_iB; 
 
}; 
 
#endif // !defined(AFX_RGB_H__4806A984_906E_4ECC_A5F9_686197E81C73__INCLUDED_)