Hello im kind of new with class' and im wondering how i can get the data to work in other parts of my program, i have some few errors where i define it and it doesnt work,and other areas dont work
Errors
62 C:\Dev-Cpp\Untitled10.cpp `Type' undeclared (first use this function)
63 C:\Dev-Cpp\Untitled10.cpp `Attack' undeclared (first use this function)
64 C:\Dev-Cpp\Untitled10.cpp `Health' undeclared (first use this function)
65 C:\Dev-Cpp\Untitled10.cpp `Advantage' undeclared (first use this function)
66 C:\Dev-Cpp\Untitled10.cpp `Disadvantage' undeclared (first use this function)
67 C:\Dev-Cpp\Untitled10.cpp `Name' undeclared (first use this function)
69 C:\Dev-Cpp\Untitled10.cpp return-statement with a value, in function returning 'void'
70 C:\Dev-Cpp\Untitled10.cpp return-statement with a value, in function returning 'void'
71 C:\Dev-Cpp\Untitled10.cpp return-statement with a value, in function returning 'void'
72 C:\Dev-Cpp\Untitled10.cpp return-statement with a value, in function returning 'void'
73 C:\Dev-Cpp\Untitled10.cpp return-statement with a value, in function returning 'void'
74 C:\Dev-Cpp\Untitled10.cpp return-statement with a value, in function returning 'void'
75 C:\Dev-Cpp\Untitled10.cpp return-statement with a value, in function returning 'void'
81 C:\Dev-Cpp\Untitled10.cpp `OType' undeclared (first use this function)
82 C:\Dev-Cpp\Untitled10.cpp `OAttack' undeclared (first use this function)
83 C:\Dev-Cpp\Untitled10.cpp `ODefense' undeclared (first use this function)
84 C:\Dev-Cpp\Untitled10.cpp `OHealth' undeclared (first use this function)
85 C:\Dev-Cpp\Untitled10.cpp `OAdvantage' undeclared (first use this function)
86 C:\Dev-Cpp\Untitled10.cpp `ODisadvantage' undeclared (first use this function)
87 C:\Dev-Cpp\Untitled10.cpp `OName' undeclared (first use this function)
89 C:\Dev-Cpp\Untitled10.cpp return-statement with a value, in function returning 'void'
90 C:\Dev-Cpp\Untitled10.cpp return-statement with a value, in function returning 'void'
91 C:\Dev-Cpp\Untitled10.cpp return-statement with a value, in function returning 'void'
92 C:\Dev-Cpp\Untitled10.cpp return-statement with a value, in function returning 'void'
93 C:\Dev-Cpp\Untitled10.cpp return-statement with a value, in function returning 'void'
94 C:\Dev-Cpp\Untitled10.cpp return-statement with a value, in function returning 'void'
95 C:\Dev-Cpp\Untitled10.cpp return-statement with a value, in function returning 'void'
101 C:\Dev-Cpp\Untitled10.cpp `Type' undeclared (first use this function)
101 C:\Dev-Cpp\Untitled10.cpp `OType' undeclared (first use this function)
103 C:\Dev-Cpp\Untitled10.cpp `Attack' undeclared (first use this function)
104 C:\Dev-Cpp\Untitled10.cpp `OAttack' undeclared (first use this function)
The error messages are very clear. So do not disturb the forum and read the messages and update the code. Any name used in a program shall be at first declared before its usage.