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
38f34526
Commit
38f34526
authored
Sep 28, 2015
by
Jacob Potter
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Regenerate example/
parent
d028dfbb
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
2 deletions
+15
-2
example/generated-src/cpp/item_list.hpp
example/generated-src/cpp/item_list.hpp
+2
-2
example/generated-src/java/com/dropbox/textsort/ItemList.java
...ple/generated-src/java/com/dropbox/textsort/ItemList.java
+8
-0
example/generated-src/objc/TXSItemList.mm
example/generated-src/objc/TXSItemList.mm
+5
-0
No files found.
example/generated-src/cpp/item_list.hpp
View file @
38f34526
...
...
@@ -12,8 +12,8 @@ namespace textsort {
struct
ItemList
final
{
std
::
vector
<
std
::
string
>
items
;
ItemList
(
std
::
vector
<
std
::
string
>
items
)
:
items
(
std
::
move
(
items
))
ItemList
(
std
::
vector
<
std
::
string
>
items
_
)
:
items
(
std
::
move
(
items
_
))
{}
};
...
...
example/generated-src/java/com/dropbox/textsort/ItemList.java
View file @
38f34526
...
...
@@ -21,4 +21,12 @@ public final class ItemList {
public
ArrayList
<
String
>
getItems
()
{
return
mItems
;
}
@Override
public
String
toString
()
{
return
"ItemList{"
+
"mItems="
+
mItems
+
"}"
;
}
}
example/generated-src/objc/TXSItemList.mm
View file @
38f34526
...
...
@@ -19,4 +19,9 @@
return
[[
self
alloc
]
initWithItems
:
items
];
}
-
(
NSString
*
)
description
{
return
[
NSString
stringWithFormat
:
@"<%@ %p items:%@>"
,
self
.
class
,
self
,
self
.
items
];
}
@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