TestClass
TestClass
Section: C Library Functions (3) Updated: Thu Apr 7 2011 Local index
Up
NAME
TestClass -
SYNOPSIS
#include <id_types.h>
Public Member Functions
TestClass ()
TestClass (unsigned int c)
TestClass & operator= (unsigned int c)
bool operator< (const TestClass &l) const
operator int () const
Private Attributes
unsigned int _c
Detailed Description
Definition at line 27 of file id_types.h.
Constructor & Destructor Documentation
TestClass::TestClass () [inline]
Definition at line 31 of file id_types.h.
: _c(0) {}
TestClass::TestClass (unsigned intc) [inline]
Definition at line 32 of file id_types.h.
: _c(c) {}
Member Function Documentation
TestClass::operator int () const [inline]
Definition at line 35 of file id_types.h.
References _c.
{ return _c; }
bool TestClass::operator< (const TestClass &l) const [inline]
Definition at line 34 of file id_types.h.
References _c.
{ return _c < l._c; }
TestClass& TestClass::operator= (unsigned intc) [inline]
Definition at line 33 of file id_types.h.
References _c.
{ _c = c; return *this; }
Member Data Documentation
unsigned int TestClass::_c [private]
Definition at line 29 of file id_types.h.
Referenced by operator int(), operator<(), and operator=().
Author
Generated automatically by Doxygen for libMesh from the source code.
Index
- NAME
-
- SYNOPSIS
-
- Public Member Functions
-
- Private Attributes
-
- Detailed Description
-
- Constructor & Destructor Documentation
-
- TestClass::TestClass () [inline]
-
- TestClass::TestClass (unsigned intc) [inline]
-
- Member Function Documentation
-
- TestClass::operator int () const [inline]
-
- bool TestClass::operator< (const TestClass &l) const [inline]
-
- TestClass& TestClass::operator= (unsigned intc) [inline]
-
- Member Data Documentation
-
- unsigned int TestClass::_c [private]
-
- Author
-
This document was created by
man2html,
using the manual pages.
Time: 21:57:11 GMT, April 16, 2011