USGS

Isis 3.0 Object Programmers' Reference

Home

Color.h
1 #ifndef Color_H
2 #define Color_H
3 
4 class QColor;
5 class QRegExp;
6 class QString;
7 
8 namespace Isis {
19  class Color {
20  public:
21  static QColor fromRGBAString(QString);
22  static QString toRGBAString(QColor);
23  static QRegExp colorRGBAFormat();
24 
25  private:
26  Color();
27  Color(const Color &);
28  ~Color();
29  Color &operator=(const Color &);
30  };
31 }
32 
33 #endif