Commit 55784ffe authored by Davis King's avatar Davis King

Simplified pipe examples by removing the ::kernel_1a stuff now that it is

no longer required.

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%404219
parent 4d119367
...@@ -115,7 +115,7 @@ public: ...@@ -115,7 +115,7 @@ public:
// There are only two requirements on the type of objects you can use in a // There are only two requirements on the type of objects you can use in a
// pipe, first they must have a default constructor and second they must // pipe, first they must have a default constructor and second they must
// be swappable by a global swap(). // be swappable by a global swap().
dlib::pipe<job>::kernel_1a job_pipe; dlib::pipe<job> job_pipe;
private: private:
void thread () void thread ()
......
...@@ -48,9 +48,6 @@ typedef type_safe_union<int, float, std::string> tsu_type; ...@@ -48,9 +48,6 @@ typedef type_safe_union<int, float, std::string> tsu_type;
*/ */
// And here we have a typedef for the pipe we will be using
typedef dlib::pipe<tsu_type>::kernel_1a pipe_type;
// ---------------------------------------------------------------------------------------- // ----------------------------------------------------------------------------------------
class pipe_example : private threaded_object class pipe_example : private threaded_object
...@@ -81,7 +78,7 @@ public: ...@@ -81,7 +78,7 @@ public:
} }
// Here we declare our pipe object. It will contain our messages. // Here we declare our pipe object. It will contain our messages.
pipe_type message_pipe; dlib::pipe<tsu_type> message_pipe;
private: private:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment