Archive for Şubat 4th, 2010

PİLATES EĞİTMENİ ARANIYOR 0507 259 02 00 ( İstanbul )

Perşembe, Şubat 4th, 2010

KOPLEKSİMİZDE CALİŞACAK PLATES HOCASI ALINACAK 0507 259 02 00

Bu yazı alıntıdır. Yazının orjinal adresi aşağıda belirtilmiştir.
Yazının devamını okumak için buraya tıklayınız…

BEST ZenCart Templates on-line store!

Perşembe, Şubat 4th, 2010

Zen Cart is an outstanding open source system for managing the online store. It is PHP-based, with a usage of MySQL database and certain HTML components. This system supports several languages and types of the currency being available for free under the GNU General Public License.Zen Cart evolved from osCommerce as a separate project.

Bu yazı alıntıdır. Yazının orjinal adresi aşağıda belirtilmiştir.
Yazının devamını okumak için buraya tıklayınız…

C++ Templates polymorphism

Perşembe, Şubat 4th, 2010

Hello. I have this structure of classes.

class Interface{
...
}

class Foo : public Interface{
...
}

template <class T>
class Container{
...
}

And I have this constructor of some other class Bar.

Bar(const Container<Interface> & bar){
...
}

When I call the constructor this way I get “no matching function” error.

Container<Foo> container ();

Bar * temp = new Bar(container);

What is wrong? Are not templates polymorphic?

Bu yazı alıntıdır. Yazının orjinal adresi aşağıda belirtilmiştir.
Yazının devamını okumak için buraya tıklayınız…