Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. Using enum in QMap
Qt 6.11 is out! See what's new in the release blog

Using enum in QMap

Scheduled Pinned Locked Moved Unsolved General and Desktop
2 Posts 2 Posters 492 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • Z Offline
    Z Offline
    Zbigniew-Sch
    wrote on last edited by
    #1
    This post is deleted!
    C 1 Reply Last reply
    0
    • Z Zbigniew-Sch

      This post is deleted!

      C Offline
      C Offline
      ChrisW67
      wrote on last edited by
      #2

      You will have to be more specific because, for example, this compiles just fine:

      #include <QCoreApplication>
      
      enum MyEnum {
          param1 = 0,
          param2 = 1
      };
      
      int main(int argc, char *argv[])
      {
          QMap<QString, MyEnum> map;
          map["zero"] = param1;
          map["one"]  = param2;
      
          QCoreApplication a(argc, argv);
          return a.exec();
      }
      
      1 Reply Last reply
      3

      • Login

      • Login or register to search.
      • First post
        Last post
      0
      • Categories
      • Recent
      • Tags
      • Popular
      • Users
      • Groups
      • Search
      • Get Qt Extensions
      • Unsolved