|
From: <ma...@us...> - 2008-04-14 09:59:31
|
Revision: 27
http://scstudio.svn.sourceforge.net/scstudio/?rev=27&view=rev
Author: madzin
Date: 2008-04-14 02:27:27 -0700 (Mon, 14 Apr 2008)
Log Message:
-----------
Modified Paths:
--------------
trunk/src/data/msc.h
Modified: trunk/src/data/msc.h
===================================================================
--- trunk/src/data/msc.h 2008-04-12 21:29:52 UTC (rev 26)
+++ trunk/src/data/msc.h 2008-04-14 09:27:27 UTC (rev 27)
@@ -328,6 +328,10 @@
* Events which aren't successors of any other events.
*/
CoregionEventPtrList m_minimal_events;
+
+ public:
+ inline GeneralEventPtrList getMinimal_events() { return m_minimal_events; }
+
};
/**
@@ -426,6 +430,10 @@
inline CoregionEventPtrList& getSuccessors(){
return m_successors;
}
+
+ public:
+ inline GeneralEventPtrList getSuccessors() { return m_successors; }
+
};
#endif /* _MSC_H */
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|