VikasMahato

beziersh.hxx

Feb 23rd, 2018
252
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.63 KB | None | 0 0
  1. #ifndef INCLUDED_SC_SOURCE_UI_INC_BEZIERSH_HXX
  2. #define INCLUDED_SC_SOURCE_UI_INC_BEZIERSH_HXX
  3.  
  4. #include <sfx2/shell.hxx>
  5. #include <sfx2/module.hxx>
  6.  
  7. #include <shellids.hxx>
  8.  
  9. class ScViewData;
  10. class SfxItemSet;
  11.  
  12. class ScBezierShell: public SfxShell
  13. {
  14.     SfxItemSet*         pGetStateSet;
  15. public:
  16.     SFX_DECL_INTERFACE(SC_BEZIERSHELL)
  17.  
  18. private:
  19.     /// SfxInterface initializer.
  20.     static void InitInterface_Impl();
  21.  
  22. public:
  23.             ScBezierShell(ScViewData &rView);
  24.  
  25.     void    GetState(SfxItemSet &);
  26.     void    Execute(SfxRequest const &);
  27. };
  28.  
  29. #endif
  30.  
  31. /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Add Comment
Please, Sign In to add comment