浏览代码

Treating the database as external file instead of as resource

父节点
当前提交
84e620dd7b
共有 3 个文件被更改,包括 3 次插入8 次删除
  1. 2
    2
      DVDInfo.pro
  2. 0
    5
      database.qrc
  3. 1
    1
      main.cpp

+ 2
- 2
DVDInfo.pro 查看文件

@@ -23,5 +23,5 @@ HEADERS += \
23 23
     filemanip.h \
24 24
     movie.h
25 25
 
26
-RESOURCES += \
27
-    database.qrc
26
+#RESOURCES += \
27
+#    database.qrc

+ 0
- 5
database.qrc 查看文件

@@ -1,5 +0,0 @@
1
-<!DOCTYPE RCC><RCC version="1.0">
2
-<qresource>
3
-    <file>dvd_csv.txt</file>
4
-</qresource>
5
-</RCC>

+ 1
- 1
main.cpp 查看文件

@@ -11,7 +11,7 @@ using namespace std ;
11 11
 int main(int argc, char *argv[])
12 12
 {
13 13
     QCoreApplication a(argc, argv);
14
-    filemanip file(":/dvd_csv.txt") ;
14
+    filemanip file("dvd_csv.txt") ;
15 15
     string rating, year, genre, name, studio ;
16 16
     string movieinfo ;
17 17