document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. #ifndef COR_H
  2. #define COR_H
  3.  
  4.  
  5. class Cor
  6. {
  7.     public:
  8.         Cor(int R,  int G, int B, int A);
  9.         virtual ~Cor();
  10.  
  11.         void SetR(unsigned int val);
  12.         int GetR(void) const;
  13.  
  14.         void SetG(unsigned int val);
  15.          int GetG(void) const;
  16.  
  17.         void SetB(unsigned int val);
  18.          int GetB(void) const;
  19.  
  20.         void SetA(unsigned int val);
  21.         int GetA(void) const;
  22.  
  23.     protected:
  24.     private:
  25.           int m_R;
  26.           int m_G;
  27.           int m_B;
  28.           int m_A;
  29. };
  30.  
  31. #endif // COR_H
');