Andre Poenitz wrote:
On Sun, Dec 02, 2007 at 09:17:08AM +0100, Abdelrazak Younes wrote:
So I'd like to keep it out. Unfortunately, forward
declaration of vector is not as straightforward as e.g. for string and
ostream.
How is it that Qt manage to forward declare things like QFileInfoList?
It's
[nice explanation]
The easy way out is to create a class:
class FileNameList : public vector<FileName> {}
This is not just about dirList, I expect we would use this type for many
other methods.
So just use it ;-)
OK.
Thanks!
Abdel.