• Skip to content
  • Skip to link menu
Trinity API Reference
  • Trinity API Reference
  • KDevelop Generic Shell
 

KDevelop Generic Shell

  • src
api.h
1 #ifndef _API_H_
2 #define _API_H_
3 
4 
5 #include "kdevapi.h"
6 
7 
8 class CodeModel;
9 
13 class API : public KDevApi
14 {
15 public:
16 
17  virtual KDevMainWindow *mainWindow() const;
18  virtual KDevPartController *partController() const;
19  virtual KDevPluginController *pluginController() const;
20  virtual KDevCore *core() const;
21  virtual CodeModel *codeModel() const;
22 
23  static API *getInstance();
24 
25  ~API();
26 
27 protected:
28 
29  API();
30 
31 private:
32 
33  static API *s_instance;
34 
35  CodeModel *m_classStore;
36 
37 
38 };
39 
40 
41 #endif
API
API implementation.
Definition: api.h:13

KDevelop Generic Shell

Skip menu "KDevelop Generic Shell"
  • Main Page
  • Class Hierarchy
  • Alphabetical List
  • Class List
  • File List
  • Class Members
  • Related Pages

KDevelop Generic Shell

Skip menu "KDevelop Generic Shell"
  • buildtools
  •   lib
  •     base
  •     parsers
  •       autotools
  •       qmake
  •     widgets
  •   api
  • languages
  •   lib
  •     debugger
  •     designer_integration
  •     interfaces
  • lib
  •   catalog
  •   interfaces
  •     extensions
  •     external
  •     extras
  •   util
  •   widgets
  •     propeditor
  • parts
  •   documentation
  •     interfaces
  • src
  •   profileengine
  •     lib
Generated for KDevelop Generic Shell by doxygen 1.8.13
This website is maintained by Timothy Pearson.