Search:

Type: Posts; User: mikel123

Search: Search took 0.00 seconds.

  1. Replies
    2
    Views
    1,075

    Ok I found it. sorry for the post

    Ok I found it.
    sorry for the post
  2. Replies
    2
    Views
    1,075

    how to derive from class with templates

    Hi,
    How do i derive from the vector class?
    I wrote this but it is not correct for sure.



    template <class T, class Allocator = allocator<T> > class DataBlock
    : vector <T,Allocator > {...
  3. Replies
    6
    Views
    1,216

    :( can't i say that i just returning a reference...

    :(
    can't i say that i just returning a reference to 'no matter what'?
    like a reference to Object in Java.
    something like void& (i just don't know if void& exists). ?
    thanks.
  4. Replies
    6
    Views
    1,216

    changing return type of derived function

    Hi,
    I am writing a code and got a problem with deriving the class.
    I have got a class A (with pure virtual functions) which got a (pure virtual) function operator[].
    also I got classes B and C...
  5. Replies
    4
    Views
    1,330

    thank you daved and laserlight, your answers...

    thank you daved and laserlight,
    your answers lead me to another question.
    can i overight the proxy class or it's functions? (which i think will be nested as laserlight said)
    If some class inherits...
  6. Replies
    4
    Views
    1,330

    how to create a good operator[]

    Hi all,
    Well this is my problem.
    I am implementing a class that should act like an array of data.
    meaning that it should have a operator[].
    the problem is that my class may not hold the values in...
Results 1 to 6 of 6