├── .gitignore ├── .vs └── LibrarySystem │ └── v16 │ └── .suo ├── LibrarySystem.cpp ├── LibrarySystem.sln ├── LibrarySystem.vcxproj ├── LibrarySystem.vcxproj.filters ├── LibrarySystem.vcxproj.user ├── README.md ├── addbook.cpp ├── addbook.h ├── adminLogin.cpp ├── adminLogin.h ├── book.txt ├── borrowbook.cpp ├── borrowbook.h ├── dataStructure.cpp ├── dataStructure.h ├── deleteBookData.cpp ├── deleteBookData.h ├── findbook.cpp ├── findbook.h ├── initialize.cpp ├── initialize.h ├── printBookData.cpp ├── printBookData.h ├── txtAntiParser.cpp ├── txtAntiParser.h ├── txtParser.cpp ├── txtParser.h ├── userLogin.cpp ├── userLogin.h ├── userSignUp.cpp ├── userSignUp.h ├── x64 ├── Debug │ ├── LibrarySystem.exe │ ├── LibrarySystem.ilk │ ├── LibrarySystem.log │ ├── LibrarySystem.pdb │ ├── LibrarySystem.tlog │ │ ├── CL.command.1.tlog │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── LibrarySystem.lastbuildstate │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ └── link.write.1.tlog │ ├── vc142.idb │ └── vc142.pdb └── Release │ ├── LibrarySystem.Build.CppClean.log │ ├── LibrarySystem.exe │ ├── LibrarySystem.iobj │ ├── LibrarySystem.ipdb │ ├── LibrarySystem.log │ ├── LibrarySystem.pdb │ ├── LibrarySystem.tlog │ ├── CL.command.1.tlog │ ├── CL.read.1.tlog │ ├── CL.write.1.tlog │ ├── LibrarySystem.lastbuildstate │ ├── LibrarySystem.write.1u.tlog │ ├── link.command.1.tlog │ ├── link.delete.1.tlog │ ├── link.read.1.tlog │ └── link.write.1.tlog │ ├── LibrarySystem.vcxproj.FileListAbsolute.txt │ └── vc142.pdb └── 图书管理系统主函数结构最新.docx /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.db 3 | *.opendb 4 | *.ipch 5 | *.obj 6 | *.filters 7 | -------------------------------------------------------------------------------- /.vs/LibrarySystem/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoo17/LibrarySystem/ad095cb8bc20a143b8170ed9eb4730fb72165a2c/.vs/LibrarySystem/v16/.suo -------------------------------------------------------------------------------- /LibrarySystem.cpp: -------------------------------------------------------------------------------- 1 |  2 | #include 3 | #include "addbook.h" 4 | #include "initialize.h" 5 | #include "borrowbook.h" 6 | #include "findbook.h" 7 | #include "printBookData.h" 8 | #include "deleteBookData.h" 9 | #include "adminLogin.h" 10 | #include "userLogin.h" 11 | #include 12 | using namespace std; 13 | 14 | void user(); 15 | void admin(); 16 | 17 | 18 | int main() 19 | { 20 | initializebook(); 21 | while (true) 22 | 23 | { 24 | 25 | cout << endl; 26 | cout << " " << "Welcome to Library Management System" << endl << endl; 27 | cout << "1.管理员登录" << endl; 28 | cout << "2.用户登陆" << endl; 29 | cout << "3.用户注册" << endl; 30 | cout << "4.管理员端功能(免登录版)" << endl; 31 | cout << "5.用户端功能(免登录版)" << endl; 32 | 33 | int userOrAdmin; 34 | cin >> userOrAdmin; 35 | 36 | 37 | 38 | switch (userOrAdmin) 39 | { 40 | case 1: 41 | { 42 | if(adminLogin()==true) 43 | admin(); 44 | break; 45 | } 46 | 47 | case 2: 48 | { 49 | if (userLogin() == true) 50 | user(); 51 | break; 52 | } 53 | case 3: 54 | { 55 | break; 56 | } 57 | case 4: 58 | { 59 | admin(); 60 | break; 61 | } 62 | case 5: 63 | { 64 | user(); 65 | break; 66 | } 67 | default: 68 | { 69 | break; 70 | } 71 | } 72 | } 73 | 74 | 75 | } 76 | 77 | void user() 78 | { 79 | bool exit = false; 80 | while (true) 81 | { 82 | std::cout << " 请输入功能的编号" << endl; 83 | std::cout << "1.借阅书籍 " << endl; 84 | std::cout << "2.查询书籍" << endl; 85 | std::cout << "3.退出用户登陆" << endl; 86 | int functionNumber; 87 | std::cin >> functionNumber; 88 | switch (functionNumber) 89 | { 90 | 91 | 92 | case 1: 93 | { 94 | 95 | borrowbook(); 96 | break; 97 | } 98 | case 2: 99 | { 100 | findbook(); 101 | break; 102 | } 103 | case 3: 104 | { 105 | exit = true; 106 | } 107 | if (exit == true) 108 | return; 109 | 110 | } 111 | 112 | 113 | } 114 | 115 | 116 | } 117 | void admin() 118 | { 119 | bool exit = false; 120 | while (true) 121 | { 122 | cout << " 请输入功能的编号" << endl; 123 | cout << "1.增加书籍" << endl; 124 | cout << "2.查询书籍" << endl; 125 | cout << "3.打印所有书籍信息" << endl; 126 | cout << "4.删除记录" << endl; 127 | cout << "5.退出登陆" << endl; 128 | int functionNumber; 129 | cin >> functionNumber; 130 | switch (functionNumber) 131 | { 132 | case 1: 133 | { 134 | addbook(); 135 | break; 136 | } 137 | 138 | case 2: 139 | { 140 | findbook(); 141 | break; 142 | } 143 | case 3: 144 | { 145 | printBookData(); 146 | break; 147 | } 148 | case 4: 149 | { 150 | deleteBookData(); 151 | break; 152 | } 153 | case 5: 154 | { 155 | exit = true; 156 | } 157 | default: 158 | { 159 | break; 160 | } 161 | 162 | } 163 | if (exit == true) 164 | return; 165 | } 166 | 167 | } 168 | -------------------------------------------------------------------------------- /LibrarySystem.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.29613.14 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "LibrarySystem", "LibrarySystem.vcxproj", "{8C690923-7113-4724-8013-6DFC934BC618}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|x64 = Debug|x64 11 | Debug|x86 = Debug|x86 12 | Release|x64 = Release|x64 13 | Release|x86 = Release|x86 14 | EndGlobalSection 15 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 16 | {8C690923-7113-4724-8013-6DFC934BC618}.Debug|x64.ActiveCfg = Debug|x64 17 | {8C690923-7113-4724-8013-6DFC934BC618}.Debug|x64.Build.0 = Debug|x64 18 | {8C690923-7113-4724-8013-6DFC934BC618}.Debug|x86.ActiveCfg = Debug|Win32 19 | {8C690923-7113-4724-8013-6DFC934BC618}.Debug|x86.Build.0 = Debug|Win32 20 | {8C690923-7113-4724-8013-6DFC934BC618}.Release|x64.ActiveCfg = Release|x64 21 | {8C690923-7113-4724-8013-6DFC934BC618}.Release|x64.Build.0 = Release|x64 22 | {8C690923-7113-4724-8013-6DFC934BC618}.Release|x86.ActiveCfg = Release|Win32 23 | {8C690923-7113-4724-8013-6DFC934BC618}.Release|x86.Build.0 = Release|Win32 24 | EndGlobalSection 25 | GlobalSection(SolutionProperties) = preSolution 26 | HideSolutionNode = FALSE 27 | EndGlobalSection 28 | GlobalSection(ExtensibilityGlobals) = postSolution 29 | SolutionGuid = {D9A21D6F-FD73-4C5B-86E6-2B1F1FF23533} 30 | EndGlobalSection 31 | EndGlobal 32 | -------------------------------------------------------------------------------- /LibrarySystem.vcxproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Debug 6 | Win32 7 | 8 | 9 | Release 10 | Win32 11 | 12 | 13 | Debug 14 | x64 15 | 16 | 17 | Release 18 | x64 19 | 20 | 21 | 22 | 16.0 23 | {8C690923-7113-4724-8013-6DFC934BC618} 24 | Win32Proj 25 | LibrarySystem 26 | 10.0 27 | 28 | 29 | 30 | Application 31 | true 32 | v142 33 | Unicode 34 | 35 | 36 | Application 37 | false 38 | v142 39 | true 40 | Unicode 41 | 42 | 43 | Application 44 | true 45 | v142 46 | Unicode 47 | 48 | 49 | Application 50 | false 51 | v142 52 | true 53 | Unicode 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | true 75 | 76 | 77 | true 78 | 79 | 80 | false 81 | 82 | 83 | false 84 | 85 | 86 | 87 | 88 | 89 | Level3 90 | true 91 | WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) 92 | true 93 | 94 | 95 | Console 96 | true 97 | 98 | 99 | 100 | 101 | 102 | 103 | Level3 104 | true 105 | _DEBUG;_CONSOLE;%(PreprocessorDefinitions) 106 | true 107 | 108 | 109 | Console 110 | true 111 | 112 | 113 | 114 | 115 | 116 | 117 | Level3 118 | true 119 | true 120 | true 121 | WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) 122 | true 123 | 124 | 125 | Console 126 | true 127 | true 128 | true 129 | 130 | 131 | 132 | 133 | 134 | 135 | Level3 136 | true 137 | true 138 | true 139 | NDEBUG;_CONSOLE;%(PreprocessorDefinitions) 140 | true 141 | 142 | 143 | Console 144 | true 145 | true 146 | true 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | -------------------------------------------------------------------------------- /LibrarySystem.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | {93995380-89BD-4b04-88EB-625FBE52EBFB} 10 | h;hh;hpp;hxx;hm;inl;inc;ipp;xsd 11 | 12 | 13 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 14 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms 15 | 16 | 17 | 18 | 19 | 源文件 20 | 21 | 22 | 源文件 23 | 24 | 25 | 源文件 26 | 27 | 28 | 源文件 29 | 30 | 31 | 源文件 32 | 33 | 34 | 源文件 35 | 36 | 37 | 源文件 38 | 39 | 40 | 源文件 41 | 42 | 43 | 源文件 44 | 45 | 46 | 源文件 47 | 48 | 49 | 源文件 50 | 51 | 52 | 源文件 53 | 54 | 55 | 源文件 56 | 57 | 58 | 59 | 60 | 头文件 61 | 62 | 63 | 头文件 64 | 65 | 66 | 头文件 67 | 68 | 69 | 头文件 70 | 71 | 72 | 头文件 73 | 74 | 75 | 头文件 76 | 77 | 78 | 头文件 79 | 80 | 81 | 头文件 82 | 83 | 84 | 头文件 85 | 86 | 87 | 头文件 88 | 89 | 90 | 头文件 91 | 92 | 93 | 头文件 94 | 95 | 96 | -------------------------------------------------------------------------------- /LibrarySystem.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # LibrarySystem 图书馆管理系统 2 | 一个用·C++实现的图书馆管理系统,实现管理员端和用户端的注册,登录功能,书籍的增加,删除,借阅管理等功能,并用txt保存数据 3 | 4 | 5 | 由于路径用的都是绝对路径,你可以选择 建一个这样的目录 C:\Users\DELL\source\repos\LibrarySystem 6 | 然后把文件都拷贝进该目录中 7 | #2020/2/5 更新 8 | 现在路径用的都是相对路径 ,不需要建上面那个目录了 9 | ### 调试方法 10 | 1.先把文件都下载下来 11 | 2.**用vs打开sln文件** 12 | 3.直接运行 13 | 14 | 15 | 16 | ### 备用的运行方法 17 | 1.打开Visual Studio,新建一个空项目 18 | 19 | 2在创建新项目时,**记住该项目的地址**,例如我的默认地址是 C:\Users\DELL\source\repos 20 | 21 | 3.把所有.cpp 和.h 文件都拷贝到 刚才的那个地址下 比如C:\Users\DELL\source\repos下面 22 | 23 | 4.然后在空项目中 把所有的.cpp文件都添加到源文件中 把所有的.h文件都添加到头文件中 24 | 25 | 5.然后编译运行(管理员密码是123) 26 | 27 | ### 备用的方法 28 | 直接在本页面右上角clone 29 | 可以创建一个本地的git仓库 30 | 31 | -------------------------------------------------------------------------------- /addbook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoo17/LibrarySystem/ad095cb8bc20a143b8170ed9eb4730fb72165a2c/addbook.cpp -------------------------------------------------------------------------------- /addbook.h: -------------------------------------------------------------------------------- 1 | #ifndef ADDBOOK_H 2 | #define ADDBOOK_H 3 | 4 | #include"dataStructure.h" 5 | 6 | 7 | #include 8 | #include 9 | 10 | 11 | using namespace std; 12 | void addbook(); 13 | void writeBookData(bookDataStruct obj); 14 | 15 | #endif // !ADDBOOK_H 16 | 17 | -------------------------------------------------------------------------------- /adminLogin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoo17/LibrarySystem/ad095cb8bc20a143b8170ed9eb4730fb72165a2c/adminLogin.cpp -------------------------------------------------------------------------------- /adminLogin.h: -------------------------------------------------------------------------------- 1 | #ifndef ADMINLOGIN_H 2 | #define ADMINLOGIN_H 3 | 4 | #include 5 | #include 6 | using namespace std; 7 | bool adminLogin(); 8 | 9 | 10 | #endif // !ADMINLOGIN_H 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /book.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoo17/LibrarySystem/ad095cb8bc20a143b8170ed9eb4730fb72165a2c/book.txt -------------------------------------------------------------------------------- /borrowbook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoo17/LibrarySystem/ad095cb8bc20a143b8170ed9eb4730fb72165a2c/borrowbook.cpp -------------------------------------------------------------------------------- /borrowbook.h: -------------------------------------------------------------------------------- 1 | #ifndef BORROWBOOK_H 2 | #define BORROWBOOK_H 3 | 4 | 5 | 6 | #include "txtParser.h" 7 | #include "txtAntiParser.h" 8 | #include 9 | #include 10 | #include 11 | using namespace std; 12 | bool borrowbook(); 13 | 14 | 15 | 16 | #endif // !BORROWBOOK_H 17 | 18 | 19 | -------------------------------------------------------------------------------- /dataStructure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoo17/LibrarySystem/ad095cb8bc20a143b8170ed9eb4730fb72165a2c/dataStructure.cpp -------------------------------------------------------------------------------- /dataStructure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoo17/LibrarySystem/ad095cb8bc20a143b8170ed9eb4730fb72165a2c/dataStructure.h -------------------------------------------------------------------------------- /deleteBookData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoo17/LibrarySystem/ad095cb8bc20a143b8170ed9eb4730fb72165a2c/deleteBookData.cpp -------------------------------------------------------------------------------- /deleteBookData.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef DELETEBOOKDATA_H 3 | #define DELETEBOOKDATA_H 4 | 5 | #include "txtParser.h" 6 | #include "txtAntiParser.h" 7 | #include 8 | #include 9 | #include 10 | using namespace std; 11 | void deleteBookData(); 12 | 13 | 14 | #endif // !DELETEBOOKDATA_H 15 | 16 | -------------------------------------------------------------------------------- /findbook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoo17/LibrarySystem/ad095cb8bc20a143b8170ed9eb4730fb72165a2c/findbook.cpp -------------------------------------------------------------------------------- /findbook.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef FINDBOOK_H 3 | #define FINDBOOK_H 4 | 5 | #include "txtParser.h" 6 | #include 7 | #include 8 | #include 9 | using namespace std; 10 | bool findbook(); 11 | 12 | #endif // !FINDBOOK_H 13 | 14 | -------------------------------------------------------------------------------- /initialize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoo17/LibrarySystem/ad095cb8bc20a143b8170ed9eb4730fb72165a2c/initialize.cpp -------------------------------------------------------------------------------- /initialize.h: -------------------------------------------------------------------------------- 1 | #ifndef INITIALIZE_H 2 | #define INITIALIZE_H 3 | 4 | #include 5 | 6 | void initializebook(); 7 | #endif // !INITIALIZE_H 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /printBookData.cpp: -------------------------------------------------------------------------------- 1 | 2 | #include "printBookData.h" 3 | 4 | 5 | void printBookData() 6 | { 7 | fstream file("book.txt"); 8 | vector bookData = txtParser(file); 9 | int i = 1; 10 | for (auto x : bookData) 11 | { 12 | cout << i << "."; 13 | printObj(x); 14 | i++; 15 | } 16 | } -------------------------------------------------------------------------------- /printBookData.h: -------------------------------------------------------------------------------- 1 | #ifndef PRINTBOOKDATA_H 2 | #define PRINTBOOKDATA_H 3 | 4 | #include "txtParser.h" 5 | #include 6 | #include 7 | #include"dataStructure.h" 8 | using namespace std; 9 | void printBookData(); 10 | 11 | 12 | #endif // !PRINTBOOKDATA_H 13 | 14 | -------------------------------------------------------------------------------- /txtAntiParser.cpp: -------------------------------------------------------------------------------- 1 | #include"txtAntiParser.h" 2 | void txtAntiParser(vector bookVector) 3 | { 4 | fstream fileBeRead("book.txt",ios::out); 5 | for (auto x : bookVector) 6 | { 7 | fileBeRead << x.getBookName() << "#" << x.getBookID() << "#" << x.getBookNumber() << endl; 8 | } 9 | fileBeRead.close(); 10 | } -------------------------------------------------------------------------------- /txtAntiParser.h: -------------------------------------------------------------------------------- 1 | #ifndef TXTANTIPARSER 2 | #define TXTANTIPARSER 3 | 4 | 5 | #include 6 | #include 7 | #include"dataStructure.h" 8 | #include 9 | #include 10 | using namespace std; 11 | void txtAntiParser(vector); 12 | #endif // !TXTANTIPARSER 13 | -------------------------------------------------------------------------------- /txtParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoo17/LibrarySystem/ad095cb8bc20a143b8170ed9eb4730fb72165a2c/txtParser.cpp -------------------------------------------------------------------------------- /txtParser.h: -------------------------------------------------------------------------------- 1 | #ifndef TXTPARSER_H 2 | #define TXTPARSER_H 3 | 4 | 5 | 6 | #include 7 | #include 8 | #include 9 | #include 10 | #include"dataStructure.h" 11 | using namespace std; 12 | vector txtParser(fstream& file); 13 | 14 | 15 | 16 | 17 | 18 | #endif // !TXTPARSER_H 19 | 20 | 21 | -------------------------------------------------------------------------------- /userLogin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoo17/LibrarySystem/ad095cb8bc20a143b8170ed9eb4730fb72165a2c/userLogin.cpp -------------------------------------------------------------------------------- /userLogin.h: -------------------------------------------------------------------------------- 1 | #ifndef USERLOGIN_H 2 | #define USERLOGIN_H 3 | 4 | #include 5 | #include 6 | using namespace std; 7 | bool userLogin(); 8 | 9 | 10 | #endif // !USERLOGIN 11 | 12 | -------------------------------------------------------------------------------- /userSignUp.cpp: -------------------------------------------------------------------------------- 1 | #include "userSignUp.h" 2 | void userSignUp() 3 | { 4 | fstream file("userData.txt",ios::binary); 5 | char c[]= "yanhao"; 6 | char d[]= "12345678"; 7 | char* a = c; 8 | char* b = d; 9 | userDataStruct da(1, 36078222222, a,b); 10 | return; 11 | 12 | } -------------------------------------------------------------------------------- /userSignUp.h: -------------------------------------------------------------------------------- 1 | #ifndef USERSIGNUP_H 2 | #define USERSIGNUP_H 3 | 4 | 5 | #include 6 | #include 7 | #include "dataStructure.h" 8 | using namespace std; 9 | void userSignUp(); 10 | 11 | 12 | 13 | #endif // !USERSIGNUP_H 14 | 15 | 16 | -------------------------------------------------------------------------------- /x64/Debug/LibrarySystem.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoo17/LibrarySystem/ad095cb8bc20a143b8170ed9eb4730fb72165a2c/x64/Debug/LibrarySystem.exe -------------------------------------------------------------------------------- /x64/Debug/LibrarySystem.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoo17/LibrarySystem/ad095cb8bc20a143b8170ed9eb4730fb72165a2c/x64/Debug/LibrarySystem.ilk -------------------------------------------------------------------------------- /x64/Debug/LibrarySystem.log: -------------------------------------------------------------------------------- 1 |  LibrarySystem.cpp 2 | UserSignUp.cpp 3 | 正在生成代码... 4 | LibrarySystem.vcxproj -> C:\Users\DELL\Desktop\gitLB\LibrarySystem\x64\Debug\LibrarySystem.exe 5 | -------------------------------------------------------------------------------- /x64/Debug/LibrarySystem.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoo17/LibrarySystem/ad095cb8bc20a143b8170ed9eb4730fb72165a2c/x64/Debug/LibrarySystem.pdb -------------------------------------------------------------------------------- /x64/Debug/LibrarySystem.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoo17/LibrarySystem/ad095cb8bc20a143b8170ed9eb4730fb72165a2c/x64/Debug/LibrarySystem.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /x64/Debug/LibrarySystem.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoo17/LibrarySystem/ad095cb8bc20a143b8170ed9eb4730fb72165a2c/x64/Debug/LibrarySystem.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /x64/Debug/LibrarySystem.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoo17/LibrarySystem/ad095cb8bc20a143b8170ed9eb4730fb72165a2c/x64/Debug/LibrarySystem.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /x64/Debug/LibrarySystem.tlog/LibrarySystem.lastbuildstate: -------------------------------------------------------------------------------- 1 | #TargetFrameworkVersion=v4.0:PlatformToolSet=v142:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit:WindowsTargetPlatformVersion=10.0 2 | Debug|x64|C:\Users\DELL\Desktop\gitLB\LibrarySystem\| 3 | -------------------------------------------------------------------------------- /x64/Debug/LibrarySystem.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoo17/LibrarySystem/ad095cb8bc20a143b8170ed9eb4730fb72165a2c/x64/Debug/LibrarySystem.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /x64/Debug/LibrarySystem.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoo17/LibrarySystem/ad095cb8bc20a143b8170ed9eb4730fb72165a2c/x64/Debug/LibrarySystem.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /x64/Debug/LibrarySystem.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoo17/LibrarySystem/ad095cb8bc20a143b8170ed9eb4730fb72165a2c/x64/Debug/LibrarySystem.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /x64/Debug/vc142.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoo17/LibrarySystem/ad095cb8bc20a143b8170ed9eb4730fb72165a2c/x64/Debug/vc142.idb -------------------------------------------------------------------------------- /x64/Debug/vc142.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoo17/LibrarySystem/ad095cb8bc20a143b8170ed9eb4730fb72165a2c/x64/Debug/vc142.pdb -------------------------------------------------------------------------------- /x64/Release/LibrarySystem.Build.CppClean.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoo17/LibrarySystem/ad095cb8bc20a143b8170ed9eb4730fb72165a2c/x64/Release/LibrarySystem.Build.CppClean.log -------------------------------------------------------------------------------- /x64/Release/LibrarySystem.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoo17/LibrarySystem/ad095cb8bc20a143b8170ed9eb4730fb72165a2c/x64/Release/LibrarySystem.exe -------------------------------------------------------------------------------- /x64/Release/LibrarySystem.iobj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoo17/LibrarySystem/ad095cb8bc20a143b8170ed9eb4730fb72165a2c/x64/Release/LibrarySystem.iobj -------------------------------------------------------------------------------- /x64/Release/LibrarySystem.ipdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoo17/LibrarySystem/ad095cb8bc20a143b8170ed9eb4730fb72165a2c/x64/Release/LibrarySystem.ipdb -------------------------------------------------------------------------------- /x64/Release/LibrarySystem.log: -------------------------------------------------------------------------------- 1 |  borrowbook.cpp 2 | deleteBookData.cpp 3 | LibrarySystem.cpp 4 | txtAntiParser.cpp 5 | 正在生成代码 6 | 0 of 304 functions ( 0.0%) were compiled, the rest were copied from previous compilation. 7 | 0 functions were new in current compilation 8 | 0 functions had inline decision re-evaluated but remain unchanged 9 | 已完成代码的生成 10 | LibrarySystem.vcxproj -> C:\Users\DELL\Desktop\gitLB\LibrarySystem\x64\Release\LibrarySystem.exe 11 | -------------------------------------------------------------------------------- /x64/Release/LibrarySystem.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoo17/LibrarySystem/ad095cb8bc20a143b8170ed9eb4730fb72165a2c/x64/Release/LibrarySystem.pdb -------------------------------------------------------------------------------- /x64/Release/LibrarySystem.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoo17/LibrarySystem/ad095cb8bc20a143b8170ed9eb4730fb72165a2c/x64/Release/LibrarySystem.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /x64/Release/LibrarySystem.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoo17/LibrarySystem/ad095cb8bc20a143b8170ed9eb4730fb72165a2c/x64/Release/LibrarySystem.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /x64/Release/LibrarySystem.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoo17/LibrarySystem/ad095cb8bc20a143b8170ed9eb4730fb72165a2c/x64/Release/LibrarySystem.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /x64/Release/LibrarySystem.tlog/LibrarySystem.lastbuildstate: -------------------------------------------------------------------------------- 1 | #TargetFrameworkVersion=v4.0:PlatformToolSet=v142:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit:WindowsTargetPlatformVersion=10.0 2 | Release|x64|C:\Users\DELL\Desktop\gitLB\LibrarySystem\| 3 | -------------------------------------------------------------------------------- /x64/Release/LibrarySystem.tlog/LibrarySystem.write.1u.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoo17/LibrarySystem/ad095cb8bc20a143b8170ed9eb4730fb72165a2c/x64/Release/LibrarySystem.tlog/LibrarySystem.write.1u.tlog -------------------------------------------------------------------------------- /x64/Release/LibrarySystem.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoo17/LibrarySystem/ad095cb8bc20a143b8170ed9eb4730fb72165a2c/x64/Release/LibrarySystem.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /x64/Release/LibrarySystem.tlog/link.delete.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoo17/LibrarySystem/ad095cb8bc20a143b8170ed9eb4730fb72165a2c/x64/Release/LibrarySystem.tlog/link.delete.1.tlog -------------------------------------------------------------------------------- /x64/Release/LibrarySystem.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoo17/LibrarySystem/ad095cb8bc20a143b8170ed9eb4730fb72165a2c/x64/Release/LibrarySystem.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /x64/Release/LibrarySystem.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoo17/LibrarySystem/ad095cb8bc20a143b8170ed9eb4730fb72165a2c/x64/Release/LibrarySystem.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /x64/Release/LibrarySystem.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoo17/LibrarySystem/ad095cb8bc20a143b8170ed9eb4730fb72165a2c/x64/Release/LibrarySystem.vcxproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /x64/Release/vc142.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoo17/LibrarySystem/ad095cb8bc20a143b8170ed9eb4730fb72165a2c/x64/Release/vc142.pdb -------------------------------------------------------------------------------- /图书管理系统主函数结构最新.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoo17/LibrarySystem/ad095cb8bc20a143b8170ed9eb4730fb72165a2c/图书管理系统主函数结构最新.docx --------------------------------------------------------------------------------