Change CTPP2 #include paths (add 'ctpp2/')

This commit is contained in:
kelson42 2014-05-05 14:14:11 +02:00
parent 8573f9eda0
commit 4e05d0dea6
3 changed files with 20 additions and 21 deletions

View File

@ -19,23 +19,6 @@
#include "CTPP2VMStringLoader.hpp" #include "CTPP2VMStringLoader.hpp"
#include "CTPP2Util.hpp"
#include "CTPP2Exception.hpp"
#include "CTPP2VMExecutable.hpp"
#include "CTPP2VMInstruction.hpp"
#include "CTPP2VMMemoryCore.hpp"
#include <sys/types.h>
#include <sys/stat.h>
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <resourceTools.h>
#include <iostream>
#include <string>
namespace CTPP // C++ Template Engine namespace CTPP // C++ Template Engine
{ {

View File

@ -20,7 +20,23 @@
#ifndef _CTPP2_VM_STRING_LOADER_HPP__ #ifndef _CTPP2_VM_STRING_LOADER_HPP__
#define _CTPP2_VM_STRING_LOADER_HPP__ 1 #define _CTPP2_VM_STRING_LOADER_HPP__ 1
#include "CTPP2VMLoader.hpp" #include "ctpp2/CTPP2VMLoader.hpp"
#include "ctpp2/CTPP2Util.hpp"
#include "ctpp2/CTPP2Exception.hpp"
#include "ctpp2/CTPP2VMExecutable.hpp"
#include "ctpp2/CTPP2VMInstruction.hpp"
#include "ctpp2/CTPP2VMMemoryCore.hpp"
#include <sys/types.h>
#include <sys/stat.h>
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <resourceTools.h>
#include <iostream>
#include <string>
/** /**
@file VMStringLoader.hpp @file VMStringLoader.hpp

View File

@ -32,9 +32,9 @@
#include <pathTools.h> #include <pathTools.h>
#include <stringTools.h> #include <stringTools.h>
#include <CDT.hpp> #include <ctpp2/CDT.hpp>
#include <CTPP2FileLogger.hpp> #include <ctpp2/CTPP2FileLogger.hpp>
#include <CTPP2SimpleVM.hpp> #include <ctpp2/CTPP2SimpleVM.hpp>
#include "kiwix/ctpp2/CTPP2VMStringLoader.hpp" #include "kiwix/ctpp2/CTPP2VMStringLoader.hpp"