From: Tyrel D. <ty...@us...> - 2012-06-10 01:30:10
|
Update of /cvsroot/sblim/cmpi-devel In directory vz-cvs-3.sog:/tmp/cvs-serv7689 Modified Files: CmpiImpl.cpp NEWS Log Message: Fixed 3531603: no way to determine internal type of CmpiData Index: NEWS =================================================================== RCS file: /cvsroot/sblim/cmpi-devel/NEWS,v retrieving revision 1.24 retrieving revision 1.25 diff -u -d -r1.24 -r1.25 --- NEWS 5 Jun 2012 22:47:55 -0000 1.24 +++ NEWS 10 Jun 2012 01:30:07 -0000 1.25 @@ -6,6 +6,7 @@ - 3531599 replace CMGetCharPtr with CMGetCharsPtr - 3531597 returnData with char type fails - 3531596 CmpiData uses wrong union for unsigned data +- 3531603 no way to determine internal type of CmpiData New Features: - 3531601 add CmpiString constructor for char data Index: CmpiImpl.cpp =================================================================== RCS file: /cvsroot/sblim/cmpi-devel/CmpiImpl.cpp,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- CmpiImpl.cpp 5 Jun 2012 22:47:55 -0000 1.16 +++ CmpiImpl.cpp 10 Jun 2012 01:30:07 -0000 1.17 @@ -1042,6 +1042,10 @@ return (_data.state & CMPI_notFound); } +CMPIType CmpiData::getType() const { + return _data.type; +} + //--------------------------------------------------- //-- |