Hi!

Anyone knows how can you make a group of methods in a .hpp file in C++?

And when you use this header file it looks like this ...

Code:
Support s;

s.IO.read(buffer);
s.MEMORY.delete(buffer);
So, how to create IO and MEMORY in hpp file?

Thanks!