x
Yes
No
Do you want to visit DriveHQ English website?
首页
产品服务
价格
免费试用
下载客户端
关于我们
云文件服务
|
云备份服务
|
FTP服务
|
企业邮箱服务
|
网站托管
|
客户端软件
云文件服务
云备份服务
FTP服务
企业级邮箱服务
网站托管
客户端软件
test_held_type.cpp - Hosted on DriveHQ Cloud IT Platform
返回上层目录
上传
下载
共享
发布
新建文件夹
新建文件
复制
剪切
删除
粘贴
评论
升级服务
路径: \\game3dprogramming\materials\GameFactory\GameFactoryDemo\references\luabind\test\test_held_type.cpp
旋转
特效
属性
历史版本
// Copyright (c) 2004 Daniel Wallin and Arvid Norberg // Permission is hereby granted, free of charge, to any person obtaining a // copy of this software and associated documentation files (the "Software"), // to deal in the Software without restriction, including without limitation // the rights to use, copy, modify, merge, publish, distribute, sublicense, // and/or sell copies of the Software, and to permit persons to whom the // Software is furnished to do so, subject to the following conditions: // The above copyright notice and this permission notice shall be included // in all copies or substantial portions of the Software. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF // ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED // TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A // PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT // SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR // ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN // ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE // OR OTHER DEALINGS IN THE SOFTWARE. #include "test.hpp" #include
#include
#include
namespace luabind { #ifdef BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP template
T* get_pointer(boost::shared_ptr
const& p) { return p.get(); } #endif template
boost::shared_ptr
* get_const_holder(boost::shared_ptr
const*) { return 0; } } struct base : counted_type
{ base(): n(4) {} virtual ~base() {} void f(int) { } int n; }; // this is here to make sure the pointer offsetting works struct first_base : counted_type
{ virtual ~first_base() {} virtual void a() {} int padding; }; struct derived : first_base, base { derived(): n2(7) {} void f() {} int n2; }; COUNTER_GUARD(first_base); COUNTER_GUARD(base); int feedback = 0; void tester(base* t) { if (t->n == 4) feedback = 1; } void tester_(derived* t) { if (t->n2 == 7) feedback = 2; } void tester2(boost::shared_ptr
t) { if (t->n == 4) feedback = 3; } void tester3(boost::shared_ptr
t) { if (t->n == 4) feedback = 4; } void tester4(const boost::shared_ptr
& t) { if (t->n == 4) feedback = 5; } void tester5(const boost::shared_ptr
* t) { if ((*t)->n == 4) feedback = 6; } void tester6(const boost::shared_ptr
* t) { if ((*t)->n == 4) feedback = 7; } void tester7(boost::shared_ptr
* t) { if ((*t)->n == 4) feedback = 8; } boost::shared_ptr
tester9() { feedback = 9; return boost::shared_ptr
(new base()); } void tester10(boost::shared_ptr
const& r) { if (r->n == 4) feedback = 10; } void tester11(boost::shared_ptr
const& r) { if (r->n == 4) feedback = 11; } void tester12(boost::shared_ptr
const& r) { if (r->n2 == 7) feedback = 12; } void test_main(lua_State* L) { boost::shared_ptr
base_ptr(new base()); using namespace luabind; module(L) [ def("tester", &tester), def("tester", &tester_), def("tester2", &tester2), def("tester3", &tester3), def("tester4", &tester4), def("tester5", &tester5), def("tester6", &tester6), def("tester7", &tester7), def("tester9", &tester9), def("tester10", &tester10), def("tester11", &tester11), def("tester12", &tester12), class_
>("base") .def(constructor<>()) .def("f", &base::f), class_
>("derived") .def(constructor<>()) .def("f", &derived::f) ]; object g = globals(L); g["ptr"] = base_ptr; DOSTRING(L, "tester(ptr)"); TEST_CHECK(feedback == 1); DOSTRING(L, "a = base()\n" "b = derived()\n"); DOSTRING(L, "tester(b)"); TEST_CHECK(feedback == 2); DOSTRING(L, "tester(a)"); TEST_CHECK(feedback == 1); DOSTRING(L, "tester2(b)"); TEST_CHECK(feedback == 3); DOSTRING(L, "tester3(b)"); TEST_CHECK(feedback == 4); DOSTRING(L, "tester4(b)"); TEST_CHECK(feedback == 5); feedback = 0; DOSTRING(L, "tester4(a)"); TEST_CHECK(feedback == 5); DOSTRING(L, "tester10(b)"); TEST_CHECK(feedback == 10); DOSTRING(L, "tester11(b)"); TEST_CHECK(feedback == 11); /* this test is messed up, shared_ptr
isn't even registered DOSTRING_EXPECTED( L , "tester12(b)" , "no match for function call 'tester12' with the parameters (derived)\n" "candidates are:\n" "tester12(const custom&)\n"); */ object nil = globals(L)["non_existing_variable_is_nil"]; TEST_CHECK(object_cast
>(nil).get() == 0); TEST_CHECK(object_cast
>(nil).get() == 0); }
test_held_type.cpp
网页地址
文件地址
上一页
15/29
下一页
下载
( 5 KB )
Comments
Total ratings:
0
Average rating:
无评论
of 10
Would you like to comment?
Join now
, or
Logon
if you are already a member.