r3337 - trunk/libminisip/include/libminisip/signaling/sdp
mafe at minisip.org
mafe at minisip.org
Wed Jun 27 13:19:44 CEST 2007
Author: mafe
Date: 2007-06-27 13:19:44 +0200 (Wed, 27 Jun 2007)
New Revision: 3337
Added:
trunk/libminisip/include/libminisip/signaling/sdp/SdpHeaderI.h
Log:
Added missing header file (SdpHeaderI.h).
Added: trunk/libminisip/include/libminisip/signaling/sdp/SdpHeaderI.h
===================================================================
--- trunk/libminisip/include/libminisip/signaling/sdp/SdpHeaderI.h (rev 0)
+++ trunk/libminisip/include/libminisip/signaling/sdp/SdpHeaderI.h 2007-06-27 11:19:44 UTC (rev 3337)
@@ -0,0 +1,58 @@
+/*
+ Copyright (C) 2004-2006 the Minisip Team
+
+ This library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Lesser General Public
+ License as published by the Free Software Foundation; either
+ version 2.1 of the License, or (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ Lesser General Public License for more details.
+
+ You should have received a copy of the GNU Lesser General Public
+ License along with this library; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ */
+
+/* Copyright (C) 2004
+ *
+ * Authors: Erik Eliasson <eliasson at it.kth.se>
+ * Johan Bilien <jobi at via.ecp.fr>
+*/
+
+/* Name
+ * SdpHeaderI.h
+ * Author
+ * Erik Eliasson, eliasson at it.kth.se
+ * Purpose
+ *
+*/
+
+#ifndef SDPHEADERI_H
+#define SDPHEADERI_H
+
+#include<libminisip/libminisip_config.h>
+
+#include<libminisip/signaling/sdp/SdpHeader.h>
+
+
+class LIBMINISIP_API SdpHeaderI : public SdpHeader{
+ public:
+ SdpHeaderI(std::string buildFrom);
+ virtual ~SdpHeaderI();
+
+ virtual std::string getMemObjectType() const {return "SdpHeaderI";}
+
+ std::string getSessionInformation();
+ void setSessionInformation(std::string s);
+
+ virtual std::string getString();
+
+ private:
+ std::string session_information;
+
+};
+
+#endif
More information about the Minisip-devel
mailing list