|
From: Christophe Prud'h. <pru...@us...> - 2000-10-03 23:17:40
|
Update of /cvsroot/corelinux/clfw/src/libs/clfw In directory slayer.i.sourceforge.net:/tmp/cvs-serv32604/src/libs/clfw Modified Files: FrameworkEntity.cpp .cvsignore Log Message: some files to ignore in .cvsignore and added some documentation in FrameworkEntity.cpp Index: FrameworkEntity.cpp =================================================================== RCS file: /cvsroot/corelinux/clfw/src/libs/clfw/FrameworkEntity.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** FrameworkEntity.cpp 2000/10/03 02:14:03 1.1 --- FrameworkEntity.cpp 2000/10/03 23:17:37 1.2 *************** *** 19,23 **** Boston, MA 02111-1307, USA. */ ! #if !defined(__CLFWCOMMON_HPP) #include <ClfwCommon.hpp> --- 19,24 ---- Boston, MA 02111-1307, USA. */ ! /*! \file FrameworkEntity.cpp ! */ #if !defined(__CLFWCOMMON_HPP) #include <ClfwCommon.hpp> *************** *** 30,59 **** namespace corelinux { ! const Dword version(1); ! const UniversalIdentifier ! metaIdentifier("07b8be30-98c4-11d4-92d8-00500489272c"); ! ! OPEN_METATYPE_PARENTS( FrameworkEntity ) ! CLOSE_METATYPE_PARENT; ! ! DEFINE_METATYPE1( FrameworkEntity, MetaTypeRoot, metaIdentifier, version); ! ! // ! // Constructor ! // ! ! FrameworkEntity::FrameworkEntity( void ) ! { ! ; // do nothing ! } ! ! // ! // Destructor ! // ! ! FrameworkEntity::~FrameworkEntity( void ) ! { ! ; ! } --- 31,63 ---- namespace corelinux { ! //! version number for the FrameworkEntity MetaType ! const Dword version(1); ! ! //! meta indentifier for the FrameworkEntity ! const UniversalIdentifier ! metaIdentifier("07b8be30-98c4-11d4-92d8-00500489272c"); ! ! OPEN_METATYPE_PARENTS( FrameworkEntity ) ! CLOSE_METATYPE_PARENT; ! ! DEFINE_METATYPE1( FrameworkEntity, MetaTypeRoot, metaIdentifier, version); ! ! // ! // Constructor ! // ! ! FrameworkEntity::FrameworkEntity( void ) ! { ! ; // do nothing ! } ! ! // ! // Destructor ! // ! ! FrameworkEntity::~FrameworkEntity( void ) ! { ! ; ! } Index: .cvsignore =================================================================== RCS file: /cvsroot/corelinux/clfw/src/libs/clfw/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** .cvsignore 2000/09/05 01:20:32 1.1 --- .cvsignore 2000/10/03 23:17:37 1.2 *************** *** 1,6 **** --- 1,9 ---- .deps .libs + FrameworkEntity.lo Makefile Makefile.in + MetaType.lo + UniversalIdentifier.lo clfw.lo libclfw++.la |