22 lines
300 B
C++
22 lines
300 B
C++
#include "Test2.h"
|
|
|
|
#include "CCThread.h"
|
|
#include "CCUnzip.h"
|
|
|
|
Test2::Test2() {
|
|
|
|
}
|
|
|
|
Test2::~Test2() {
|
|
|
|
}
|
|
|
|
void Test2::test() {
|
|
this->Start();
|
|
}
|
|
|
|
void Test2::Run() {
|
|
bool F = CTL::UnZip::UnzipFile("/home/qingjiao/Downloads/JetAA.zip","/home/qingjiao/Downloads/");
|
|
CC::Println("Hello");
|
|
}
|