[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


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)



More information about the GME-commit mailing list