schema_editor/comdel/domain/wireinstance.h

24 lines
309 B
C
Raw Normal View History

2022-04-05 21:48:07 +00:00
#ifndef DOMAIN_WIREINSTANCE_H
#define DOMAIN_WIREINSTANCE_H
#include "display.h"
#include <string>
namespace domain {
class WireInstance
{
public:
std::string name;
Display display;
WireInstance(std::string name, Display display);
};
} // namespace domain
#endif // DOMAIN_WIREINSTANCE_H