libmesh解析
本工作只是尝试解析原libmesh的代码,供学习使用
 全部  命名空间 文件 函数 变量 类型定义 枚举 枚举值 友元 
Public 成员函数 | Private 属性 | 所有成员列表
libMesh::TestClass类 参考

#include <id_types.h>

Public 成员函数

 TestClass ()
 
 TestClass (unsigned int c)
 
TestClassoperator= (unsigned int c)
 
bool operator< (const TestClass &l) const
 
 operator int () const
 

Private 属性

unsigned int _c
 

详细描述

在文件 id_types.h33 行定义.

构造及析构函数说明

libMesh::TestClass::TestClass ( )
inline

在文件 id_types.h37 行定义.

37 : _c(0) {}
unsigned int _c
Definition: id_types.h:35
libMesh::TestClass::TestClass ( unsigned int  c)
inline

在文件 id_types.h38 行定义.

38 : _c(c) {}
unsigned int _c
Definition: id_types.h:35

成员函数说明

libMesh::TestClass::operator int ( ) const
inline

在文件 id_types.h41 行定义.

参考 _c.

41 { return _c; }
unsigned int _c
Definition: id_types.h:35
bool libMesh::TestClass::operator< ( const TestClass l) const
inline

在文件 id_types.h40 行定义.

参考 _c.

40 { return _c < l._c; }
unsigned int _c
Definition: id_types.h:35
TestClass& libMesh::TestClass::operator= ( unsigned int  c)
inline

在文件 id_types.h39 行定义.

参考 _c.

39 { _c = c; return *this; }
unsigned int _c
Definition: id_types.h:35

类成员变量说明

unsigned int libMesh::TestClass::_c
private

在文件 id_types.h35 行定义.

参考自 operator int(), operator<() , 以及 operator=().


该类的文档由以下文件生成: