00001 /* 00002 * this file describes how the usage in namespaces in libopie2 should be done 00003 * ODP is the namespace for whole opie2 stuff 00004 * the parts are separated as follow: 00005 * Net: opienet2 00006 * Pim: opiepim2 00007 * Db: opiedb2 00008 * Core: opiecore2 00009 * Mm: opiemm2 00010 * Ui: opieui2 00011 * a class MUST start with O - so we make sure that it does not 00012 * conflict with other stuff. 00013 * don't use "using namespace .." in implementations. 00014 */ 00015 /* 00016 This file is part of the Opie Project 00017 Copyright (C) The Main Author <main-author@whereever.org> 00018 =. Copyright (C) The Opie Team <opie-devel@handhelds.org> 00019 .=l. 00020 .>+-= 00021 _;:, .> :=|. This program is free software; you can 00022 .> <`_, > . <= redistribute it and/or modify it under 00023 :`=1 )Y*s>-.-- : the terms of the GNU Library General Public 00024 .="- .-=="i, .._ License as published by the Free Software 00025 - . .-<_> .<> Foundation; either version 2 of the License, 00026 ._= =} : or (at your option) any later version. 00027 .%`+i> _;_. 00028 .i_,=:_. -<s. This program is distributed in the hope that 00029 + . -:. = it will be useful, but WITHOUT ANY WARRANTY; 00030 : .. .:, . . . without even the implied warranty of 00031 =_ + =;=|` MERCHANTABILITY or FITNESS FOR A 00032 _.=:. : :=>`: PARTICULAR PURPOSE. See the GNU 00033 ..}^=.= = ; Library General Public License for more 00034 ++= -. .` .: details. 00035 : = ...= . :.=- 00036 -. .:....=;==+<; You should have received a copy of the GNU 00037 -_. . . )=. = Library General Public License along with 00038 -- :-=` this library; see the file COPYING.LIB. 00039 If not, write to the Free Software Foundation, 00040 Inc., 59 Temple Place - Suite 330, 00041 Boston, MA 02111-1307, USA. 00042 */ 00043 00044 #ifndef THISFILE_H 00045 #define THISFILE_H 00046 00047 /* OPIE */ 00048 opie (and for now, qpe) includes here 00049 00050 /* QT */ 00051 qte includes here 00052 00053 /* STD */ 00054 00055 namespace ODP 00056 { 00057 namspace Net { 00058 classes here 00059 } 00060 } 00061 00062 #endif 00063
1.4.2