Skip to content

Commit

Permalink
[#3] Updated RawJPEG class
Browse files Browse the repository at this point in the history
  • Loading branch information
Clovel committed Jun 10, 2019
1 parent d9039c2 commit 12189b5
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 11 deletions.
8 changes: 0 additions & 8 deletions src/RawJPEG.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,7 @@ std::string RawJPEG::rawData(void) const {
return mRawData;
}

bool RawJPEG::isComplete(void) const {
return mComplete;
}

/* Setters */
void RawJPEG::setRawData(const std::string &pStr) {
mRawData = pStr;
}

void RawJPEG::setCompleted(const bool &pComplete) {
mComplete = pComplete;
}
3 changes: 0 additions & 3 deletions src/RawJPEG.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,12 @@ class RawJPEG {

/* Getters */
std::string rawData(void) const;
bool isComplete(void) const;

/* Setters */
void setRawData(const std::string &pStr);
void setCompleted(const bool &pStr);

private:
std::string mRawData;
bool mComplete;
};

std::ostream &operator<<(std::ostream &pOs, const RawJPEG &pRawJPEG);
Expand Down

0 comments on commit 12189b5

Please sign in to comment.