00001 #ifndef CUSTOMHTML_HTML_H
00002 #define CUSTOMHTML_HTML_H
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028 #include "Links.h"
00029 #include "typedefs.h"
00030 #include "sanitizeString.h"
00031
00032
00033 #include <string>
00034
00035 namespace customTag
00036 {
00037 namespace impl
00038 {
00039
00040 using namespace std;
00041
00052 class Html
00053 {
00054 public:
00055
00061 Html();
00062
00072 void writeHtmlHeader(ofstream &file);
00073
00079 void writeHtmlFooter(ofstream &file);
00080
00094 void createLink(string urlToLinkTo, string urlDisplayName, string urlToLinkFrom);
00095
00108 void createTemplateLink(string urlToLinkTo, string templateString, string urlToLinkFrom);
00109
00114 void writeWebPages();
00115
00122 void writeDefaultStyleSheet(const string &fileName);
00123
00124 private:
00125
00130 string m_directoryName;
00131
00135 string m_topCaption;
00136
00144 MapWebPageMapStringLinks m_links;
00145
00155 void to_lower(string &input);
00156
00173 string replace_all_copy(const string &input, const char &character, const string &whatWith);
00174
00175 };
00176
00177 }
00178 }
00179
00180
00181 #endif
00182