picturetxl/picturetxl is a ✨ special ✨ repository
- 🔭 I’m currently working on ...
- 🌱 I’m currently learning ...
- 👯 I’m looking to collaborate on ...
- 🤔 I’m looking for help with ...
- 💬 Ask me about ...
- 📫 How to reach me: ...
- 😄 Pronouns: ...
- ⚡ Fun fact: ...
class Martin{
private:
std::vector<Skill> skills;
std::vector<Tools> tools;
std::vector<Project> projects;
std::vector<Hobby> hobbies;
public:
Martin(){
cout<<"Hello world"<<endl
<<"This is Martin's profile"<<endl;
skills.push_back(Skill("linux c++")));
skills.push_back(Skill("abap"));
skills.push_back(Skill("sap sd"));
tools.push_back(Tools("vim"));
tools.push_back(Tools("make"));
tools.push_back(Tools("gdb"));
hobbies.push_back(Hobby("moive"));
hobbies.push_back(Hobby("eatting"));
}
}