From 10a62a6288f9a32257a1e8f43e25f35e96fc7708 Mon Sep 17 00:00:00 2001 From: Andrej Babic Date: Tue, 13 Feb 2018 15:24:54 +0100 Subject: [PATCH] Fix quick start example --- README.md | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 4ce169b..30fdb5a 100644 --- a/README.md +++ b/README.md @@ -41,8 +41,8 @@ save this file into **SfFormat.cpp**. #include #include -#include "config.hpp" -#include "H5Format.hpp" +#include "cpp_h5_writer/config.hpp" +#include "cpp_h5_writer/H5Format.hpp" using namespace std; using s_ptr = shared_ptr; @@ -153,10 +153,11 @@ This file is called **sf\_h5\_zmq\_writer\_h5**. #include #include -#include "config.hpp" -#include "ProcessManager.hpp" -#include "WriterManager.hpp" -#include "ZmqReceiver.hpp" +#include "cpp_h5_writer/config.hpp" +#include "cpp_h5_writer/ProcessManager.hpp" +#include "cpp_h5_writer/WriterManager.hpp" +#include "cpp_h5_writer/ZmqReceiver.hpp" + #include "SfFormat.cpp" int main (int argc, char *argv[])