SVN commit 1218181 by kloecker: Point this page to the corresponding KDE Community Wiki page. M +2 -128 coding-korganizer.php --- trunk/www/areas/pim/development/coding-korganizer.php #1218180:1218181 @@ -6,136 +6,10 @@ ?> +

The content of pim.kde.org is being moved to the KDE PIM section of the KDE Community Wiki.

+

This page has already been moved.

-

-This document describes the basic guidelines for hacking on KOrganizer, -libkcal and libkabc. -

- -

Formatting

- - - -

- -

-void MyClass::myFunction( MyPointer *pointer, MyReference &ref,
-                          Argl *oerx )
-{
-  if ( blah == false ) {
-    blubbVariable = arglValue;
-  } else {
-    blubbVariable = oerxValue;
-  }
-}
-
- - -

Header Formatting

- - - -
-#ifndef XKJ_MYCLASS_H
-#define XKJ_MYCLASS_H
-
-namespace XKJ {
-
-class MyClass
-{
-  public:
-    MyClass();
-
-  private:
-    int mMyInt;
-};
-
-}
-
-#endif
-
- -

API docs

- - - -
-  /**
-    This function makes tea.
-
-    @param cups number of cups.
-    @result tea
-  */
-  Tea *makeTea( int cups );
-
- - -

Class and File Names

- - - - -

Class and Variable Names

- - - -

Misc

- - -