Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(683)

Side by Side Diff: samples/myapi/generated/cc/myapi_service.h

Issue 1209033003: Work in progres, please take a look and give early feedback if this is the way we want to structure… (Closed) Base URL: git@github.com:dart-lang/fletch.git@master
Patch Set: address comments Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright (c) 2015, the Fletch project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE.md file.
4
5 // Generated file. Do not edit.
6
7 #ifndef MYAPI_SERVICE_H
8 #define MYAPI_SERVICE_H
9
10 #include <inttypes.h>
11 #include "struct.h"
12
13 class MyApiService {
14 public:
15 static void setup();
16 static void tearDown();
17 static int32_t create();
18 static void createAsync(void (*callback)(int32_t, void*), void* callback_data) ;
19 static void destroy(int32_t api);
20 static void destroyAsync(int32_t api, void (*callback)(void*), void* callback_ data);
21 static int32_t foo(int32_t api);
22 static void fooAsync(int32_t api, void (*callback)(int32_t, void*), void* call back_data);
23 static void MyObject_funk(int32_t api, int32_t id, int32_t o);
24 static void MyObject_funkAsync(int32_t api, int32_t id, int32_t o, void (*call back)(void*), void* callback_data);
25 };
26
27 #endif // MYAPI_SERVICE_H
OLDNEW
« no previous file with comments | « samples/buildbot/dart/buildbot_service.dart ('k') | samples/myapi/generated/cc/myapi_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698