Psst.. new poll here.
Psst.. new forums here.
Microsoft is blocking us again (TY IP Reputation!) so just use oauth login instead. :)
Paste
Pasted as C++ by asdas ( 15 years ago )
//обьявление
class MySet
{
private:
vector <char> element;
public:
vector<char> view_element()
{
return element;
}
...
//Использование...
for (vector<char>::iterator coll = A->view_element().begin(); coll != A->view_element().end(); ++coll)
{...}
Revise this Paste