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