Although I made an Inner class called InnerClassName, it's only usable in the function Outer::makeClass(). Can I make it so it's available in Outer::SomeFunction() too without passing it? I'm confused as to why the Inner class isn't avaliable to the entire Outer Class like SomeInt is once created. Thanks for any help.
You should declare an object of type Inner inside Outer then, just as you declared an int called someInt. Also, you forgot the closing semicolon on your Inner class definition.
The issue I think is that you don't see exactly what you're doing here. "someInt" is a member of type "int" and is thus available in all methods. "Inner" is a class type, but there is no instance to access until you create one like on line 17.