schema_editor/comdel/domain/wireinstance.h

24 lines
309 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;
WireInstance(std::string name, Display display);
};
} // namespace domain
#endif // DOMAIN_WIREINSTANCE_H