Main Page | Namespace List | Class Hierarchy | Alphabetical List | Class List | Directories | File List | Namespace Members | Class Members | File Members | Related Pages

dirlister.cpp

Go to the documentation of this file.
00001 #include "dirlister.h"
00002 
00003 #include <qdir.h>
00004 
00005 PDirLister::PDirLister( const char* name )
00006     : QObject( 0, name )
00007 {}
00008 
00009 PDirLister::~PDirLister()
00010 {}
00011 
00017 QString PDirLister::dirUp( const QString& path )const {
00018     QDir dir( path );
00019     dir.cdUp();
00020 
00021     return dir.absPath();
00022 }

Generated on Sat Nov 5 16:17:30 2005 for OPIE by  doxygen 1.4.2