[GME-commit]
GMESRC/GME/Meta MgaMetaProject.cpp,1.3,1.4 MgaMetaProject.h,1.3,1.4
gme-commit at list.isis.vanderbilt.edu
gme-commit at list.isis.vanderbilt.edu
Tue Jul 20 09:55:49 CDT 2004
- Previous message: [GME-commit] GMESRC/GME/Interfaces InterfaceVersion.h,1.45,1.46
Meta.idl,1.19,1.20 MgaUtil.idl,1.36,1.37
- Next message: [GME-commit] GMESRC/GME/MgaUtil MetaDlg.cpp,1.13,1.14
MetaPurgeDialog.cpp,1.2,1.3 MgaRegistrar.cpp,1.35,1.36
MgaRegistrar.h,1.15,1.16 MgaUtil.rc,1.38,1.39
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /var/lib/gme/GMESRC/GME/Meta
In directory braindrain:/tmp/cvs-serv8866/GME/Meta
Modified Files:
MgaMetaProject.cpp MgaMetaProject.h
Log Message:
Version string was introduced in the Registration process
CVS User: volgy
Index: MgaMetaProject.cpp
===================================================================
RCS file: /var/lib/gme/GMESRC/GME/Meta/MgaMetaProject.cpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** MgaMetaProject.cpp 27 Mar 2001 20:50:00 -0000 1.3
--- MgaMetaProject.cpp 20 Jul 2004 13:55:46 -0000 1.4
***************
*** 322,325 ****
--- 322,333 ----
}
+ STDMETHODIMP CMgaMetaProject::put_CreatedAt(BSTR p)
+ {
+ if( rootobject == NULL )
+ COMRETURN(E_META_NOTOPEN);
+
+ return ComPutAttrValue(rootobject, ATTRID_CDATE, p);
+ }
+
STDMETHODIMP CMgaMetaProject::get_ModifiedAt(BSTR *p)
{
***************
*** 328,331 ****
--- 336,347 ----
return ComGetAttrValue(rootobject, ATTRID_MDATE, p);
+ }
+
+ STDMETHODIMP CMgaMetaProject::put_ModifiedAt(BSTR p)
+ {
+ if( rootobject == NULL )
+ COMRETURN(E_META_NOTOPEN);
+
+ return ComPutAttrValue(rootobject, ATTRID_MDATE, p);
}
Index: MgaMetaProject.h
===================================================================
RCS file: /var/lib/gme/GMESRC/GME/Meta/MgaMetaProject.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** MgaMetaProject.h 26 Jul 2001 19:36:00 -0000 1.3
--- MgaMetaProject.h 20 Jul 2004 13:55:46 -0000 1.4
***************
*** 54,58 ****
--- 54,60 ----
STDMETHOD(put_Comment)(BSTR p);
STDMETHOD(get_CreatedAt)(BSTR *p);
+ STDMETHOD(put_CreatedAt)(BSTR p);
STDMETHOD(get_ModifiedAt)(BSTR *p);
+ STDMETHOD(put_ModifiedAt)(BSTR p);
STDMETHOD(get_RootFolder)(IMgaMetaFolder **p)
- Previous message: [GME-commit] GMESRC/GME/Interfaces InterfaceVersion.h,1.45,1.46
Meta.idl,1.19,1.20 MgaUtil.idl,1.36,1.37
- Next message: [GME-commit] GMESRC/GME/MgaUtil MetaDlg.cpp,1.13,1.14
MetaPurgeDialog.cpp,1.2,1.3 MgaRegistrar.cpp,1.35,1.36
MgaRegistrar.h,1.15,1.16 MgaUtil.rc,1.38,1.39
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the GME-commit
mailing list