69 const bool16 defaultApp = kFalse,
70 const bool16 adobeApp = kFalse
73 fDisplayName(displayName),
75 fIsDefaultApp(defaultApp),
83 fDisplayName(info.fDisplayName),
84 fVersion(info.fVersion),
85 fIsDefaultApp(info.fIsDefaultApp),
86 fIsAdobeApp(info.fIsAdobeApp)
125 return ((fPath == other.fPath) &&
126 (fDisplayName == other.fDisplayName) &&
127 (fVersion == other.fVersion) );
139 if (other.fIsAdobeApp)
140 return (fDisplayName == other.fDisplayName ? fVersion < other.fVersion : fDisplayName < other.fDisplayName);
144 else if (other.fIsAdobeApp)
149 return (fDisplayName == other.fDisplayName ? fVersion < other.fVersion : fDisplayName < other.fDisplayName);
157 bool16 fIsDefaultApp;
163 extern const AppInfo kNullAppInfo;
166 #endif // __APPINFO__