Quote:
Originally Posted by byteit101
error: 'class Dashboard' has no member named 'Add'
|
Quote:
Originally Posted by byteit101
`void Dashboard::Add(const char*, const char*)' used but never defined
|
Both of these imply that you haven't declared and/or defined this function correctly. The first looks like you tried to define 'Add' without declaring it, and the second looks like you tried to use the function without ever declaring or defining it.
Post your modified WPILib files (.cpp and .h).