Changeset 81 for cpp/gdk/stdouterr.h


Ignore:
Timestamp:
02/08/13 03:29:17 (11 years ago)
Author:
Maciej Komosinski
Message:

improved parsing of properties (e.g. in f0 genotypes)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cpp/gdk/stdouterr.h

    r66 r81  
    77
    88#include "errmanager.h"
     9#include "virtfile.h"
    910
    1011class StdoutErrorHandler: public ErrorHandlerBase
    1112{
     13VirtFILE *file;
    1214  public:
    13 StdoutErrorHandler(int opts=DontBlock):ErrorHandlerBase(opts) {}
     15StdoutErrorHandler(int opts=DontBlock,VirtFILE *_file=NULL):ErrorHandlerBase(opts),file(_file) {}
    1416void handle(const char *o,const char *m,const char *bl,int w);
    1517};
Note: See TracChangeset for help on using the changeset viewer.