diff options
author | Rüdiger Timm <rt@openoffice.org> | 2004-03-30 15:44:08 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2004-03-30 15:44:08 +0000 |
commit | d0f2e717bdbd22f9c769cf8f24a1140160987244 (patch) | |
tree | f93a72ddae0f99d5f24468b0f2142d8bcbce431b /idlc/inc | |
parent | 3b56028999deb982ded123c107da226f0b128f2a (diff) |
INTEGRATION: CWS sb14 (1.1.96); FILE MERGED
2004/03/01 12:53:50 sb 1.1.96.1: #i21150# Added optional interface inheritance; added -stdin switch; do not warn about bad member names of com.sun.star.uno.Uik; some general clean up and added const qualifiers.
Diffstat (limited to 'idlc/inc')
-rw-r--r-- | idlc/inc/idlc/options.hxx | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/idlc/inc/idlc/options.hxx b/idlc/inc/idlc/options.hxx index 2fedee1a38f1..35352ed315a0 100644 --- a/idlc/inc/idlc/options.hxx +++ b/idlc/inc/idlc/options.hxx @@ -2,9 +2,9 @@ * * $RCSfile: options.hxx,v $ * - * $Revision: 1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: jsc $ $Date: 2001-03-15 12:23:01 $ + * last change: $Author: rt $ $Date: 2004-03-30 16:44:08 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -100,15 +100,13 @@ public: throw( IllegalArgument ); const OptionMap& getOptions(); - sal_uInt16 getNumberOfInputFiles() const; - const ::rtl::OString getInputFile(sal_uInt16 index) - throw( IllegalArgument ); - - const StringVector& getInputFiles(); + const StringVector& getInputFiles() const { return m_inputFiles; } + bool readStdin() const { return m_stdin; } protected: ::rtl::OString m_program; StringVector m_inputFiles; + bool m_stdin; OptionMap m_options; }; |