25 lines
373 B
C++
25 lines
373 B
C++
#ifndef DOMAIN_WIREINSTANCE_H
|
|
#define DOMAIN_WIREINSTANCE_H
|
|
|
|
#include "display.h"
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
namespace domain {
|
|
|
|
class WireInstance
|
|
{
|
|
public:
|
|
std::string name;
|
|
Display display;
|
|
std::pair<int, int> position;
|
|
|
|
WireInstance(std::string name, Display display, std::pair<int, int> position);
|
|
};
|
|
|
|
} // namespace domain
|
|
|
|
#endif // DOMAIN_WIREINSTANCE_H
|