Skip to content

Commit 5c93c5a

Browse files
committed
Merged changeset 121 from trunk.
1 parent 10ddf49 commit 5c93c5a

28 files changed

+129
-186
lines changed

libember/Doxyfile.in

Lines changed: 1 addition & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ PROJECT_LOGO =
5252
# If a relative path is entered, it will be relative to the location
5353
# where doxygen was started. If left blank the current directory will be used.
5454

55-
OUTPUT_DIRECTORY = ../doc/libember
55+
OUTPUT_DIRECTORY = ../build/doc/libember
5656

5757
# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create
5858
# 4096 sub-directories (in 2 levels) under the output directory of each output
@@ -303,22 +303,6 @@ INLINE_SIMPLE_STRUCTS = NO
303303

304304
TYPEDEF_HIDES_STRUCT = NO
305305

306-
# The SYMBOL_CACHE_SIZE determines the size of the internal cache use to
307-
# determine which symbols to keep in memory and which to flush to disk.
308-
# When the cache is full, less often used symbols will be written to disk.
309-
# For small to medium size projects (<1000 input files) the default value is
310-
# probably good enough. For larger projects a too small cache size can cause
311-
# doxygen to be busy swapping symbols to and from disk most of the time
312-
# causing a significant performance penalty.
313-
# If the system has enough physical memory increasing the cache will improve the
314-
# performance by keeping more symbols in memory. Note that the value works on
315-
# a logarithmic scale so increasing the size by one will roughly double the
316-
# memory usage. The cache size is given by this formula:
317-
# 2^(16+SYMBOL_CACHE_SIZE). The valid range is 0..9, the default is 0,
318-
# corresponding to a cache size of 2^16 = 65536 symbols
319-
320-
SYMBOL_CACHE_SIZE = 0
321-
322306
#---------------------------------------------------------------------------
323307
# Build related configuration options
324308
#---------------------------------------------------------------------------
@@ -522,12 +506,6 @@ MAX_INITIALIZER_LINES = 30
522506

523507
SHOW_USED_FILES = YES
524508

525-
# If the sources in your project are distributed over multiple directories
526-
# then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy
527-
# in the documentation. The default is NO.
528-
529-
SHOW_DIRECTORIES = NO
530-
531509
# Set the SHOW_FILES tag to NO to disable the generation of the Files page.
532510
# This will remove the Files entry from the Quick Index and from the
533511
# Folder Tree View (if specified). The default is YES.
@@ -914,12 +892,6 @@ HTML_COLORSTYLE_GAMMA = 80
914892

915893
HTML_TIMESTAMP = YES
916894

917-
# If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes,
918-
# files or namespaces will be aligned in HTML using tables. If set to
919-
# NO a bullet list will be used.
920-
921-
HTML_ALIGN_MEMBERS = YES
922-
923895
# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML
924896
# documentation will contain sections that can be hidden and shown after the
925897
# page has loaded. For this to work a browser that supports
@@ -1102,11 +1074,6 @@ ENUM_VALUES_PER_LINE = 4
11021074

11031075
GENERATE_TREEVIEW = NO
11041076

1105-
# By enabling USE_INLINE_TREES, doxygen will generate the Groups, Directories,
1106-
# and Class Hierarchy pages using a tree view instead of an ordered list.
1107-
1108-
USE_INLINE_TREES = NO
1109-
11101077
# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be
11111078
# used to set the initial width (in pixels) of the frame in which the tree
11121079
# is shown.

libember/Headers/ember/ber/ObjectIdentifier.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ namespace libember { namespace ber
6363

6464
/**
6565
* Returns true if the ObjectIdentifier does not contain any elements.
66-
* @retunr True if the ObjectIdentifier does not contain any elements.
66+
* @return True if the ObjectIdentifier does not contain any elements.
6767
*/
6868
bool empty() const;
6969

libember/Headers/ember/glow/Access.hpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -50,16 +50,16 @@ namespace libember { namespace glow
5050

5151
public:
5252
/**
53-
* Initializes a new instance of Access.
54-
* @param type The access type to initialize this instance with.
53+
* Initializes a new instance.
54+
* @param value The value to initialize this instance with.
5555
*/
56-
Access(_Domain type)
57-
: m_value(type)
56+
Access(_Domain value)
57+
: m_value(value)
5858
{}
5959

6060
/**
61-
* Returns the access type.
62-
* @return The access type.
61+
* Returns the value.
62+
* @return The value.
6363
*/
6464
value_type value() const
6565
{

libember/Headers/ember/glow/CommandType.hpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -68,16 +68,16 @@ namespace libember { namespace glow
6868

6969
public:
7070
/**
71-
* Initializes a CommandType.
72-
* @param command The command type to initialize this instance with.
71+
* Initializes a new instance.
72+
* @param value The value to initialize this instance with.
7373
*/
74-
CommandType(_Domain command)
75-
: m_value(command)
74+
CommandType(_Domain value)
75+
: m_value(value)
7676
{}
7777

7878
/**
79-
* Returns the command value.
80-
* @return The command value.
79+
* Returns the value.
80+
* @return The value.
8181
*/
8282
value_type value() const
8383
{

libember/Headers/ember/glow/ConnectionDisposition.hpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -43,16 +43,16 @@ namespace libember { namespace glow
4343

4444
public:
4545
/**
46-
* Initializes a ConnectionDisposition.
47-
* @param type Connection disposition type to initialize this instance with.
46+
* Initializes a new instance.
47+
* @param value The value to initialize this instance with.
4848
*/
49-
ConnectionDisposition(_Domain type)
50-
: m_value(type)
49+
ConnectionDisposition(_Domain value)
50+
: m_value(value)
5151
{}
5252

5353
/**
54-
* Returns the connection disposition.
55-
* @return The connection disposition.
54+
* Returns the value.
55+
* @return The value.
5656
*/
5757
value_type value() const
5858
{

libember/Headers/ember/glow/ConnectionOperation.hpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,16 +42,16 @@ namespace libember { namespace glow
4242

4343
public:
4444
/**
45-
* Initializes a ConnectionOperation.
46-
* @param type The connection operation to initialize this instance with.
45+
* Initializes a new instance.
46+
* @param value The value to initialize this instance with.
4747
*/
48-
ConnectionOperation(_Domain type)
49-
: m_value(type)
48+
ConnectionOperation(_Domain value)
49+
: m_value(value)
5050
{}
5151

5252
/**
53-
* Returns the connection operation.
54-
* @return The connection operation.
53+
* Returns the value.
54+
* @return The value.
5555
*/
5656
value_type value() const
5757
{

libember/Headers/ember/glow/DirFieldMask.hpp

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -44,24 +44,24 @@ namespace libember { namespace glow
4444

4545
public:
4646
/**
47-
* Initializes a new instance of DirFieldMask.
48-
* @param flag The flag to initializes the instance with.
47+
* Initializes a new instance.
48+
* @param value The value to initializes the instance with.
4949
*/
50-
DirFieldMask(_Domain flag)
51-
: m_value(flag)
50+
DirFieldMask(_Domain value)
51+
: m_value(value)
5252
{}
5353

5454
/**
55-
* Initializes a new instance of DirFieldMask.
56-
* @param flags The flags to initializes the instance with.
55+
* Initializes a new instance.
56+
* @param value The value to initializes the instance with.
5757
*/
58-
explicit DirFieldMask(value_type flags)
59-
: m_value(flags)
58+
explicit DirFieldMask(value_type value)
59+
: m_value(value)
6060
{}
6161

6262
/**
63-
* Returns the mask.
64-
* @return The mask.
63+
* Returns the value.
64+
* @return The value.
6565
*/
6666
value_type value() const
6767
{

libember/Headers/ember/glow/FunctionProperty.hpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,16 +55,16 @@ namespace libember { namespace glow
5555
typedef unsigned int value_type;
5656

5757
/**
58-
* Initializes a new FunctionProperty.
59-
* @param value The property type to initialize this instance with.
58+
* Initializes a new instance.
59+
* @param value The value to initialize this instance with.
6060
*/
6161
FunctionProperty(_Domain value)
6262
: m_value(value)
6363
{}
6464

6565
/**
66-
* Returns the value of the function property.
67-
* @return The value of the function property.
66+
* Returns the value.
67+
* @return The value.
6868
*/
6969
value_type value() const
7070
{

libember/Headers/ember/glow/GlowContentElement.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ namespace libember { namespace glow
9999

100100
/**
101101
* Checks if the passed property exists in the content set.
102-
* @property Property to look for.
102+
* @param property Property to look for.
103103
* @return True if the property exists, otherwise false.
104104
* @note The PropertyType must have a field named value.
105105
*/

libember/Headers/ember/glow/GlowMatrixBase.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ namespace libember { namespace glow
6565
/**
6666
* Sets the string containing the schema identifiers. The identifiers
6767
* are separated by the linefeed character (0x0A, '\n')
68-
* @param identifier The names of the schema identifiers this matrix uses.
68+
* @param identifiers The names of the schema identifiers this matrix uses.
6969
*/
7070
void setSchemaIdentifiers(std::string const& identifiers);
7171

0 commit comments

Comments
 (0)