Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"C_Cpp.errorSquiggles": "Disabled"
}
18 changes: 0 additions & 18 deletions class config

This file was deleted.

23 changes: 23 additions & 0 deletions classconfig.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
#ifndef config_h

class configlibre
{
configLib();
char *printTest();
};
#endif

class config{
Type type;
config(){
type=new Type();
}

void setType(char* value){
type->setType()

}
String getType{
type->getType();
}
};
19 changes: 6 additions & 13 deletions lib/class config/class config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,28 +8,21 @@ String config: :getType(){
}

void config: :setType(){
return type->setType();
type->setType();
}


class config{

Type type;

config(){

type=new Type();


}

void setType(char* value){
type->setType()
type->setType();

}
String getType{
type->getType();

type->getType();

Copy link
Copy Markdown
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

te falta el return

return type;
}

}
};