summaryrefslogtreecommitdiff
path: root/core/fpdfapi/page/cpdf_color.h
diff options
context:
space:
mode:
Diffstat (limited to 'core/fpdfapi/page/cpdf_color.h')
-rw-r--r--core/fpdfapi/page/cpdf_color.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/fpdfapi/page/cpdf_color.h b/core/fpdfapi/page/cpdf_color.h
index 3448c152e2..084cc28f95 100644
--- a/core/fpdfapi/page/cpdf_color.h
+++ b/core/fpdfapi/page/cpdf_color.h
@@ -17,18 +17,18 @@ class CPDF_Pattern;
class CPDF_Color {
public:
CPDF_Color();
+ CPDF_Color(const CPDF_Color& that);
+
~CPDF_Color();
+ CPDF_Color& operator=(const CPDF_Color& that);
+
bool IsNull() const { return !m_pBuffer; }
bool IsPattern() const;
-
- void Copy(const CPDF_Color& src);
-
void SetColorSpace(CPDF_ColorSpace* pCS);
void SetValueForNonPattern(const std::vector<float>& values);
void SetValueForPattern(CPDF_Pattern* pPattern,
const std::vector<float>& values);
-
uint32_t CountComponents() const;
bool IsColorSpaceRGB() const;
bool GetRGB(int* R, int* G, int* B) const;