00001 /* 00002 * Name: submit.hh 00003 * Author: Angel Jimenez Jimenez 00004 * Rafael Jesus Alcantara Perez 00005 * Summary: HTML submit 00006 * Date: $Date: 2003/04/14 00:18:34 $ 00007 * Revision: $Revision: 1.1 $ 00008 * 00009 * Copyright (C) 1994-2002 Rafael Jesus Alcantara Perez <rafa@dedalo-ing.com> 00010 * 00011 * This program is free software; you can redistribute it and/or modify 00012 * it under the terms of the GNU General Public License as published by 00013 * the Free Software Foundation; either version 2 of the License, or 00014 * (at your option) any later version. 00015 * 00016 * This program is distributed in the hope that it will be useful, 00017 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00018 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00019 * GNU General Public License for more details. 00020 * 00021 * You should have received a copy of the GNU General Public License 00022 * along with this program; if not, write to the Free Software 00023 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 00024 * MA 02111-1307, USA. 00025 */ 00026 00027 #ifndef _MPCL_TEXT_HTML_SUBMIT__ 00028 #define _MPCL_TEXT_HTML_SUBMIT__ 00029 00030 #include "tag.hh" 00031 00032 00034 namespace mpcl 00035 { 00036 00038 namespace text 00039 { 00040 00042 namespace html 00043 { 00044 00046 class TSubmit : public TTag 00047 { 00048 00049 public: 00050 00051 // 00052 // C O N S T R U C T O R S 00053 // 00054 00055 TSubmit (const char* pkcIDENTIFIER, const char* pkcVALUE = "") : 00056 TTag (pkcIDENTIFIER, pkcVALUE) 00057 { 00058 tAttributeMap ["class-identifier"] = "submit"; 00059 } 00060 00061 void reset (void) {} 00062 00063 }; // class TSubmit 00064 00065 } // namespace html 00066 00067 } // namespace text 00068 00069 } // namespace mpcl 00070 00071 00072 #endif // not _MPCL_TEXT_HTML_SUBMIT__