]> Cypherpunks.ru repositories - gostls13.git/blob - misc/swig/testdata/callback/main.cc
7de917cde45782430734543cd15d1bf60f716c7e
[gostls13.git] / misc / swig / testdata / callback / main.cc
1 // Copyright 2013 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
4
5 // This .cc file will be automatically compiled by the go tool and
6 // included in the package.
7
8 #include <string>
9 #include "main.h"
10
11 std::string Caller::call() {
12         if (callback_ != 0)
13                 return callback_->run();
14         return "";
15 }