comparison OrthancServer/Plugins/Engine/PluginsManager.cpp @ 4045:05b8fd21089c framework

fix path
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 10 Jun 2020 21:27:31 +0200
parents d25f4c0fa160
children 1bd14c900699
comparison
equal deleted inserted replaced
4044:d25f4c0fa160 4045:05b8fd21089c
29 * You should have received a copy of the GNU General Public License 29 * You should have received a copy of the GNU General Public License
30 * along with this program. If not, see <http://www.gnu.org/licenses/>. 30 * along with this program. If not, see <http://www.gnu.org/licenses/>.
31 **/ 31 **/
32 32
33 33
34 #include "../../OrthancServer/PrecompiledHeadersServer.h" 34 #include "../../Sources/PrecompiledHeadersServer.h"
35 #include "PluginsManager.h" 35 #include "PluginsManager.h"
36 36
37 #if ORTHANC_ENABLE_PLUGINS != 1 37 #if ORTHANC_ENABLE_PLUGINS != 1
38 #error The plugin support is disabled 38 #error The plugin support is disabled
39 #endif 39 #endif
40 40
41 #include "../../Core/HttpServer/HttpOutput.h" 41 #include "../../../OrthancFramework/Sources/HttpServer/HttpOutput.h"
42 #include "../../Core/Logging.h" 42 #include "../../../OrthancFramework/Sources/Logging.h"
43 #include "../../Core/OrthancException.h" 43 #include "../../../OrthancFramework/Sources/OrthancException.h"
44 #include "../../Core/Toolbox.h" 44 #include "../../../OrthancFramework/Sources/Toolbox.h"
45 45
46 #include <cassert> 46 #include <cassert>
47 #include <memory> 47 #include <memory>
48 #include <boost/filesystem.hpp> 48 #include <boost/filesystem.hpp>
49 49