19 lines
344 B
C
19 lines
344 B
C
|
#ifndef DOMAIN_SCHEMA_WIREINSTANCE_H
|
||
|
#define DOMAIN_SCHEMA_WIREINSTANCE_H
|
||
|
|
||
|
#include <string>
|
||
|
#include <domain/display/display.h>
|
||
|
#include <comdel/parser/astnode.h>
|
||
|
|
||
|
class WireInstance: AstNode
|
||
|
{
|
||
|
std::string name;
|
||
|
std::pair<int, int> position;
|
||
|
Display display;
|
||
|
|
||
|
public:
|
||
|
WireInstance();
|
||
|
};
|
||
|
|
||
|
#endif // DOMAIN_SCHEMA_WIREINSTANCE_H
|