Ignore:
Timestamp:
09/03/19 15:42:07 (5 years ago)
Author:
Sanahuja Guillaume
Message:

using pimpl

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/sanscv/lib/FlairCore/src/Image.cpp

    r324 r326  
    2929    : io_data(parent, name, n), dataType(width, height, format) {
    3030  this->allocate_data = allocate_data;
    31 Printf("Image %s\n",ObjectName().c_str());
     31
    3232  if (allocate_data) {
    3333    switch (format) {
     
    7373
    7474char* Image::DefaultAllocFunction(ssize_t size){
    75   Printf("default alloc %i\n",size);
    7675  return (char*)malloc(size);
    7776}
    7877
    7978void Image::DefaultFreeFunction(char* buffer){
    80   Printf("default free\n");
    8179  free(buffer);
    8280}
Note: See TracChangeset for help on using the changeset viewer.