code like this:

Qt Code:
  1. Paser::Paser(QObject *parent)
To copy to clipboard, switch view to plain text mode 

Qt Code:
  1. QXmlInputSource inputSource(&file);
  2. Paser *handler;
  3. reader.setContentHandler(handler);
  4. reader.setErrorHandler(handler);
  5. bool xx;
  6. xx = reader.parse(inputSource);
To copy to clipboard, switch view to plain text mode 

I trace the steps when debugging, seems that the program never enter the "paser.cpp" file, what does that mean?