This repository has been archived on 2023-08-11. You can view files and clone it, but cannot push or open issues or pull requests.
verticallite/attrlinkkey.h

19 lines
262 B
C++

#ifndef ATTRLINKKEY_H
#define ATTRLINKKEY_H
#include <QString>
class AttrLinkKey;
class AttrLinkKey
{
public:
AttrLinkKey();
bool operator<(const AttrLinkKey &key2) const;
public:
long id;
long pid;
QString lid;
};
#endif // ATTRLINKKEY_H