ip2ccountryinfo.h
1 //------------------------------------------------------------------------------
2 // ip2ccountryinfo.h
3 //
4 // Copyright (C) 2011 "Zalewa" <zalewapl@gmail.com>
5 //------------------------------------------------------------------------------
6 #ifndef __IP2CCOUNTRYINFO_H__
7 #define __IP2CCOUNTRYINFO_H__
8 
9 #include "global.h"
10 
11 #include <QPixmap>
12 #include <QString>
13 
18 {
19  public:
20  const QPixmap* flag;
21  QString name;
22 
24  IP2CCountryInfo(const QPixmap* flag, QString name);
25 
26  bool isValid() const;
27 };
28 
29 #endif
Flag and name of the country.