00001 #ifndef TYPELIB_INSPECT_H
00002 #define TYPELIB_INSPECT_H
00003
00004 #include "mode.hh"
00005
00006 class Inspect : public Mode
00007 {
00008 public:
00009 Inspect();
00010
00011 virtual bool apply(int argc, char* const argv[]);
00012 virtual void help(std::ostream& out) const;
00013 };
00014
00015 #endif
00016