| /*! | |
| * Copyright (c) 2016 by Contributors | |
| * \file caffe_stream.cc | |
| * \brief define stream opertors >> and << | |
| * \author Haoran Wang | |
| */ | |
| #include"caffe_stream.h" | |
| namespace dmlc { | |
| namespace parameter { | |
| std::istringstream &operator>>(std::istringstream &is, ::caffe::LayerParameter ¶_) { | |
| return is; | |
| } | |
| std::ostream &operator<<(std::ostream &os, ::caffe::LayerParameter ¶_) { | |
| return os; | |
| } | |
| } | |
| } |