ok, heres the thing. I just had a question about nesting classes. I know this is a C board, but to illustrate what i mean i have a short java example.
Code:
public class TestClass
{
 public static class OtherClass
 {
  public OtherClass ()
  {
  }
  public void doSomething ()
  {
  }
 }
 public static class HelpMeClass
 {
  public HelpMeClass()
  {
  }
  public void doSomthingElse
  {
  }
 }
}
see how the classes OtherClass and HelpMeClass are nested inside of TestClass? Can you do anything like that in C++? Hey, im new at this. I've never really used C++ classes before. Sorry about the java, but i had no idea how to illustrate it in C++. If this question would be better posted elsewhere, please dont hesitate to say so.