> here is such functions:
> std::list<double>* func1()
> {
>       std::list<double> Out = new std::list<double>;

I think you mean
std::list<double>* Out(new std::list<double>());

> 
>       Out->push_back(0.0);
>       ...
> 
>       return Out;
> }
> 
> and main func.:
> 
> ...
> std::list<double> z;

Again:
std::list<double>* z;

> z = func1();
> ...
> 
> Is it right?
> 
> error in memory address!! Why?
> Or i must :
> std::list<double> z = new ....?

Yours, Daniel Kraft
_______________________________________________
gtkmm-list mailing list
[email protected]
http://mail.gnome.org/mailman/listinfo/gtkmm-list

Reply via email to