/*************************************************************************** Path.cpp - description ------------------- begin : Fri Jan 09 2002 copyright : (C) 2003 by Alexander Theel email : alex.theel@gmx.net ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #include "../global.h" #include "Path.h" #include QString Path::separator = "//"; // ------------------------------------------------------------------------------- Path::Path( IParent* pElement ) : mPathList() // ------------------------------------------------------------------------------- { while ( (NULLPTR != pElement) && ( INFORMATION_COLLECTION_DESC != pElement->getDescription()) ) { mPathList.prepend( pElement->getDescription() ); pElement = pElement->getParent(); } //std::cout<<"Path::Path() - "<