Added default comments to header files.

This commit is contained in:
gagan%netscape.com 1998-09-16 10:10:01 +00:00
Родитель d8fd6aa03f
Коммит e312e8a19d
2 изменённых файлов: 9 добавлений и 1 удалений

7
network/cache/nu/nsGeneric.cpp поставляемый
Просмотреть файл

@ -17,6 +17,11 @@
* Netscape Communications Corporation. All Rights Reserved.
*/
/* This is my generic cpp file to aid in creating a new class. This file
* declares the implementation of nsGeneric class. This class is cool...
* -Gagan Saksena 09/15/98
*/
#include "nsGeneric.h"
nsGeneric::nsGeneric()
@ -47,4 +52,4 @@ nsresult nsGeneric::QueryInterface(const nsIID& aIID,
return NS_OK;
}
nsGeneric::
nsGeneric::

3
network/cache/nu/nsGeneric.h поставляемый
Просмотреть файл

@ -20,6 +20,9 @@
#ifndef nsGeneric_h__
#define nsGeneric_h__
/* This is a generic header file for creating new classes. It is not
* part of the build system. -Gagan Saksena 09/15/98
*/
#include "nsISupports.h"
class nsGeneric: public nsISupports