blob: eb97666590dbd6f443bf9e4e990b25feaaa11448 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#ifndef QPLACECONTACT_P_H
#define QPLACECONTACT_P_H
#include <QSharedData>
#include "qplacecontact.h"
namespace QT_PLACES_NAMESPACE {
class QPlaceContactPrivate : public QSharedData
{
public:
QPlaceContactPrivate();
QPlaceContactPrivate(const QPlaceContactPrivate &other);
~QPlaceContactPrivate();
bool operator==(const QPlaceContactPrivate &other) const;
QString description;
QPlaceContact::ContactType type;
QString value;
};
} // QT_PLACES_NAMESPACE
#endif // QPLACECONTACT_P_H
|