a.h

来自「Doc++,可以根据你的C/C++和java的源码文件中的注释行自动生成Html」· C头文件 代码 · 共 44 行

H
44
字号
/** Common base class.    This could be a long documentation for the common base class.    Note that protected members are displayed after public ones, even if they    appear in another order in the source code.    This is how this documentation has been generated:    \begin{verbatim}    /** Common base class.        This could be a long documentation for the common base class.        Note that protected members are displayed after public ones, even if they        appear in another order in the source code.        This is how this documentation has been generated:    * /    class CommonBase {     private:      /// this member shows up only if you call DOC++ with `--private' option      int privateMember();     protected:      /// a protected member variable      double variable;     public:      /// a public member function showing links to argument and type classes      const Derived_Class& getB(const Intermediate& c) const;    };    \end{verbatim}*/class CommonBase{ private:  /// this member shows up only, if you call DOC++ with `--private'  int privateMember(); protected:  /// a protected member variable  double variable; public:  /// a public member function showing links to argument and type classes  const Derived_Class& getB(constIntermediate& c) const;};

⌨️ 快捷键说明

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