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

📄 stub.cpp

📁 Boost provides free peer-reviewed portable C++ source libraries. We emphasize libraries that work
💻 CPP
字号:
/*=============================================================================    Copyright (c) 2006 Joel de Guzman    http://spirit.sourceforge.net/    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)=============================================================================*/#include <string>//[ bar//` This is the [*/bar/] functionstd::string bar(){    // return 'em, bar man!    return "bar";}/*`Some trailing text here*///]//[ foo    /*`    This is the [*['foo]] function.    This description can have paragraphs...    * lists    * etc.    And any quickbook block markup.    */std::string foo(){    // return 'em, foo man!    return "foo";}//]//[ foo_barstd::string foo_bar() /*< The /Mythical/ FooBar.                      See [@http://en.wikipedia.org/wiki/Foobar Foobar for details] >*/{    return "foo-bar"; /*< return 'em, foo-bar man! >*/}//]//[ class_class x{public:    /*<< Constructor >>*/    x() : n(0)    {    }    /*<< Destructor >>*/    ~x()    {    }    /*<< Get the `n` member variable >>*/    int get() const    {        return n; /*<- this will be ignored by quickbook ->*/    }    /*<< Set the `n` member variable >>*/    void set(int n_)    {        n = n_;    }//<- this will be ignored by quickbookprivate:    int n;//->};//]

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -