Turi Create
4.0
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
+
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
+
Variables
c
d
f
g
m
s
Typedefs
Enumerations
+
Classes
Class List
Class Index
Class Hierarchy
+
Class Members
+
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
~
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
~
+
Variables
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
z
Typedefs
Enumerations
Enumerator
Related Functions
+
Files
File List
+
File Members
All
Functions
Macros
Examples
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
ipc_object_base.hpp
1
/* Copyright © 2017 Apple Inc. All rights reserved.
2
*
3
* Use of this source code is governed by a BSD-3-clause license that can
4
* be found in the LICENSE.txt file or at https://opensource.org/licenses/BSD-3-Clause
5
*/
6
#ifndef CPPIPC_IPC_OBJECT_BASE_HPP
7
#define CPPIPC_IPC_OBJECT_BASE_HPP
8
#include <memory>
9
#include <core/export.hpp>
10
/**
11
* All exported base classes must inherit from this class.
12
*/
13
namespace
cppipc
{
14
15
class
EXPORT ipc_object_base:
public
std::enable_shared_from_this<ipc_object_base> {
16
public
:
17
virtual
~ipc_object_base();
18
};
19
20
}
// cppipc
21
22
23
24
#endif
cppipc
Definition:
comm_client.hpp:28
core
system
cppipc
ipc_object_base.hpp
Generated by
1.8.13