author | mickeyl <mickeyl> | 2004-11-16 19:14:18 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2004-11-16 19:14:18 (UTC) |
commit | ea3945a9bd8f9830f70b1efa133f9df13b19362f (patch) (side-by-side diff) | |
tree | f2ea22cc50e9aa8aa73ee7dea148f41c563c9666 /libopie/pim/opimmaintainer.cpp | |
parent | 1c6f490e8541626f68422e0a3a7c7281d7f5b7d3 (diff) | |
download | opie-ea3945a9bd8f9830f70b1efa133f9df13b19362f.zip opie-ea3945a9bd8f9830f70b1efa133f9df13b19362f.tar.gz opie-ea3945a9bd8f9830f70b1efa133f9df13b19362f.tar.bz2 |
libopie1 goes into unsupported
Diffstat (limited to 'libopie/pim/opimmaintainer.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r-- | libopie/pim/opimmaintainer.cpp | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/libopie/pim/opimmaintainer.cpp b/libopie/pim/opimmaintainer.cpp deleted file mode 100644 index 92cb25a..0000000 --- a/libopie/pim/opimmaintainer.cpp +++ b/dev/null @@ -1,37 +0,0 @@ -#include "opimmaintainer.h" - -OPimMaintainer::OPimMaintainer( int mode, int uid ) - : m_mode(mode), m_uid(uid ) -{} -OPimMaintainer::~OPimMaintainer() { -} -OPimMaintainer::OPimMaintainer( const OPimMaintainer& main ) { - *this = main; -} -OPimMaintainer &OPimMaintainer::operator=( const OPimMaintainer& main ) { - m_mode = main.m_mode; - m_uid = main.m_uid; - - return *this; -} -bool OPimMaintainer::operator==( const OPimMaintainer& main ) { - if (m_mode != main.m_mode ) return false; - if (m_uid != main.m_uid ) return false; - - return true; -} -bool OPimMaintainer::operator!=( const OPimMaintainer& main ) { - return !(*this == main ); -} -int OPimMaintainer::mode()const { - return m_mode; -} -int OPimMaintainer::uid()const { - return m_uid; -} -void OPimMaintainer::setMode( int mo) { - m_mode = mo; -} -void OPimMaintainer::setUid( int uid ) { - m_uid = uid; -} |