Skip to content
Snippets Groups Projects
Commit 3a27b9ca authored by yanmorin's avatar yanmorin
Browse files

No more needs for subcall classes
parent f39e33ae
No related branches found
No related tags found
No related merge requests found
...@@ -8,6 +8,6 @@ libsflphoneguiserver_la_CXXFLAGS = -DPREFIX=\"$(prefix)\" -DPROGSHAREDIR=\"${dat ...@@ -8,6 +8,6 @@ libsflphoneguiserver_la_CXXFLAGS = -DPREFIX=\"$(prefix)\" -DPROGSHAREDIR=\"${dat
libsflphoneguiserver_la_CPPFLAGS = -I$(top_srcdir)/libs -I$(top_srcdir)/src $(libccext2_CFLAGS) libsflphoneguiserver_la_CPPFLAGS = -I$(top_srcdir)/libs -I$(top_srcdir)/src $(libccext2_CFLAGS)
libsflphoneguiserver_la_LIBADD = libsflphoneguiserver_la_LIBADD =
noinst_HEADERS = responsemessage.h request.h requestfactory.h subcall.h \ noinst_HEADERS = responsemessage.h request.h requestfactory.h \
argtokenizer.h tcpsessionio.h requestmanager.h guiserver.h guiserverimpl.h sessionio.h \ argtokenizer.h tcpsessionio.h requestmanager.h guiserver.h guiserverimpl.h sessionio.h \
tcpsessionio.h tcpstreampool.h requestconfig.h ObjectPool.hpp ObjectPool.inl tcpsessionio.h tcpstreampool.h requestconfig.h ObjectPool.hpp ObjectPool.inl
...@@ -20,7 +20,6 @@ ...@@ -20,7 +20,6 @@
#include "global.h" #include "global.h"
#include "request.h" #include "request.h"
#include "guiserver.h" #include "guiserver.h"
#include "subcall.h"
ResponseMessage ResponseMessage
RequestCall::execute() RequestCall::execute()
......
...@@ -20,7 +20,6 @@ ...@@ -20,7 +20,6 @@
#include "global.h" #include "global.h"
#include "requestconfig.h" #include "requestconfig.h"
#include "guiserver.h" #include "guiserver.h"
#include "subcall.h"
ResponseMessage ResponseMessage
RequestGetEvents::execute() RequestGetEvents::execute()
......
/**
* Copyright (C) 2005 Savoir-Faire Linux inc.
* Author: Yan Morin <yan.morin@savoirfairelinux.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#ifndef SUBCALL_H
#define SUBCALL_H
#include <string>
/**
Contains an sequenceId and a callid. It's allow us to maintain a map of id->SubCall
@author Yan Morin
*/
class SubCall{
public:
SubCall() {}
SubCall(const std::string& seq, const std::string& callid) : _seq(seq), _callid(callid) {}
~SubCall() {}
// accessors
std::string sequenceId() const { return _seq; }
std::string callId() const { return _callid; }
private:
std::string _seq; // sequence id
std::string _callid;
};
#endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment