Skip to content

Commit

Permalink
class Picture1024 started
Browse files Browse the repository at this point in the history
  • Loading branch information
fabioValdes9 committed Jul 3, 2024
1 parent 233457a commit 8501d06
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Algebras/Picture/PictureAlgebra.h
Original file line number Diff line number Diff line change
Expand Up @@ -567,5 +567,17 @@ this method does not compare any other attributes of the ~Picture~ class.
}
};

class Picture1024 : public Picture {
public:
Picture1024(std::string imgdataB64, std::string fn, std::string cat, bool isp,
std::string dt, bool autoPortrait = false);
Picture1024(char* imgdata, unsigned long size, std::string fn,
std::string cat, bool isp, std::string dt);

Picture1024(bool def) : Picture(def) {}
Picture1024() : Picture() {}

~Picture1024();
};

#endif // __PICTURE_ALGEBRA_H__

0 comments on commit 8501d06

Please sign in to comment.