schema_editor/comdel/domain/wireinstance.h

25 lines
375 B
C
Raw Permalink Normal View History

2022-04-08 18:17:58 +00:00
#ifndef DOMAIN_WIRE_INSTANCE_H
#define DOMAIN_WIRE_INSTANCE_H
2022-04-05 21:48:07 +00:00
#include "display.h"
#include <string>
namespace domain {
class WireInstance
{
public:
std::string name;
Display display;
2022-04-07 22:21:23 +00:00
std::pair<int, int> position;
2022-04-05 21:48:07 +00:00
2022-04-07 22:21:23 +00:00
WireInstance(std::string name, Display display, std::pair<int, int> position);
2022-04-05 21:48:07 +00:00
};
} // namespace domain
#endif // DOMAIN_WIREINSTANCE_H