Artmetic Qt/C++ How to initialize static QMap?

How to initialize static QMap?


// A.h file
class A{
public:
A(){};

private:
static const QMap<qstring, int=""> my_map;
}

After all includes, in cpp file, we initialize static member types.

#include "A.h"
// A.cpp file
const QMap<qstring, int=""> A::my_map = { {"a",1} ,{"b",2} };</qstring,>

A:A
{
}

Leave a Reply

Twój adres email nie zostanie opublikowany. Pola, których wypełnienie jest wymagane, są oznaczone symbolem *

Witryna wykorzystuje Akismet, aby ograniczyć spam. Dowiedz się więcej jak przetwarzane są dane komentarzy.

Related Post