feat(core): rename linphone.h to enums.h

This commit is contained in:
Ronan Abhamon 2017-08-17 14:34:06 +02:00
parent d986f2e447
commit bbc0835236
3 changed files with 7 additions and 7 deletions

View file

@ -32,6 +32,7 @@ set(LINPHONE_CXX_OBJECTS_PRIVATE_HEADER_FILES
db/abstract/abstract-db-p.h
db/abstract/abstract-db.h
db/events-db.h
enums.h
event/call-event.h
event/event.h
event/message-event.h
@ -42,7 +43,6 @@ set(LINPHONE_CXX_OBJECTS_PRIVATE_HEADER_FILES
object/object.h
object/singleton.h
utils/general.h
utils/linphone.h
utils/utils.h
)

View file

@ -1,5 +1,5 @@
/*
* linphone.h
* enums.h
* Copyright (C) 2017 Belledonne Communications SARL
*
* This program is free software: you can redistribute it and/or modify
@ -16,10 +16,10 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _LINPHONE_H_
#define _LINPHONE_H_
#ifndef _ENUMS_H_
#define _ENUMS_H_
#include "general.h"
#include "utils/general.h"
// =============================================================================
@ -43,4 +43,4 @@ enum MessageState {
LINPHONE_END_NAMESPACE
#endif // ifndef _LINPHONE_H_
#endif // ifndef _ENUMS_H_

View file

@ -22,8 +22,8 @@
#include <list>
#include <string>
#include "enums.h"
#include "event.h"
#include "utils/linphone.h"
// =============================================================================