diff options
Diffstat (limited to 'src/libs/client/PortModel.h')
-rw-r--r-- | src/libs/client/PortModel.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libs/client/PortModel.h b/src/libs/client/PortModel.h index 6d0895cf..9847bb1e 100644 --- a/src/libs/client/PortModel.h +++ b/src/libs/client/PortModel.h @@ -21,6 +21,7 @@ #include <string> #include <list> #include "ObjectModel.h" +#include "util/CountedPtr.h" using std::string; using std::list; namespace LibOmClient { @@ -110,7 +111,7 @@ private: bool m_connected; }; -typedef list<PortModel*> PortModelList; +typedef list<CountedPtr<PortModel> > PortModelList; } // namespace LibOmClient |