You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
410 B

2 years ago
#ifndef CSCI_MAP_ENTITY_H
#define CSCI_MAP_ENTITY_H
2 years ago
#ifndef _MSC_VER
#include <precompiled.h>
#else
#include <QxOrm.h>
2 years ago
#endif
2 years ago
#include <QxOrm_Impl.h>
class MapEntity{
public:
long id;
QString mapName;
public:
MapEntity();
virtual ~MapEntity();
public:
static MapEntity findById(long id);
};
QX_REGISTER_HPP(MapEntity, qx::trait::no_base_class_defined, 0)
#endif //CSCI_MAP_ENTITY_H