Skip to content

Commit acaedb3

Browse files
committed
hafuman
1 parent bff601e commit acaedb3

File tree

6 files changed

+541
-20
lines changed

6 files changed

+541
-20
lines changed

CMakeLists.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@ project(zip)
44
set(CMAKE_CXX_STANDARD 14)
55

66
SET(CMAKE_RUNTIME_OUTPUT_DIRECTORY ../bin)
7-
add_executable(server server_test.cpp src/Client.cpp src/Client.h src/Socket.cpp src/Socket.h src/com.h src/Server.cpp src/Server.h src/LZ77.h src/Base_Text_Process.h src/Factory.cpp src/Factory.h src/com.cpp src/algorithm.cpp src/algorithm.h)
8-
add_executable(client client_test.cpp src/Client.cpp src/Client.h src/Socket.cpp src/Socket.h src/com.h src/Server.cpp src/Server.h src/LZ77.h src/Base_Text_Process.h src/Factory.cpp src/Factory.h src/com.cpp src/algorithm.cpp src/algorithm.h)
7+
add_executable(test_hafuman test_hafuman.cpp src/Client.cpp src/Client.h src/Socket.cpp src/Socket.h src/com.h src/Server.cpp src/Server.h src/LZ77.h src/Base_Text_Process.h src/Factory.cpp src/Factory.h src/com.cpp src/algorithm.cpp src/algorithm.h src/Hahuman.cpp src/Hahuman.h)
8+
add_executable(server server_test.cpp src/Client.cpp src/Client.h src/Socket.cpp src/Socket.h src/com.h src/Server.cpp src/Server.h src/LZ77.h src/Base_Text_Process.h src/Factory.cpp src/Factory.h src/com.cpp src/algorithm.cpp src/algorithm.h src/Hahuman.cpp src/Hahuman.h)
9+
add_executable(client client_test.cpp src/Client.cpp src/Client.h src/Socket.cpp src/Socket.h src/com.h src/Server.cpp src/Server.h src/LZ77.h src/Base_Text_Process.h src/Factory.cpp src/Factory.h src/com.cpp src/algorithm.cpp src/algorithm.h src/Hahuman.cpp src/Hahuman.h)

src/Base_Text_Process.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,13 @@ namespace qml {
99
class Encode {
1010
public:
1111
virtual bool file_encode(std::string, bool o2file, std::string) = 0;
12+
std::vector<std::string>File_name;
1213
};
1314

1415
class Decode {
1516
public:
1617
virtual bool file_decode(std::string, bool o2file, std::string) = 0;
18+
std::vector<std::string>File_name;
1719
};
1820
}
1921

0 commit comments

Comments
 (0)