2025-05-03 00:02:51 +08:00
|
|
|
#include "Test2.h"
|
|
|
|
|
|
|
|
|
|
#include "CCThread.h"
|
2025-05-22 20:03:09 +08:00
|
|
|
#include "CCUnzip.h"
|
2025-05-03 00:02:51 +08:00
|
|
|
|
|
|
|
|
Test2::Test2() {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Test2::~Test2() {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Test2::test() {
|
2025-05-18 13:45:56 +08:00
|
|
|
this->Start();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Test2::Run() {
|
2025-05-22 20:03:09 +08:00
|
|
|
bool F = CTL::UnZip::UnzipFile("/home/qingjiao/Downloads/JetAA.zip","/home/qingjiao/Downloads/");
|
2025-05-18 13:45:56 +08:00
|
|
|
CC::Println("Hello");
|
2025-05-03 00:02:51 +08:00
|
|
|
}
|