static members are shown together with the non static members.
Well, I see the problem, if you do not have a non static member, you don't see them directly, although they are there.
I have at least two different workarounds for you.
- if you do define one global instance of your class, then it will show up in the variable window, and you can use it to see the statics. Note that this does not actually use memory as the variable is not allocated if it is not referenced.
- The second way is to use the inspect window and to look via the this pointer of some function in the symbol table. Unless you switched the compiler generated functions off, the re will be at least some compiler generated constructor which you can use. Again, the constructor is there even if it is not used.
I see that both those ways are not the real thing, well, at least you see your variables.
Daniel