|
From: Frank V. C. <fr...@us...> - 2001-03-31 22:21:49
|
Update of /cvsroot/corelinux/clfw/clfw
In directory usw-pr-cvs1:/tmp/cvs-serv25128/clfw
Modified Files:
Attribute.hpp Concept.hpp Makefile.am
Added Files:
FrameworkString.hpp
Log Message:
115287 - Continued infrastructure work
***** Error reading new file: [Errno 2] No such file or directory: 'FrameworkString.hpp'
Index: Attribute.hpp
===================================================================
RCS file: /cvsroot/corelinux/clfw/clfw/Attribute.hpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** Attribute.hpp 2001/03/31 14:04:59 1.2
--- Attribute.hpp 2001/03/31 22:21:45 1.3
***************
*** 80,84 ****
/// Expose the name data member
! DECLARE_INSTANCEDATA( CharPtr , Name );
/// Expose the value data member
--- 80,84 ----
/// Expose the name data member
! DECLARE_INSTANCEDATA( FrameworkEntityPtr, Key );
/// Expose the value data member
Index: Concept.hpp
===================================================================
RCS file: /cvsroot/corelinux/clfw/clfw/Concept.hpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** Concept.hpp 2001/03/31 14:04:59 1.2
--- Concept.hpp 2001/03/31 22:21:45 1.3
***************
*** 83,89 ****
//
! virtual AttributePtr getAttribute( CharPtr );
virtual SetCollectionPtr getPropertyKeys( void );
//
// Mutators
--- 83,91 ----
//
! virtual AttributePtr getAttributeFromKey( FrameworkEntityPtr );
!
virtual SetCollectionPtr getPropertyKeys( void );
+
//
// Mutators
***************
*** 91,96 ****
virtual void addAttribute( AttributePtr );
virtual void removeAttribute( AttributePtr );
! virtual void removeAttribute( CharPtr );
//
--- 93,100 ----
virtual void addAttribute( AttributePtr );
+
virtual void removeAttribute( AttributePtr );
!
! virtual void removeKey( FrameworkEntityPtr );
//
Index: Makefile.am
===================================================================
RCS file: /cvsroot/corelinux/clfw/clfw/Makefile.am,v
retrieving revision 1.25
retrieving revision 1.26
diff -C2 -r1.25 -r1.26
*** Makefile.am 2001/03/30 11:48:38 1.25
--- Makefile.am 2001/03/31 22:21:45 1.26
***************
*** 23,26 ****
--- 23,27 ----
MetaTypeFixedIterator.hpp \
FrameworkEntity.hpp \
+ FrameworkString.hpp \
Aggregate.hpp \
Boolean.hpp \
|