opaque.h
来自「Boost provides free peer-reviewed portab」· C头文件 代码 · 共 58 行
H
58 行
/* Copyright Bruno da Silva de Oliveira 2003. Use, modification and distribution is subject to the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) */#ifndef OPAQUE_H#define OPAQUE_H#include <iostream>namespace opaque { struct C { C(int v): value(v) {} int value; };inline C* new_C(){ return new C(10);}inline C* new_C_zero(){ return new C(0);}inline int get(C* c){ return c->value;}struct D { D(double v): value(v) {} double value; };struct A{ D* new_handle() { return new D(3.0); } double get(D* d) { return d->value; } int f(int x=0) { return x; }};}#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?