]> cygwin.com Git - cygwin-apps/setup.git/blobdiff - libgetopt++/include/getopt++/BoolOption.h
2002-04-23 Robert Collins <rbtcollins@hotmail.com>
[cygwin-apps/setup.git] / libgetopt++ / include / getopt++ / BoolOption.h
index 19edc2c8f45e3e840e9a8f8617e4dab7d068f7e0..077c55600064366c204b2032d73d230e32525e86 100644 (file)
@@ -24,12 +24,12 @@ class BoolOption : public Option
 {
 public:
   BoolOption(bool const defaultvalue, char shortopt, char const *longopt = 0,
-            String const &shorthelp = String(), 
+            string const &shorthelp = string(), 
             OptionSet &owner=GetOption::GetInstance());
   virtual ~ BoolOption ();
-  virtual String const shortOption () const;
+  virtual string const shortOption () const;
   virtual struct option longOption () const;
-  virtual String const shortHelp () const;
+  virtual string const shortHelp () const;
   virtual bool Process (char const *);
   operator bool () const;
  
@@ -39,7 +39,7 @@ private:
   bool _ovalue;
   char _shortopt;
   char const *_longopt;
-  String _shorthelp;
+  string _shorthelp;
 };
 
 #endif // _BOOLOPTION_H_
This page took 0.023097 seconds and 5 git commands to generate.