00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef SCHROOT_LISTMOUNTS_OPTIONS_H
00021 #define SCHROOT_LISTMOUNTS_OPTIONS_H
00022
00023 #include <schroot-base/schroot-base-options.h>
00024
00025 #include <string>
00026
00027 namespace schroot_listmounts
00028 {
00029
00033 class options : public schroot_base::options
00034 {
00035 public:
00037 typedef std::tr1::shared_ptr<options> ptr;
00038
00040 static const action_type ACTION_LISTMOUNTS;
00041
00043 options ();
00044
00046 virtual ~options ();
00047
00049 std::string mountpoint;
00050
00051 protected:
00052 virtual void
00053 add_options ();
00054
00055 virtual void
00056 add_option_groups ();
00057
00058 virtual void
00059 check_options ();
00060
00062 boost::program_options::options_description mount;
00063 };
00064
00065 }
00066
00067 #endif
00068
00069
00070
00071
00072
00073