ENH: codeStream: added codeLibs

This commit is contained in:
mattijs
2011-03-21 17:54:20 +00:00
parent c81dd4ee08
commit cf99e5c800
11 changed files with 122 additions and 48 deletions

View File

@ -66,6 +66,9 @@ class dynamicCodeContext
//- Optional "codeOptions" entry
string options_;
//- Optional "codeLib" entry
string libs_;
//- Calculated SHA1Digest
SHA1Digest sha1_;
@ -96,6 +99,12 @@ public:
return options_;
}
//- Return the code-libs
const string& libs() const
{
return libs_;
}
//- Return the code
const string& code() const
{