diff options
author | Michi Henning <michi@zeroc.com> | 2004-06-18 06:02:44 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2004-06-18 06:02:44 +0000 |
commit | a3748160f1feb65698beee23c3c24590d40a881d (patch) | |
tree | 9bdeefa342cb8b8de7af45b4538d7f0d62ea0e61 /cpp/src/slice2cs/Main.cpp | |
parent | Added support for --tie option to slice2cs. (diff) | |
download | ice-a3748160f1feb65698beee23c3c24590d40a881d.tar.bz2 ice-a3748160f1feb65698beee23c3c24590d40a881d.tar.xz ice-a3748160f1feb65698beee23c3c24590d40a881d.zip |
Added support for --imple-tie to slice2cs.
Diffstat (limited to 'cpp/src/slice2cs/Main.cpp')
-rw-r--r-- | cpp/src/slice2cs/Main.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/cpp/src/slice2cs/Main.cpp b/cpp/src/slice2cs/Main.cpp index b101e76b700..ed4c7938750 100644 --- a/cpp/src/slice2cs/Main.cpp +++ b/cpp/src/slice2cs/Main.cpp @@ -235,7 +235,7 @@ main(int argc, char* argv[]) } else { - Gen gen(argv[0], icecpp.getBaseName(), includePaths, output, impl); + Gen gen(argv[0], icecpp.getBaseName(), includePaths, output, impl, implTie); if(!gen) { p->destroy(); @@ -250,12 +250,10 @@ main(int argc, char* argv[]) { gen.generateImpl(p); } -#if 0 if(implTie) { gen.generateImplTie(p); } -#endif } p->destroy(); |