Gitiles
Code Review
Sign In
gerrit.named-data.net
/
ndn-js
/
97e7a598e6b0b80c8733d4d005cb116afc55b193
/
.
/
src-old
/
ContentObject.js
blob: 0802479c82bcd8bedc489938c52066028588a849 [
file
] [
log
] [
blame
]
// JavaScript Document
var
ContentObject
=
function
ContentObject
(
_Signature
,
_Name
,
_SignedInfo
,
_Content
){
this
.
Signature
=
_Signature
;
this
.
Name
=
_Name
;
this
.
SignedInfo
=
_SignedInfo
;
this
.
Content
=
_Content
;
};
exports
.
ContentObject
=
ContentObject
;