schema_editor/comdel/domain/instanceattribute.h

28 lines
438 B
C
Raw Permalink Normal View History

2022-04-08 18:17:58 +00:00
#ifndef DOMAIN_INSTANCE_ATTRIBUTE_H
#define DOMAIN_INSTANCE_ATTRIBUTE_H
2022-04-05 21:48:07 +00:00
#include "attribute.h"
#include "value.h"
#include <string>
namespace domain {
class InstanceAttribute
{
public:
InstanceAttribute(std::string name, Value value, Attribute attribute);
2022-05-08 13:47:47 +00:00
std::string name = "";
2022-04-05 21:48:07 +00:00
Value value;
Attribute attribute;
2022-05-08 13:47:47 +00:00
~InstanceAttribute() = default;
2022-04-05 21:48:07 +00:00
};
} // namespace domain
2022-04-08 18:17:58 +00:00
#endif // DOMAIN_INSTANCE_ATTRIBUTE_H