make GetFlags pure virtual to fix link error

This commit is contained in:
bienvenu%netscape.com 1999-02-24 06:05:33 +00:00
parent 47cbdb1e9d
commit e066b95d4c

View File

@ -34,7 +34,7 @@ class nsIDBFolderInfo : public nsISupports {
public:
static const nsIID& IID() { static nsIID iid = NS_IDBFOLDERINFO_IID; return iid; }
NS_IMETHOD GetFlags(PRInt32 *result) ;
NS_IMETHOD GetFlags(PRInt32 *result) = 0 ;
NS_IMETHOD SetFlags(PRInt32 flags) = 0;
NS_IMETHOD OrFlags(PRInt32 flags, PRInt32 *result) = 0;
NS_IMETHOD AndFlags(PRInt32 flags, PRInt32 *result) = 0;