Start of new ANTLR4 based parser.
Very simple tests pass.
This commit is contained in:
parent
03b4194193
commit
fbbe832a05
44 changed files with 860 additions and 8 deletions
|
|
@ -36,6 +36,7 @@ class ConnectionConfig;
|
|||
class ConnectionNode {
|
||||
public:
|
||||
virtual ~ConnectionNode() = default;
|
||||
|
||||
};
|
||||
|
||||
class ConnectionGroup: public ConnectionNode {
|
||||
|
|
@ -115,7 +116,10 @@ public:
|
|||
bool dirty() const;
|
||||
void clean();
|
||||
|
||||
bool operator==(QUuid id) const { return m_uuid == id; }
|
||||
bool operator==(const ConnectionConfig &rhs) const
|
||||
{
|
||||
return m_uuid == rhs.m_uuid;
|
||||
}
|
||||
|
||||
QString makeLongDescription() const;
|
||||
QByteArray encodedPassword() const;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue