summaryrefslogtreecommitdiff
path: root/Rx/v2
diff options
context:
space:
mode:
authorKirk Shoop <kirk.shoop@microsoft.com>2016-11-25 13:27:18 -0800
committerKirk Shoop <kirk.shoop@microsoft.com>2016-11-25 17:23:54 -0800
commit882fec8bf83388c216ccd1439ae9702ce0154e4f (patch)
treee98352fbf569fcfedebbc36c355b77ba2623eb9b /Rx/v2
parent38412ad18375c0a5b7ce9be6a9985d4254ea5ba0 (diff)
downloadRxCpp-882fec8bf83388c216ccd1439ae9702ce0154e4f.tar.gz
use rx lite in example
Diffstat (limited to 'Rx/v2')
-rw-r--r--Rx/v2/examples/linesfrombytes/main.cpp15
1 files changed, 14 insertions, 1 deletions
diff --git a/Rx/v2/examples/linesfrombytes/main.cpp b/Rx/v2/examples/linesfrombytes/main.cpp
index ef7601e..cd46d15 100644
--- a/Rx/v2/examples/linesfrombytes/main.cpp
+++ b/Rx/v2/examples/linesfrombytes/main.cpp
@@ -1,5 +1,18 @@
-#include "rxcpp/rx.hpp"
+#include <rxcpp/rx-lite.hpp>
+#include <rxcpp/operators/rx-reduce.hpp>
+#include <rxcpp/operators/rx-filter.hpp>
+#include <rxcpp/operators/rx-map.hpp>
+#include <rxcpp/operators/rx-tap.hpp>
+#include <rxcpp/operators/rx-concat_map.hpp>
+#include <rxcpp/operators/rx-flat_map.hpp>
+#include <rxcpp/operators/rx-concat.hpp>
+#include <rxcpp/operators/rx-merge.hpp>
+#include <rxcpp/operators/rx-repeat.hpp>
+#include <rxcpp/operators/rx-publish.hpp>
+#include <rxcpp/operators/rx-ref_count.hpp>
+#include <rxcpp/operators/rx-window.hpp>
+#include <rxcpp/operators/rx-window_toggle.hpp>
namespace Rx {
using namespace rxcpp;
using namespace rxcpp::sources;