I will copy stl vector container A to B
But not whole.
If element of A is proper, I will copy only that to B.
Is there any way to do it?
I tried to do this way.
1. newA.put_dat(input_stl[j].ino_no)
-------- ------------------------
B con A container
(ino_no element or whatever)
2. inputB_stl.push_back(newA_input);
But it was not working.
How can I do? Thanks you.