Skip to content

Commit 55b2dd7

Browse files
committed
writer-html: renamed from html-writer
All modules for output format writers now have the `writer-` prefix.
1 parent d80e56e commit 55b2dd7

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

src/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,6 @@ add_library(cs STATIC
7171
cwe-mapper.cc
7272
cwe-name-lookup.cc
7373
deflookup.cc
74-
html-writer.cc
7574
instream.cc
7675
json-writer.cc
7776
parser.cc
@@ -83,6 +82,7 @@ add_library(cs STATIC
8382
shared-string.cc
8483
version.cc
8584
writer.cc
85+
writer-html.cc
8686
)
8787

8888
# link cslib.a and boost libraries

src/cshtml.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@
2020
#include "parser.hh"
2121
#include "cwe-name-lookup.hh"
2222
#include "deflookup.hh"
23-
#include "html-writer.hh"
2423
#include "instream.hh"
2524
#include "regex.hh"
2625
#include "version.hh"
26+
#include "writer-html.hh"
2727

2828
#include <boost/filesystem.hpp>
2929
#include <boost/program_options.hpp>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
* along with csdiff. If not, see <http://www.gnu.org/licenses/>.
1818
*/
1919

20-
#include "html-writer.hh"
20+
#include "writer-html.hh"
2121

2222
#include "cwe-name-lookup.hh"
2323
#include "deflookup.hh"
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
* along with csdiff. If not, see <http://www.gnu.org/licenses/>.
1818
*/
1919

20-
#ifndef H_GUARD_HTML_WRITER_H
21-
#define H_GUARD_HTML_WRITER_H
20+
#ifndef H_GUARD_WRITER_HTML_H
21+
#define H_GUARD_WRITER_HTML_H
2222

2323
#include "writer.hh"
2424

@@ -58,4 +58,4 @@ class HtmlWriter: public AbstractWriter {
5858
Private *d;
5959
};
6060

61-
#endif /* H_GUARD_HTML_WRITER_H */
61+
#endif /* H_GUARD_WRITER_HTML_H */

src/writer.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@
2020
#include "writer.hh"
2121

2222
#include "cswriter.hh"
23-
#include "html-writer.hh"
2423
#include "instream.hh"
2524
#include "json-writer.hh"
2625
#include "regex.hh"
26+
#include "writer-html.hh"
2727

2828
// /////////////////////////////////////////////////////////////////////////////
2929
// implementation of AbstractWriter

0 commit comments

Comments
 (0)