commit | c9765dffb6aeb7d636511e118b847c4c37bf3d5b | [log] [tgz] |
---|---|---|
author | Alexander Afanasyev <alexander.afanasyev@ucla.edu> | Sat Jan 25 19:24:27 2014 -0800 |
committer | Alexander Afanasyev <alexander.afanasyev@ucla.edu> | Sat Jan 25 23:05:50 2014 -0800 |
tree | a5d65ec784b6e7907a36fe1c4c29dad94217d474 | |
parent | 32bfeb3401e625d2e5c1ebad87ddb4923e0463ff [diff] [blame] |
cs: Update interface Change-Id: I9b637c21ae15e784317568affdc530c21ec32e9a
diff --git a/daemon/table/cs.cpp b/daemon/table/cs.cpp index d437dbd..10f465e 100644 --- a/daemon/table/cs.cpp +++ b/daemon/table/cs.cpp
@@ -19,15 +19,15 @@ } bool -Cs::insert(shared_ptr<Data> data) +Cs::insert(const Data &data) { return false; } -shared_ptr<Data> +const Data* Cs::find(const Interest& interest) { - return shared_ptr<Data>(); + return 0; }