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