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.3" | # define VERSION "3.1.4" | |||
#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 | |||
HTMLAttributes.h | HTMLAttributes.h | |||
---|---|---|---|---|
/* -*-c++-*- */ | /* -*-c++-*- */ | |||
/* | /* | |||
* $Id: HTMLAttributes.h,v 1.3 1999/08/16 17:40:04 sbooth Exp $ | * $Id: HTMLAttributes.h,v 1.4 2000/10/07 18:41:18 sbooth Exp $ | |||
* | * | |||
* Copyright (C) 1996, 1997, 1998, 1999 Stephen F. Booth | * Copyright (C) 1996, 1997, 1998, 1999, 2000 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 | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |||
* GNU General Public License for more details. | * GNU General Public License for more details. | |||
skipping to change at line 46 | skipping to change at line 46 | |||
CGICC_BEGIN_NAMESPACE | CGICC_BEGIN_NAMESPACE | |||
// ============================================================ | // ============================================================ | |||
// Class HTMLAttribute | // Class HTMLAttribute | |||
// ============================================================ | // ============================================================ | |||
/** | /** | |||
* An HTMLAttribute represents a either a name or a single name/value | * An HTMLAttribute represents a either a name or a single name/value | |||
* pair inside an HTML tag. | * pair inside an HTML tag. | |||
* For example, in the HTML code: | * For example, in the HTML code: | |||
* <PRE class="html"> | * <PRE class="html"> | |||
* <A HREF="mailto:sbooth@saaba.lmi.net">Send mail</A></PRE> | * <A HREF="mailto:sbooth@gnu.org">Send mail</A></PRE> | |||
* The name/value pair <TT>(HREF, mailto:sbooth@saaba.lmi.net)</TT> | * The name/value pair <TT>(HREF, mailto:sbooth@gnu.org)</TT> | |||
* is an HTMLAttribute. | * is an HTMLAttribute. | |||
*/ | */ | |||
class CGICC_API HTMLAttribute : public MStreamable | class CGICC_API HTMLAttribute : public MStreamable | |||
{ | { | |||
public: | public: | |||
/** Create an empty HTMLAttribute. */ | /** Create an empty HTMLAttribute. */ | |||
HTMLAttribute(); | HTMLAttribute(); | |||
/** | /** | |||
End of changes. 3 change blocks. | ||||
4 lines changed or deleted | 4 lines changed or added | |||