| Summary: | Rendering of attributes as associations | ||
|---|---|---|---|
| Product: | [Applications] umbrello | Reporter: | Oliver Kellogg <okellogg> |
| Component: | general | Assignee: | Oliver Kellogg <okellogg> |
| Status: | RESOLVED FIXED | ||
| Severity: | wishlist | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Compiled Sources | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Oliver Kellogg
2004-08-11 07:23:54 UTC
A sneak preview is possible now. Import the following file:
// attribute_assoc_demo.h
class referenced {
public:
referenced() {}
};
typedef referenced* refPtr;
class referencer {
public:
referenced * getCrudeRef() { return m_pCrude; }
refPtr getTypedefRef() { return m_pTypedef; }
private:
referenced *m_pCrude;
refPtr m_pTypedef;
};
An AssocWidget is made for m_pCrude, but not yet for
m_pTypedef. The load/save of the new originType() and
isReference() features of UMLDatatype isn't there yet.
*** Bug has been marked as fixed ***. |