mmm. My problem is I dont want to write a large code ....
I prefer *i_myclass<<1<<33<<44<<""; ( It is as works now) (I'd want to avoid the use of the final "").
So, I create my i_myclass one time for all the life of my program.
An adittional question :
Is there any way to write a function to receive an unknowed number of elements?
In example , I'd like to call myfunction (1,2,3,4,5,6,7) or myfunction (1,2,3).
myfunction ( <T> items... ) ??? Or something like this ? Or have I to write a lot of overloaded functions ?
Thanks