You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
369 B
C
19 lines
369 B
C
8 years ago
|
#ifndef CAMP_DATA_H
|
||
|
#define CAMP_DATA_H
|
||
|
|
||
|
#include <QSharedPointer>
|
||
|
|
||
|
class CampData;
|
||
|
class AddressItem;
|
||
|
class ServiceItem;
|
||
|
|
||
|
typedef QSharedPointer<CampData> CampDataPtr;
|
||
|
typedef QSharedPointer<ServiceItem> ServiceItemPtr;
|
||
|
typedef QSharedPointer<AddressItem> AddressItemPtr;
|
||
|
|
||
|
#include "campdata.h"
|
||
|
#include "addressitem.h"
|
||
|
#include "serviceitem.h"
|
||
|
|
||
|
#endif // CAMP_DATA_H
|