Search:

Type: Posts; User: tabstop

Search: Search took 0.07 seconds.

  1. Replies
    4
    Views
    8,908

    An enumerated type is just that: you have an...

    An enumerated type is just that: you have an enumeration (that is, a list) of all the possible values it can have. So you might have


    enum day_of_week { Monday, Tuesday, Wednesday, Thursday,...
  2. Replies
    4
    Views
    8,908

    Obvious fix: make color_space of type...

    Obvious fix: make color_space of type J_COLOR_SPACE. In C++, enums can be used as integers, but not the other way around.
Results 1 to 2 of 2