Skip to content

Commit

Permalink
Removed debug statements
Browse files Browse the repository at this point in the history
  • Loading branch information
maartenplieger committed Jun 28, 2023
1 parent cd8fc09 commit 16bd3df
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion CCDFDataModel/CCDFHDF5IO.h
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@ class CDFHDF5Reader : public CDFReader {
public:
~CustomForecastReader() {}
int readData(CDF::Variable *thisVar, size_t *start, size_t *count, ptrdiff_t *stride);
CT::string getName() { return "CustomForecastReader"; }
};

CDFHDF5Reader() : CDFReader() {
Expand Down
2 changes: 0 additions & 2 deletions CCDFDataModel/CCDFVariable.h
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ namespace CDF {
public:
virtual ~CustomReader() {}
virtual int readData(CDF::Variable *thisVar, size_t *start, size_t *count, ptrdiff_t *stride) = 0;
virtual CT::string getName() = 0;
};
class CustomMemoryReader : public CDF::Variable::CustomReader {
public:
Expand All @@ -81,7 +80,6 @@ namespace CDF {
// CDF::fill(thisVar->data, thisVar->getType(),12345,size);//Should be done by followup code.
return 0;
}
CT::string getName() { return "CustomMemoryReader"; }
};
static CustomMemoryReader *CustomMemoryReaderInstance;

Expand Down

0 comments on commit 16bd3df

Please sign in to comment.