Skip to content

Commit

Permalink
created WebRequestHandler Interface to allow lib users to implement t…
Browse files Browse the repository at this point in the history
…heir own server request handers

pulled Visualizer server logic out of the main WebServer class, and implemented it using a WebRequestHandler
  • Loading branch information
cyrush committed Feb 24, 2016
1 parent e06add7 commit 839a4ef
Show file tree
Hide file tree
Showing 8 changed files with 526 additions and 242 deletions.
4 changes: 3 additions & 1 deletion src/libs/conduit_io/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ configure_file ("${CMAKE_CURRENT_SOURCE_DIR}/Conduit_IO_Config.hpp.in"
set(conduit_io_headers
conduit_io.hpp
conduit_web.hpp
conduit_web_visualizer.hpp
Conduit_IO_Exports.hpp
${CMAKE_CURRENT_BINARY_DIR}/Conduit_IO_Config.hpp)

Expand All @@ -76,7 +77,8 @@ set(conduit_io_headers
#
set(conduit_io_sources
conduit_io.cpp
conduit_web.cpp)
conduit_web.cpp
conduit_web_visualizer.cpp)

if(HDF5_FOUND)
list(APPEND conduit_io_headers conduit_hdf5.hpp)
Expand Down
2 changes: 1 addition & 1 deletion src/libs/conduit_io/conduit_io.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@


#include "conduit_web.hpp"

#include "conduit_web_visualizer.hpp"

// include optional libs

Expand Down
Loading

0 comments on commit 839a4ef

Please sign in to comment.