⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 opaque.h

📁 C++的一个好库。。。现在很流行
💻 H
字号:
/* 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -