Hello,
So I've got a class with methods and inside each method I'd like to use functions to keep the code clean. Thing is, if I try and use another method from the class I get an error (function/method not defined). So the only way around this that I've found is to include a file containing my functions within the class. I guess that works just fine.. but it just feels sloppy.
What do some of you do in this situation?
Thanks.