Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
djinni
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
cpp-libs
djinni
Commits
9f25408d
Commit
9f25408d
authored
Apr 29, 2015
by
Jacob Potter
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Regenerate generated source
parent
a0e8d45d
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
6 additions
and
6 deletions
+6
-6
example/generated-src/objc/TXSSortItems.mm
example/generated-src/objc/TXSSortItems.mm
+1
-1
example/generated-src/objc/TXSTextboxListenerObjcProxy.mm
example/generated-src/objc/TXSTextboxListenerObjcProxy.mm
+1
-1
test-suite/generated-src/objc/DBClientInterfaceObjcProxy.mm
test-suite/generated-src/objc/DBClientInterfaceObjcProxy.mm
+1
-1
test-suite/generated-src/objc/DBCppException.mm
test-suite/generated-src/objc/DBCppException.mm
+1
-1
test-suite/generated-src/objc/DBTestHelpers.mm
test-suite/generated-src/objc/DBTestHelpers.mm
+1
-1
test-suite/generated-src/objc/DBToken.mm
test-suite/generated-src/objc/DBToken.mm
+1
-1
No files found.
example/generated-src/objc/TXSSortItems.mm
View file @
9f25408d
...
...
@@ -40,7 +40,7 @@ static_assert(__has_feature(objc_arc), "Djinni requires ARC to be enabled for th
+
(
id
)
sortItemsWithCpp
:(
const
std
::
shared_ptr
<::
textsort
::
SortItems
>
&
)
cppRef
{
const
auto
&
cache
=
djinni
::
DbxCppWrapperCache
<::
textsort
::
SortItems
>::
getInstance
();
return
cache
->
get
(
cppRef
,
[
&
]
(
const
std
::
shared_ptr
<::
textsort
::
SortItems
>
&
p
)
{
return
[[
TXSSortItems
CppProxy
alloc
]
initWithCpp
:
p
cache
:
cache
];
});
return
cache
->
get
(
cppRef
,
[
&
]
(
const
std
::
shared_ptr
<::
textsort
::
SortItems
>
&
p
)
{
return
[[
TXSSortItems
alloc
]
initWithCpp
:
p
cache
:
cache
];
});
}
-
(
void
)
sort
:(
TXSSortOrder
)
order
items
:(
TXSItemList
*
)
items
{
...
...
example/generated-src/objc/TXSTextboxListenerObjcProxy.mm
View file @
9f25408d
...
...
@@ -18,7 +18,7 @@ TextboxListenerObjcProxy::~TextboxListenerObjcProxy ()
_cache
->
remove
(
_objcRef
);
}
std
::
shared_ptr
<::
textsort
::
TextboxListener
>
TextboxListenerObjcProxy
::
textbox_listener_with_objc
(
id
objcRef
)
std
::
shared_ptr
<::
textsort
::
TextboxListener
>
TextboxListenerObjcProxy
::
textbox_listener_with_objc
(
id
<
TXSTextboxListener
>
objcRef
)
{
return
djinni
::
DbxObjcWrapperCache
<
TextboxListenerObjcProxy
>::
getInstance
()
->
get
(
objcRef
);
}
...
...
test-suite/generated-src/objc/DBClientInterfaceObjcProxy.mm
View file @
9f25408d
...
...
@@ -18,7 +18,7 @@ ClientInterfaceObjcProxy::~ClientInterfaceObjcProxy ()
_cache
->
remove
(
_objcRef
);
}
std
::
shared_ptr
<
ClientInterface
>
ClientInterfaceObjcProxy
::
client_interface_with_objc
(
id
objcRef
)
std
::
shared_ptr
<
ClientInterface
>
ClientInterfaceObjcProxy
::
client_interface_with_objc
(
id
<
DBClientInterface
>
objcRef
)
{
return
djinni
::
DbxObjcWrapperCache
<
ClientInterfaceObjcProxy
>::
getInstance
()
->
get
(
objcRef
);
}
...
...
test-suite/generated-src/objc/DBCppException.mm
View file @
9f25408d
...
...
@@ -36,7 +36,7 @@ static_assert(__has_feature(objc_arc), "Djinni requires ARC to be enabled for th
+
(
id
)
cppExceptionWithCpp
:(
const
std
::
shared_ptr
<
CppException
>
&
)
cppRef
{
const
auto
&
cache
=
djinni
::
DbxCppWrapperCache
<
CppException
>::
getInstance
();
return
cache
->
get
(
cppRef
,
[
&
]
(
const
std
::
shared_ptr
<
CppException
>
&
p
)
{
return
[[
DBCppException
CppProxy
alloc
]
initWithCpp
:
p
cache
:
cache
];
});
return
cache
->
get
(
cppRef
,
[
&
]
(
const
std
::
shared_ptr
<
CppException
>
&
p
)
{
return
[[
DBCppException
alloc
]
initWithCpp
:
p
cache
:
cache
];
});
}
-
(
int32_t
)
throwAnException
{
...
...
test-suite/generated-src/objc/DBTestHelpers.mm
View file @
9f25408d
...
...
@@ -44,7 +44,7 @@ static_assert(__has_feature(objc_arc), "Djinni requires ARC to be enabled for th
+
(
id
)
testHelpersWithCpp
:(
const
std
::
shared_ptr
<
TestHelpers
>
&
)
cppRef
{
const
auto
&
cache
=
djinni
::
DbxCppWrapperCache
<
TestHelpers
>::
getInstance
();
return
cache
->
get
(
cppRef
,
[
&
]
(
const
std
::
shared_ptr
<
TestHelpers
>
&
p
)
{
return
[[
DBTestHelpers
CppProxy
alloc
]
initWithCpp
:
p
cache
:
cache
];
});
return
cache
->
get
(
cppRef
,
[
&
]
(
const
std
::
shared_ptr
<
TestHelpers
>
&
p
)
{
return
[[
DBTestHelpers
alloc
]
initWithCpp
:
p
cache
:
cache
];
});
}
+
(
DBSetRecord
*
)
getSetRecord
{
...
...
test-suite/generated-src/objc/DBToken.mm
View file @
9f25408d
...
...
@@ -35,7 +35,7 @@ static_assert(__has_feature(objc_arc), "Djinni requires ARC to be enabled for th
+
(
id
)
tokenWithCpp
:(
const
std
::
shared_ptr
<
Token
>
&
)
cppRef
{
const
auto
&
cache
=
djinni
::
DbxCppWrapperCache
<
Token
>::
getInstance
();
return
cache
->
get
(
cppRef
,
[
&
]
(
const
std
::
shared_ptr
<
Token
>
&
p
)
{
return
[[
DBToken
CppProxy
alloc
]
initWithCpp
:
p
cache
:
cache
];
});
return
cache
->
get
(
cppRef
,
[
&
]
(
const
std
::
shared_ptr
<
Token
>
&
p
)
{
return
[[
DBToken
alloc
]
initWithCpp
:
p
cache
:
cache
];
});
}
@end
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