commit | a40569725b8198acb2fd6aa043bc5fca7e0e388c | [log] [tgz] |
---|---|---|
author | Jeff Thompson <jefft0@gmail.com> | Thu Aug 22 11:52:21 2013 -0700 |
committer | Jeff Thompson <jefft0@gmail.com> | Thu Aug 22 11:52:21 2013 -0700 |
tree | 582cdbc59998dcf2ae5f2c77fa538e9d5b056932 | |
parent | b09fcc17d3ac715bc29b78e3952d12a091bad27f [diff] [blame] |
In Transport, added getIsConnected
diff --git a/ndn-cpp/transport/transport.cpp b/ndn-cpp/transport/transport.cpp index cbcb659..feb1345 100644 --- a/ndn-cpp/transport/transport.cpp +++ b/ndn-cpp/transport/transport.cpp
@@ -25,6 +25,11 @@ throw logic_error("unimplemented"); } +bool Transport::getIsConnected() +{ + throw logic_error("unimplemented"); +} + void Transport::close() { }