00001 /* Copyright (C) 2002 Carsten Griwodz 00002 * 00003 * You are allowed to use all other parts of the code under the following terms: 00004 * 00005 * For non-commercial use, this code may be used in unmodified form 00006 * provided that this copyright notice and this permission notice appear 00007 * in supporting documentation. 00008 * 00009 * The code may be made subject to the terms of the GNU General Public 00010 * License, Version 2, and re-distributed under the terms of this license. 00011 * 00012 * Commercial use other than under the terms of the GNU General Public 00013 * License is allowed only after negotiation of conditions with the authors. 00014 */ 00015 #ifndef TEST_CACHING_UPLINK_H 00016 #define TEST_CACHING_UPLINK_H 00017 00018 #include "TestCachingControl.h" 00019 00023 class TestCachingUplink : public TestCachingControl 00024 { 00025 public: 00026 TestCachingUplink( MNSelector& selector ); 00027 virtual ~TestCachingUplink( ); 00028 00029 virtual void MsgOut( const MNString& text ); 00030 00031 private: 00032 int _last_session; 00033 00034 int _last_cseq_sent; 00035 }; 00036 00037 #endif /* TEST_CACHING_UPLINK_H */ 00038