Warning, file /frameworks/ktexteditor/src/vimode/commandinterface.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 /*
0002     SPDX-FileCopyrightText: 2013 Simon St James <kdedevel@etotheipiplusone.com>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #ifndef KATEVI_COMMAND_INTERFACE_H
0008 #define KATEVI_COMMAND_INTERFACE_H
0009 
0010 namespace KateVi
0011 {
0012 class GlobalState;
0013 class InputModeManager;
0014 
0015 class KateViCommandInterface
0016 {
0017 public:
0018     void setViGlobal(GlobalState *g)
0019     {
0020         m_viGlobal = g;
0021     }
0022     void setViInputModeManager(InputModeManager *m)
0023     {
0024         m_viInputModeManager = m;
0025     }
0026 
0027 protected:
0028     GlobalState *m_viGlobal;
0029     InputModeManager *m_viInputModeManager;
0030 };
0031 
0032 }
0033 
0034 #endif /* KATEVI_COMMAND_INTERFACE_H */