Commit 1e6c4d76 authored by Paul Asmuth's avatar Paul Asmuth
Browse files

include path fixes

parent ce962660
Loading
Loading
Loading
Loading
+7 −7
Original line number Diff line number Diff line
@@ -10,13 +10,13 @@
#ifndef _libstx_AREACHART_H
#define _libstx_AREACHART_H
#include <stdlib.h>
#include "stx/charts/axisdefinition.h"
#include "stx/charts/domain.h"
#include "stx/charts/continuousdomain.h"
#include "stx/charts/drawable.h"
#include "stx/charts/canvas.h"
#include "stx/charts/colorpalette.h"
#include "stx/charts/rendertarget.h"
#include "cplot/axisdefinition.h"
#include "cplot/domain.h"
#include "cplot/continuousdomain.h"
#include "cplot/drawable.h"
#include "cplot/canvas.h"
#include "cplot/colorpalette.h"
#include "cplot/rendertarget.h"

namespace stx {
namespace chart {
+2 −2
Original line number Diff line number Diff line
@@ -12,8 +12,8 @@
#include <utility>
#include <string>
#include <vector>
#include "stx/charts/domain.h"
#include "stx/charts/domainprovider.h"
#include "cplot/domain.h"
#include "cplot/domainprovider.h"

namespace stx {
namespace chart {
+1 −1
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@
 * copy of the GNU General Public License along with this program. If not, see
 * <http://www.gnu.org/licenses/>.
 */
#include "stx/charts/barchart.h"
#include "cplot/barchart.h"

namespace stx {
namespace chart {
+9 −9
Original line number Diff line number Diff line
@@ -11,15 +11,15 @@
#define _libstx_BARCHART_H
#include <stdlib.h>
#include <memory>
#include "stx/charts/axisdefinition.h"
#include "stx/charts/canvas.h"
#include "stx/charts/colorpalette.h"
#include "stx/charts/domain.h"
#include "stx/charts/continuousdomain.h"
#include "stx/charts/discretedomain.h"
#include "stx/charts/drawable.h"
#include "stx/charts/rendertarget.h"
#include "stx/charts/seriesjoin.h"
#include "cplot/axisdefinition.h"
#include "cplot/canvas.h"
#include "cplot/colorpalette.h"
#include "cplot/domain.h"
#include "cplot/continuousdomain.h"
#include "cplot/discretedomain.h"
#include "cplot/drawable.h"
#include "cplot/rendertarget.h"
#include "cplot/seriesjoin.h"
#include <stx/exception.h>

namespace stx {
+4 −4
Original line number Diff line number Diff line
@@ -8,10 +8,10 @@
 * <http://www.gnu.org/licenses/>.
 */
#include <stdlib.h>
#include "stx/charts/canvas.h"
#include "stx/charts/rendertarget.h"
#include "stx/charts/domain.h"
#include "stx/charts/svgtarget.h"
#include "cplot/canvas.h"
#include "cplot/rendertarget.h"
#include "cplot/domain.h"
#include "cplot/svgtarget.h"

namespace stx {
namespace chart {
Loading