Skip to content

Commit

Permalink
layout接口
Browse files Browse the repository at this point in the history
  • Loading branch information
sg-first committed Dec 21, 2020
1 parent fd6c4ac commit 3cefe8c
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
1 change: 1 addition & 0 deletions LogicalCircuit.pro
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ HEADERS += \
QString.h \
gate.h \
help.h \
layout.h \
lefParser.h \
lefStru.h \
node.h \
Expand Down
19 changes: 19 additions & 0 deletions layout.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
#pragma once
#include "node.h"
#include "lefParser.h"

class layout
{
private:
nodeManager* manager;
lefParser lp;
int width;
int heigh;

public:
layout(nodeManager* manager, lefParser lp, int width, int heigh) :
manager(manager), lp(lp), width(width), heigh(heigh)
{
//进行布局
}
};

0 comments on commit 3cefe8c

Please sign in to comment.