fix(core): sort include

This commit is contained in:
Ronan Abhamon 2017-09-07 16:00:58 +02:00
parent f94f51521c
commit 795b46413b
3 changed files with 8 additions and 12 deletions

View file

@ -21,8 +21,6 @@
#include "linphone/utils/utils.h"
#include "chat-room-p.h"
#include "chat-room.h"
#include "imdn.h"
#include "logger/logger.h"
#include "utils/content-type.h"
@ -35,8 +33,6 @@ using namespace std;
LINPHONE_BEGIN_NAMESPACE
// =============================================================================
ChatRoomPrivate::ChatRoomPrivate (LinphoneCore *core)
: core(core), isComposingHandler(core, this) {}

View file

@ -16,16 +16,16 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "logger/logger.h"
#include "imdn.h"
#include "logger/logger.h"
// =============================================================================
using namespace std;
LINPHONE_BEGIN_NAMESPACE
// =============================================================================
const string Imdn::imdnPrefix = "/imdn:imdn";
void Imdn::parse (ChatRoom &cr, const string &text) {

View file

@ -16,19 +16,19 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "is-composing.h"
#include "linphone/utils/utils.h"
#include "chat-room-p.h"
#include "logger/logger.h"
#include "linphone/utils/utils.h"
#include "is-composing.h"
// =============================================================================
using namespace std;
LINPHONE_BEGIN_NAMESPACE
// =============================================================================
const string IsComposing::isComposingPrefix = "/xsi:isComposing";
// -----------------------------------------------------------------------------