28 lines
413 B
C++
28 lines
413 B
C++
#include "Test2.h"
|
|
|
|
#include "CCApplication.h"
|
|
#include "CCThread.h"
|
|
#include "CCUnzip.h"
|
|
|
|
Test2::Test2() {
|
|
|
|
}
|
|
|
|
Test2::~Test2() {
|
|
|
|
}
|
|
|
|
void Test2::test() {
|
|
this->Start();
|
|
}
|
|
|
|
void Test2::Run() {
|
|
CC::Println("Hello");
|
|
CTL::Application::Signal([this]() {
|
|
CCVector<CTL::String> str{"ABC","DWADWAd","DWADSDWAD"};
|
|
str.add_lock("ABCD");
|
|
CC::Println(str);
|
|
CC::Exit();
|
|
});
|
|
}
|