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

#ifndef CSCI_MAP_ENTITY_H
#define CSCI_MAP_ENTITY_H
#ifndef _MSC_VER
#include <precompiled.h>
#else
#include <QxOrm.h>
#endif
#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