// Test05.cpp
#include "nsIDOMNode.h"
#include "nsCOMPtr.h"
#ifdef __MWERKS__
#pragma exceptions off
#endif
/*
Windows:
raw, nsCOMPtr 21 bytes
Macintosh:
Raw, nsCOMPtr 64 bytes
*/
class Test05_Raw
{
public:
Test05_Raw();
~Test05_Raw();
private:
};
: mNode(0)
{
// nothing else to do here
}
Test05_Raw::~Test05_Raw()
{
}
void // nsresult
// m64, w21
{
// if ( !aNode )
// return NS_ERROR_NULL_POINTER;
// return NS_OK;
}
class Test05_nsCOMPtr
{
public:
private:
};
void // nsresult
// m64, w21
{
// if ( !aNode )
// return NS_ERROR_NULL_POINTER;
// return NS_OK;
}