diff options
author | Mark Spruiell <mes@zeroc.com> | 2017-10-19 11:59:16 -0700 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2017-10-19 11:59:16 -0700 |
commit | 79292e9681394e876849f2e3344294d4e01f972b (patch) | |
tree | 1bd398958422d5cc109fcfd1c6c1c1575b37dee0 /cpp/src/slice2matlab/Main.cpp | |
parent | Adding escape test and related fixes (diff) | |
download | ice-79292e9681394e876849f2e3344294d4e01f972b.tar.bz2 ice-79292e9681394e876849f2e3344294d4e01f972b.tar.xz ice-79292e9681394e876849f2e3344294d4e01f972b.zip |
Adding missing doc/copyright
Diffstat (limited to 'cpp/src/slice2matlab/Main.cpp')
-rw-r--r-- | cpp/src/slice2matlab/Main.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/cpp/src/slice2matlab/Main.cpp b/cpp/src/slice2matlab/Main.cpp index dcf7708ce1a..4f1cf1cffa8 100644 --- a/cpp/src/slice2matlab/Main.cpp +++ b/cpp/src/slice2matlab/Main.cpp @@ -2590,6 +2590,9 @@ CodeVisitor::visitClassDefStart(const ClassDefPtr& p) IceUtilInternal::Output out; openClass(abs, _dir, out); + writeDocSummary(out, p); + writeCopyright(out, p->file()); + out << nl << "classdef (Abstract) " << name; if(bases.empty()) { @@ -3164,6 +3167,8 @@ CodeVisitor::visitSequence(const SequencePtr& p) IceUtilInternal::Output out; openClass(abs, _dir, out); + writeCopyright(out, p->file()); + out << nl << "classdef " << name; out.inc(); out << nl << "methods(Static)"; @@ -3421,6 +3426,8 @@ CodeVisitor::visitDictionary(const DictionaryPtr& p) IceUtilInternal::Output out; openClass(abs, _dir, out); + writeCopyright(out, p->file()); + out << nl << "classdef " << name; out.inc(); out << nl << "methods(Access=private)"; |