|
Hi, i have
class Base { Base* next; } class Class1 : Base { } Base* pBase = new Base(); Class1* pTest = new Class1(); pBase->next = pTest; Class1* pClass1; pClass1 = (Class1*)pBase->next;
I want to be able to write
pClass1 = pBase->next;
and ...
Started by AOI Karasu on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
*() { return (Class1*)this; } }; class Class1 : public Base { };
and:
Base* pBase = new Base(); Class1* pTest = new Class1(); pBase->next = pTest; Class1* pClass1; pClass1 = *pBase->next.
|
|
When is Pbase going to redesign their website? It's been almost 10 years with the same design. It is getting boring. No social networking integration. 500px.com was redesigned and looks better, same with fickr. So many are leaving Pbase.
Started by by egc128 on
, 7 posts
by 5 people.
Answer Snippets (Read the full thread at pbase):
I cannot agree more with 10kzoomfz! Definitely PBase design is pleasantly different from all for those applications necessarily in every website....
Didn't know about 500px until.
I for one prefer the Pbase design, especially compared to flick-er.
|
|
I've been trying for over a month to get an answer from PBASE regarding a lens that isn't in the database. Other than automated replies I've heard nothing. Is anyone actually running things at PBASE?
--
tsiya [Bob]
http://www.pbase.com/tsiya/
Started by tsiya on
, 6 posts
by 3 people.
Answer Snippets (Read the full thread at dpreview):
There have.
Not always, but usually.
|
Ask your Facebook Friends
|
PBase upload program for Firefox 12.0 continues to generate server connection disconnects. Previous versions of Firefox appear to be working ok, but I would prefer to use the newer version of Firefox if the PBase upload program would work ok..
Currently...
Started by by hjsteed on
, 3 posts
by 2 people.
Answer Snippets (Read the full thread at pbase):
I've pretty well stopped using Firefox because its extensions (which might be causing your trouble... .
However, I had no issue uploading an image and it did it in about 2 to 3 seconds .
Just upgraded to FF 12 and then proceeded to try and replicate your issue .
|
|
Ik heb even gewacht en gezocht naar een antwoord, in de fora, hier, maar ik vind het niet.
Mijn foto's staan op Pbase, zoals je wellicht in mijn onderschrift hebt gezien, maar ook ik kan op NCN maar geen Exif zichtbaar krijgen.
De afbeeldingen zijn allemaal...
Started by Thor on
, 15 posts
by 6 people.
Answer Snippets (Read the full thread at nikon-club-nederland):
PBase houdt niet van rechter muisknoppen, maar dat is geen enkel probleem in bijvoorbeeld de dat komen omdat ik 'm eerst bij ....
De groeten uit Lelystad
Nikon D300s - Nikkor & Samyang Glaswerk Nikon SB600 Thor's Pbase Photo achterhalen.
|
|
Hallo,
Ik vroeg me af of iemand weet of je foto`s van pbase kan gebruiken voor de website van mijn bedrijf? Moet er voor elke foto toestemming worden gevraagd aan de fotograaf of kan je deze gewoon gebruiken?
Hoop dat iemand mij kan helpen!
Alvast bedankt...
Started by pascal on
, 6 posts
by 5 people.
Answer Snippets (Read the full thread at nikon-club-nederland):
If you want to use a photo you find on PBase for publication or any other reason, please on his profile page.
PBase does not own the copyright to any of them.
Consultancy All photos on PBase are copyrighted by the photographers.
|
|
Pues eso, que si hay alguna web que tenga buscador de fotos y que se puedan buscar en base al objetivo usado para hacerlas.
Pbase solo deja buscar a partir de la camara.
Started by citro on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at forocoches):
Por ejemplo 70-200 Tigres pues te salen fotos de tigres (y algunas que... .
Además puedes poner el motivo que busques..
Interesaa! Si vas a flickr.com en el buscador puedes poner por ejemplo el nombre del objetivo y te salen fotos hechas con ese objetivo. .
|
|
אני לא יודע אם בטעות שיניתי משהו בהגדרות של הגלריה שלי (ואם כן אז איפה),
אבל כשאני נכנס לגלריה שלי, הדף מופיע לי בקידוד מערבי במקום בקידוד וינדוס עיברית.
כשנכנסים לגלריה זה מופיע ככה
http://www.pbase.com/arielsh10
וכדי שיהיה בעיברית צריך כל פעם מחדש לגשת...
Started by אריאל26 on
, 1 posts
by 1 people.
Answer Snippets (Read the full thread at d-spot):
|
|
Is this scenario even possible?
class Base { int someBaseMemer; }; template<class T> class Derived : public T { int someNonBaseMemer; Derived(T* baseInstance); };
Goal:
Base* pBase = new Base(); pBase->someBaseMemer = 123; // Some value set Derived...
Started by AOI Karasu on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Use inheritance to do the job for you:
class Base { public: Base(int x) : someBaseMemer(x) {} protected: // at least, otherwise... .
Why would you want to derive and pass the base pointer at the same time? Choose either, nothing stops you from having both .
|
|
Say we have:
Class Base { virtual void f(){g();}; virtual void g(){//Do some Base related code;} }; Class Derived : public Base { virtual void f(){Base::f();}; virtual void g(){//Do some Derived related code}; }; int main() { Base *pBase = new Derived...
Started by Gal Goldman on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
pBase = new Derived;
is invalid unless you have:
Class Derived : public Base
Is it want you meant? If this is want you meant,
pBase->f();
Then the call stack would go like this:
Derived::f() Base::f.
|