From 8182e72a26051fa553b85199f3e62cb593d07b25 Mon Sep 17 00:00:00 2001 From: Marcel Otte Date: Thu, 11 Jan 2018 09:25:24 +0100 Subject: [PATCH] Updated Doxyfile --- Doxyfile | 8 ++++---- src/core/RandomAccessBinary.cpp | 1 + src/core/RandomAccessBinary.h | 6 +++--- 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/Doxyfile b/Doxyfile index 3410e45..3f810c0 100644 --- a/Doxyfile +++ b/Doxyfile @@ -2164,7 +2164,7 @@ PERL_PATH = /usr/bin/perl # powerful graphs. # The default value is: YES. -CLASS_DIAGRAMS = NO +CLASS_DIAGRAMS = YES # You can define message sequence charts within doxygen comments using the \msc # command. Doxygen will then run the mscgen tool (see: @@ -2261,7 +2261,7 @@ GROUP_GRAPHS = YES # The default value is: NO. # This tag requires that the tag HAVE_DOT is set to YES. -UML_LOOK = NO +UML_LOOK = YES # If the UML_LOOK tag is enabled, the fields and methods are shown inside the # class node. If there are many fields or methods and many nodes the graph may @@ -2400,12 +2400,12 @@ DIAFILE_DIRS = # generate a warning when it encounters a \startuml command in this case and # will not generate output for the diagram. -PLANTUML_JAR_PATH = +PLANTUML_JAR_PATH = /usr/bin/plantuml # When using plantuml, the specified paths are searched for files specified by # the !include statement in a plantuml block. -PLANTUML_INCLUDE_PATH = +PLANTUML_INCLUDE_PATH = . # The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of nodes # that will be shown in the graph. If the number of nodes in a graph becomes diff --git a/src/core/RandomAccessBinary.cpp b/src/core/RandomAccessBinary.cpp index 9e093d4..fada871 100644 --- a/src/core/RandomAccessBinary.cpp +++ b/src/core/RandomAccessBinary.cpp @@ -1,5 +1,6 @@ #include "RandomAccessBinary.h" #include +#include RandomAccessBinary::RandomAccessBinary() { diff --git a/src/core/RandomAccessBinary.h b/src/core/RandomAccessBinary.h index d6b44cd..5846fb9 100644 --- a/src/core/RandomAccessBinary.h +++ b/src/core/RandomAccessBinary.h @@ -16,10 +16,10 @@ public: RandomAccessBinary(); RandomAccessBinary(uint possible_packetsize); - ~RandomAccessBinary(); + virtual ~RandomAccessBinary(); - void setEndianness(RandomAccessBinary::Endianness endianness); - const RandomAccessBinary::Endianness getEndianness(); + void setEndianness(Endianness endianess); + const Endianness getEndianness(); void setBytes(uint position, const std::vector& data); void setByte(uint position, const uint8_t& data);