QGCParamID.cc 365 Bytes
Newer Older
1 2 3
#include "QGCParamID.h"
using namespace OpalRT;

4
QGCParamID::QGCParamID(const char *paramid):QString(paramid)
5 6
{
}
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21

QGCParamID::QGCParamID(const QGCParamID &other):QString(other)
{

}

/*
bool QGCParamID::operator<(const QGCParamID& other)
{
    const QString *lefthand, *righthand;
    lefthand = this;
    righthand = &other;
    return lefthand < righthand;
}
*/