Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
liblinphone
Commits
bbd87a51
Commit
bbd87a51
authored
Aug 17, 2017
by
Ronan
Browse files
feat(core): add missing LINPHONE_PUBLIC
parent
82b3ab30
Changes
4
Hide whitespace changes
Inline
Side-by-side
src/event/call-event.h
View file @
bbd87a51
...
...
@@ -28,7 +28,7 @@ LINPHONE_BEGIN_NAMESPACE
class
Call
;
class
CallEventPrivate
;
class
CallEvent
:
public
Event
{
class
LINPHONE_PUBLIC
CallEvent
:
public
Event
{
public:
CallEvent
(
const
Call
&
message
);
CallEvent
(
const
CallEvent
&
src
);
...
...
src/event/event.h
View file @
bbd87a51
...
...
@@ -27,7 +27,7 @@ LINPHONE_BEGIN_NAMESPACE
class
EventPrivate
;
class
Event
:
public
ClonableObject
{
class
LINPHONE_PUBLIC
Event
:
public
ClonableObject
{
public:
enum
Type
{
None
,
...
...
src/event/message-event.h
View file @
bbd87a51
...
...
@@ -33,7 +33,7 @@ class ErrorInfo;
class
Message
;
class
MessageEventPrivate
;
class
MessageEvent
:
public
Event
{
class
LINPHONE_PUBLIC
MessageEvent
:
public
Event
{
public:
typedef
std
::
pair
<
std
::
string
,
std
::
string
>
CustomHeader
;
...
...
src/utils/utils.h
View file @
bbd87a51
...
...
@@ -29,15 +29,15 @@
LINPHONE_BEGIN_NAMESPACE
namespace
Utils
{
bool
iequals
(
const
std
::
string
&
a
,
const
std
::
string
&
b
);
LINPHONE_PUBLIC
bool
iequals
(
const
std
::
string
&
a
,
const
std
::
string
&
b
);
std
::
vector
<
std
::
string
>
split
(
const
std
::
string
&
str
,
const
std
::
string
&
delimiter
);
LINPHONE_PUBLIC
std
::
vector
<
std
::
string
>
split
(
const
std
::
string
&
str
,
const
std
::
string
&
delimiter
);
inline
std
::
vector
<
std
::
string
>
split
(
const
std
::
string
&
str
,
char
delimiter
)
{
LINPHONE_PUBLIC
inline
std
::
vector
<
std
::
string
>
split
(
const
std
::
string
&
str
,
char
delimiter
)
{
return
split
(
str
,
std
::
string
(
1
,
delimiter
));
}
int
stoi
(
const
std
::
string
&
str
,
size_t
*
idx
=
0
,
int
base
=
10
);
LINPHONE_PUBLIC
int
stoi
(
const
std
::
string
&
str
,
size_t
*
idx
=
0
,
int
base
=
10
);
}
LINPHONE_END_NAMESPACE
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment