This commit is contained in:
朱毅骏 2021-08-30 19:46:23 +08:00
parent 76810761bf
commit f351b3f02e
2 changed files with 31 additions and 0 deletions

14
base/reusing/worker0.cpp Normal file
View File

@ -0,0 +1,14 @@
//
// Created by zhuyijun on 2021/8/30.
//
#include <iostream>
#include "worker0.h"
using namespace std;
int main() {
return 0;
}

17
base/reusing/worker0.h Normal file
View File

@ -0,0 +1,17 @@
//
// Created by zhuyijun on 2021/8/30.
//
#ifndef BASE_WORKER0_H
#define BASE_WORKER0_H
#include <string>
class Worker {
private:
std::string fullname;
long id;
public:
};
#endif //BASE_WORKER0_H