CgiDefs.h | CgiDefs.h | |||
---|---|---|---|---|
skipping to change at line 44 | skipping to change at line 44 | |||
# define CGICC_USE_NAMESPACES 1 | # define CGICC_USE_NAMESPACES 1 | |||
// export library symbols | // export library symbols | |||
# ifdef CGICC_EXPORTS | # ifdef CGICC_EXPORTS | |||
# define CGICC_API __declspec(dllexport) | # define CGICC_API __declspec(dllexport) | |||
# else | # else | |||
# define CGICC_API __declspec(dllimport) | # define CGICC_API __declspec(dllimport) | |||
# endif | # endif | |||
# define HOST "Win32" | # define HOST "Win32" | |||
# define VERSION "3.1.2" | # define VERSION "3.1.3" | |||
#else | #else | |||
# define CGICC_USE_NAMESPACES 1 | # define CGICC_USE_NAMESPACES 1 | |||
# define CGICC_API | # define CGICC_API | |||
#endif /* WIN32 */ | #endif /* WIN32 */ | |||
// Handle namespaces | // Handle namespaces | |||
#if CGICC_USE_NAMESPACES | #if CGICC_USE_NAMESPACES | |||
# define CGICC_BEGIN_NAMESPACE namespace cgicc { | # define CGICC_BEGIN_NAMESPACE namespace cgicc { | |||
# define CGICC_END_NAMESPACE } | # define CGICC_END_NAMESPACE } | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added | |||
HTMLElements.h | HTMLElements.h | |||
---|---|---|---|---|
/* -*-c++-*- */ | /* -*-c++-*- */ | |||
/* | /* | |||
* $Id: HTMLElements.h,v 1.5 1999/08/17 17:29:31 sbooth Exp $ | * $Id: HTMLElements.h,v 1.6 2000/07/03 02:54:03 sbooth Exp $ | |||
* | * | |||
* Copyright (C) 1996, 1997, 1998, 1999 Stephen F. Booth | * Copyright (C) 1996, 1997, 1998, 1999 Stephen F. Booth | |||
* | * | |||
* This program is free software; you can redistribute it and/or modify | * This program is free software; you can redistribute it and/or modify | |||
* it under the terms of the GNU General Public License as published by | * it under the terms of the GNU General Public License as published by | |||
* the Free Software Foundation; either version 2 of the License, or | * the Free Software Foundation; either version 2 of the License, or | |||
* (at your option) any later version. | * (at your option) any later version. | |||
* | * | |||
* This program is distributed in the hope that it will be useful, | * This program is distributed in the hope that it will be useful, | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
skipping to change at line 85 | skipping to change at line 85 | |||
* @param element The HTMLElement to compare to this one. | * @param element The HTMLElement to compare to this one. | |||
* @return false if the two HTMLElements are equal, true otherwise. | * @return false if the two HTMLElements are equal, true otherwise. | |||
*/ | */ | |||
inline bool | inline bool | |||
operator!= (const HTMLElement& element) const | operator!= (const HTMLElement& element) const | |||
{ return ! operator==(element); } | { return ! operator==(element); } | |||
#ifdef WIN32 | #ifdef WIN32 | |||
/** Dummy operator for MSVC++ */ | /** Dummy operator for MSVC++ */ | |||
inline bool | inline bool | |||
operator< (const HTMLAttribute& att) const | operator< (const HTMLElement& element) const | |||
{ return false; } | { return false; } | |||
#endif | #endif | |||
/** Assignment operator */ | /** Assignment operator */ | |||
HTMLElement& | HTMLElement& | |||
operator= (const HTMLElement& element); | operator= (const HTMLElement& element); | |||
/** | /** | |||
* Get the name of this element. | * Get the name of this element. | |||
* For example, HTML or BODY. | * For example, HTML or BODY. | |||
End of changes. 2 change blocks. | ||||
2 lines changed or deleted | 2 lines changed or added | |||