File indexing completed on 2024-05-26 04:43:02

0001 #include <util/path.h>
0002 
0003 #include <QDebug>
0004 
0005 using namespace KDevelop;
0006 
0007 int main()
0008 {
0009     Path path1(QStringLiteral("/tmp/foo"));
0010     Path path2(QStringLiteral("http://www.test.com/tmp/asdf.txt"));
0011 
0012     return 0;
0013 }