bool ValidEnd = false;
bool ValidDateTimeStamp = false;
bool ValidUniqueID = false;
+ bool ValidDateTimeStart = false;
int SeekCount = 0;
string PropertyName;
SeekCount = 0;
+ // Look for DTSTART.
+
+ for (vector<string>::iterator iter = ObjectName.begin();
+ iter != ObjectName.end(); iter++){
+
+ try{
+ PropertyName = ObjectName[SeekCount].substr(0,7);
+ }
+
+ catch(const out_of_range& oor){
+ continue;
+ }
+
+ if (PropertyName == "DTSTART"){
+
+ if (ValidDateTimeStart == false){
+ ValidDateTimeStart = true;
+ } else {
+ return CALENDAROBJECTVALID_INVALIDFORMAT;
+ }
+
+ }
+
+ SeekCount++;
+
+ }
+
+ SeekCount = 0;
+
// Look for END:VEVENT.
for (vector<string>::iterator iter = ObjectName.begin();
if (ValidBegin == true &&
ValidEnd == true &&
ValidDateTimeStamp == true &&
+ ValidDateTimeStart == true &&
ValidUniqueID == true){
return CALENDAROBJECTVALID_OK;