locate.cpp
Go to the documentation of this file.00001 // 00002 // 00003 // C++ Implementation for module: Locate 00004 // 00005 // Description: 00006 // 00007 // 00008 // Author: Eray Ozkural (exa) <erayo@cs.bilkent.edu.tr> 00009 // 00010 // Copyright: See COPYING file that comes with this distribution 00011 // 00012 // 00013 00014 #include "locate.h" 00015 00016 #include <qdir.h> 00017 00018 Locate::Locate(KDevPlugin& _part) 00019 : part(_part) 00020 { 00021 } 00022 00023 QString Locate::relativeName(const QString file) 00024 { 00025 // file is a URL 00026 QDir dir(file); 00027 return QString::null; 00028 } 00029 00030 QString Locate::source(const QString /*file*/) 00031 { 00032 return QString::null; 00033 } 00034