diff --git a/cmake/FindTBB.cmake b/cmake/FindTBB.cmake index b1938b0b0..95708f02d 100644 --- a/cmake/FindTBB.cmake +++ b/cmake/FindTBB.cmake @@ -1,4 +1,3 @@ -# # Locate Intel Threading Building Blocks include paths and libraries # CPPunit can be found at http://cppunit.sourceforge.net # Written by Michael Hammer, michael _at_ derhammer.net diff --git a/cmake/ImportACE.cmake b/cmake/ImportACE.cmake index cb284f369..3364808b1 100644 --- a/cmake/ImportACE.cmake +++ b/cmake/ImportACE.cmake @@ -1,4 +1,3 @@ -# # This code is part of MaNGOS. Contributor & Copyright details are in AUTHORS/THANKS. # # This program is free software; you can redistribute it and/or modify @@ -14,7 +13,6 @@ # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -# # Specify ace lib that was build externally # add_library(ace SHARED IMPORTED) @@ -56,4 +54,3 @@ if(WIN32) ) endforeach(DIR) endif() - diff --git a/cmake/ImportTBB.cmake b/cmake/ImportTBB.cmake index 0763a7f21..bf1a6d7c9 100644 --- a/cmake/ImportTBB.cmake +++ b/cmake/ImportTBB.cmake @@ -1,4 +1,3 @@ -# # This code is part of MaNGOS. Contributor & Copyright details are in AUTHORS/THANKS. # # This program is free software; you can redistribute it and/or modify @@ -14,7 +13,6 @@ # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -# # Specify tbb lib that was build externally # add_library(tbb SHARED IMPORTED) diff --git a/contrib/extractor/System.cpp b/contrib/extractor/System.cpp index 0f5a9b04f..b49c11c59 100644 --- a/contrib/extractor/System.cpp +++ b/contrib/extractor/System.cpp @@ -1,3 +1,21 @@ +/** + * This code is part of MaNGOS. Contributor & Copyright details are in AUTHORS/THANKS. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + #define _CRT_SECURE_NO_DEPRECATE #include @@ -292,7 +310,7 @@ uint32 ReadMapDBC(int const locale) map_ids[x].id = dbc.getRecord(x).getUInt(0); strcpy(map_ids[x].name, dbc.getRecord(x).getString(1)); } - printf("Done! (%u maps loaded)\n", map_count); + printf("Done! (%lu maps loaded)\n", map_count); return map_count; } @@ -331,7 +349,7 @@ void ReadAreaTableDBC(int const locale) maxAreaId = dbc.getMaxId(); - printf("Done! (%u areas loaded)\n", area_count); + printf("Done! (%lu areas loaded)\n", area_count); } void ReadLiquidTypeTableDBC(int const locale) @@ -366,7 +384,7 @@ void ReadLiquidTypeTableDBC(int const locale) for(uint32 x = 0; x < LiqType_count; ++x) LiqType[dbc.getRecord(x).getUInt(0)] = dbc.getRecord(x).getUInt(3); - printf("Done! (%u LiqTypes loaded)\n", LiqType_count); + printf("Done! (%lu LiqTypes loaded)\n", LiqType_count); } // diff --git a/contrib/extractor/dbcfile.cpp b/contrib/extractor/dbcfile.cpp index fd828527d..543970b3d 100644 --- a/contrib/extractor/dbcfile.cpp +++ b/contrib/extractor/dbcfile.cpp @@ -1,3 +1,21 @@ +/** + * This code is part of MaNGOS. Contributor & Copyright details are in AUTHORS/THANKS. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + #define _CRT_SECURE_NO_DEPRECATE #include "dbcfile.h" @@ -83,7 +101,6 @@ bool DBCFile::open() SFileCloseFile(fileHandle); return true; } - DBCFile::~DBCFile() { delete [] data; diff --git a/contrib/extractor/dbcfile.h b/contrib/extractor/dbcfile.h index b6db76e59..ca2e20fa9 100644 --- a/contrib/extractor/dbcfile.h +++ b/contrib/extractor/dbcfile.h @@ -1,3 +1,21 @@ +/** + * This code is part of MaNGOS. Contributor & Copyright details are in AUTHORS/THANKS. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + #ifndef DBCFILE_H #define DBCFILE_H #include diff --git a/contrib/extractor/loadlib/adt.h b/contrib/extractor/loadlib/adt.h index 84d68c795..933c19e91 100644 --- a/contrib/extractor/loadlib/adt.h +++ b/contrib/extractor/loadlib/adt.h @@ -1,3 +1,21 @@ +/** + * This code is part of MaNGOS. Contributor & Copyright details are in AUTHORS/THANKS. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + #ifndef ADT_H #define ADT_H @@ -28,15 +46,16 @@ enum LiquidType class ADT_file; class adt_MCVT { - union{ - uint32 fcc; - char fcc_txt[4]; - }; - uint32 size; -public: - float height_map[(ADT_CELL_SIZE+1)*(ADT_CELL_SIZE+1)+ADT_CELL_SIZE*ADT_CELL_SIZE]; + union + { + uint32 fcc; + char fcc_txt[4]; + }; + uint32 size; + public: + float height_map[(ADT_CELL_SIZE + 1) * (ADT_CELL_SIZE + 1) + ADT_CELL_SIZE* ADT_CELL_SIZE]; - bool prepareLoadedData(); + bool prepareLoadedData(); }; // @@ -44,28 +63,30 @@ public: // class adt_MCLQ { - union{ - uint32 fcc; - char fcc_txt[4]; - }; - uint32 size; -public: - float height1; - float height2; - struct liquid_data{ - uint32 light; - float height; - } liquid[ADT_CELL_SIZE+1][ADT_CELL_SIZE+1]; + union + { + uint32 fcc; + char fcc_txt[4]; + }; + uint32 size; + public: + float height1; + float height2; + struct liquid_data + { + uint32 light; + float height; + } liquid[ADT_CELL_SIZE + 1][ADT_CELL_SIZE + 1]; - // 1<<0 - ochen - // 1<<1 - lava/slime - // 1<<2 - water - // 1<<6 - all water - // 1<<7 - dark water - // == 0x0F - not show liquid - uint8 flags[ADT_CELL_SIZE][ADT_CELL_SIZE]; - uint8 data[84]; - bool prepareLoadedData(); + // 1<<0 - ochen + // 1<<1 - lava/slime + // 1<<2 - water + // 1<<6 - all water + // 1<<7 - dark water + // == 0x0F - not show liquid + uint8 flags[ADT_CELL_SIZE][ADT_CELL_SIZE]; + uint8 data[84]; + bool prepareLoadedData(); }; // @@ -73,59 +94,60 @@ public: // class adt_MCNK { - union{ - uint32 fcc; - char fcc_txt[4]; - }; - uint32 size; -public: - uint32 flags; - uint32 ix; - uint32 iy; - uint32 nLayers; - uint32 nDoodadRefs; - uint32 offsMCVT; // height map - uint32 offsMCNR; // Normal vectors for each vertex - uint32 offsMCLY; // Texture layer definitions - uint32 offsMCRF; // A list of indices into the parent file's MDDF chunk - uint32 offsMCAL; // Alpha maps for additional texture layers - uint32 sizeMCAL; - uint32 offsMCSH; // Shadow map for static shadows on the terrain - uint32 sizeMCSH; - uint32 areaid; - uint32 nMapObjRefs; - uint16 holes; // locations where models pierce the heightmap - uint16 pad; - uint16 s[2]; - uint32 data1; - uint32 data2; - uint32 data3; - uint32 predTex; - uint32 nEffectDoodad; - uint32 offsMCSE; - uint32 nSndEmitters; - uint32 offsMCLQ; // Liqid level (old) - uint32 sizeMCLQ; // - float zpos; - float xpos; - float ypos; - uint32 offsMCCV; // offsColorValues in WotLK - uint32 props; - uint32 effectId; + union + { + uint32 fcc; + char fcc_txt[4]; + }; + uint32 size; + public: + uint32 flags; + uint32 ix; + uint32 iy; + uint32 nLayers; + uint32 nDoodadRefs; + uint32 offsMCVT; // height map + uint32 offsMCNR; // Normal vectors for each vertex + uint32 offsMCLY; // Texture layer definitions + uint32 offsMCRF; // A list of indices into the parent file's MDDF chunk + uint32 offsMCAL; // Alpha maps for additional texture layers + uint32 sizeMCAL; + uint32 offsMCSH; // Shadow map for static shadows on the terrain + uint32 sizeMCSH; + uint32 areaid; + uint32 nMapObjRefs; + uint16 holes; // locations where models pierce the heightmap + uint16 pad; + uint16 s[2]; + uint32 data1; + uint32 data2; + uint32 data3; + uint32 predTex; + uint32 nEffectDoodad; + uint32 offsMCSE; + uint32 nSndEmitters; + uint32 offsMCLQ; // Liqid level (old) + uint32 sizeMCLQ; // + float zpos; + float xpos; + float ypos; + uint32 offsMCCV; // offsColorValues in WotLK + uint32 props; + uint32 effectId; - bool prepareLoadedData(); - adt_MCVT *getMCVT() - { - if (offsMCVT) - return (adt_MCVT *)((uint8 *)this + offsMCVT); - return 0; - } - adt_MCLQ *getMCLQ() - { - if (offsMCLQ) - return (adt_MCLQ *)((uint8 *)this + offsMCLQ); - return 0; - } + bool prepareLoadedData(); + adt_MCVT* getMCVT() + { + if (offsMCVT) + return (adt_MCVT*)((uint8*)this + offsMCVT); + return 0; + } + adt_MCLQ* getMCLQ() + { + if (offsMCLQ) + return (adt_MCLQ*)((uint8*)this + offsMCLQ); + return 0; + } }; // @@ -133,33 +155,36 @@ public: // class adt_MCIN { - union{ - uint32 fcc; - char fcc_txt[4]; - }; - uint32 size; -public: - struct adt_CELLS{ - uint32 offsMCNK; + union + { + uint32 fcc; + char fcc_txt[4]; + }; uint32 size; - uint32 flags; - uint32 asyncId; - } cells[ADT_CELLS_PER_GRID][ADT_CELLS_PER_GRID]; + public: + struct adt_CELLS + { + uint32 offsMCNK; + uint32 size; + uint32 flags; + uint32 asyncId; + } cells[ADT_CELLS_PER_GRID][ADT_CELLS_PER_GRID]; - bool prepareLoadedData(); - // offset from begin file (used this-84) - adt_MCNK *getMCNK(int x, int y) - { - if (cells[x][y].offsMCNK) - return (adt_MCNK *)((uint8 *)this + cells[x][y].offsMCNK - 84); - return 0; - } + bool prepareLoadedData(); + // offset from begin file (used this-84) + adt_MCNK* getMCNK(int x, int y) + { + if (cells[x][y].offsMCNK) + return (adt_MCNK*)((uint8*)this + cells[x][y].offsMCNK - 84); + return 0; + } }; #define ADT_LIQUID_HEADER_FULL_LIGHT 0x01 #define ADT_LIQUID_HEADER_NO_HIGHT 0x02 -struct adt_liquid_header{ +struct adt_liquid_header +{ uint16 liquidType; // Index from LiquidType.dbc uint16 formatFlags; float heightLevel1; @@ -177,70 +202,72 @@ struct adt_liquid_header{ // class adt_MH2O { -public: - union{ - uint32 fcc; - char fcc_txt[4]; - }; - uint32 size; + public: + union + { + uint32 fcc; + char fcc_txt[4]; + }; + uint32 size; - struct adt_LIQUID{ - uint32 offsData1; - uint32 used; - uint32 offsData2; - } liquid[ADT_CELLS_PER_GRID][ADT_CELLS_PER_GRID]; + struct adt_LIQUID + { + uint32 offsData1; + uint32 used; + uint32 offsData2; + } liquid[ADT_CELLS_PER_GRID][ADT_CELLS_PER_GRID]; - bool prepareLoadedData(); + bool prepareLoadedData(); - adt_liquid_header *getLiquidData(int x, int y) - { - if (liquid[x][y].used && liquid[x][y].offsData1) - return (adt_liquid_header *)((uint8*)this + 8 + liquid[x][y].offsData1); - return 0; - } - - float *getLiquidHeightMap(adt_liquid_header *h) - { - if (h->formatFlags & ADT_LIQUID_HEADER_NO_HIGHT) + adt_liquid_header* getLiquidData(int x, int y) + { + if (liquid[x][y].used && liquid[x][y].offsData1) + return (adt_liquid_header*)((uint8*)this + 8 + liquid[x][y].offsData1); return 0; - if (h->offsData2b) - return (float *)((uint8*)this + 8 + h->offsData2b); - return 0; - } + } - uint8 *getLiquidLightMap(adt_liquid_header *h) - { - if (h->formatFlags&ADT_LIQUID_HEADER_FULL_LIGHT) - return 0; - if (h->offsData2b) + float* getLiquidHeightMap(adt_liquid_header* h) { if (h->formatFlags & ADT_LIQUID_HEADER_NO_HIGHT) - return (uint8 *)((uint8*)this + 8 + h->offsData2b); - return (uint8 *)((uint8*)this + 8 + h->offsData2b + (h->width+1)*(h->height+1)*4); - } - return 0; - } - - uint32 *getLiquidFullLightMap(adt_liquid_header *h) - { - if (!(h->formatFlags&ADT_LIQUID_HEADER_FULL_LIGHT)) + return 0; + if (h->offsData2b) + return (float*)((uint8*)this + 8 + h->offsData2b); return 0; - if (h->offsData2b) - { - if (h->formatFlags & ADT_LIQUID_HEADER_NO_HIGHT) - return (uint32 *)((uint8*)this + 8 + h->offsData2b); - return (uint32 *)((uint8*)this + 8 + h->offsData2b + (h->width+1)*(h->height+1)*4); } - return 0; - } - uint64 getLiquidShowMap(adt_liquid_header *h) - { - if (h->offsData2a) - return *((uint64 *)((uint8*)this + 8 + h->offsData2a)); - else - return 0xFFFFFFFFFFFFFFFFLL; - } + uint8* getLiquidLightMap(adt_liquid_header* h) + { + if (h->formatFlags & ADT_LIQUID_HEADER_FULL_LIGHT) + return 0; + if (h->offsData2b) + { + if (h->formatFlags & ADT_LIQUID_HEADER_NO_HIGHT) + return (uint8*)((uint8*)this + 8 + h->offsData2b); + return (uint8*)((uint8*)this + 8 + h->offsData2b + (h->width + 1) * (h->height + 1) * 4); + } + return 0; + } + + uint32* getLiquidFullLightMap(adt_liquid_header* h) + { + if (!(h->formatFlags & ADT_LIQUID_HEADER_FULL_LIGHT)) + return 0; + if (h->offsData2b) + { + if (h->formatFlags & ADT_LIQUID_HEADER_NO_HIGHT) + return (uint32*)((uint8*)this + 8 + h->offsData2b); + return (uint32*)((uint8*)this + 8 + h->offsData2b + (h->width + 1) * (h->height + 1) * 4); + } + return 0; + } + + uint64 getLiquidShowMap(adt_liquid_header* h) + { + if (h->offsData2a) + return *((uint64*)((uint8*)this + 8 + h->offsData2a)); + else + return 0xFFFFFFFFFFFFFFFFLL; + } }; @@ -249,46 +276,46 @@ public: // class adt_MHDR { - union{ - uint32 fcc; - char fcc_txt[4]; - }; - -public: - uint32 size; - - uint32 flags; - uint32 offsMCIN; // MCIN - uint32 offsTex; // MTEX - uint32 offsModels; // MMDX - uint32 offsModelsIds; // MMID - uint32 offsMapObejcts; // MWMO - uint32 offsMapObejctsIds; // MWID - uint32 offsDoodsDef; // MDDF - uint32 offsObjectsDef; // MODF - uint32 offsMFBO; // MFBO - uint32 offsMH2O; // MH2O - uint32 data1; - uint32 data2; - uint32 data3; - uint32 data4; - uint32 data5; -public: - bool prepareLoadedData(); - adt_MCIN* getMCIN() { return offsMCIN ? (adt_MCIN *)((uint8 *)&flags+offsMCIN) : 0; } - adt_MH2O* getMH2O() { return offsMH2O ? (adt_MH2O *)((uint8 *)&flags+offsMH2O) : 0; } + union + { + uint32 fcc; + char fcc_txt[4]; + }; + public: + uint32 size; + uint32 flags; + uint32 offsMCIN; // MCIN + uint32 offsTex; // MTEX + uint32 offsModels; // MMDX + uint32 offsModelsIds; // MMID + uint32 offsMapObejcts; // MWMO + uint32 offsMapObejctsIds; // MWID + uint32 offsDoodsDef; // MDDF + uint32 offsObjectsDef; // MODF + uint32 offsMFBO; // MFBO + uint32 offsMH2O; // MH2O + uint32 data1; + uint32 data2; + uint32 data3; + uint32 data4; + uint32 data5; + public: + bool prepareLoadedData(); + adt_MCIN* getMCIN() { return offsMCIN ? (adt_MCIN*)((uint8*)&flags + offsMCIN) : 0; } + adt_MH2O* getMH2O() { return offsMH2O ? (adt_MH2O*)((uint8*)&flags + offsMH2O) : 0; } }; -class ADT_file : public FileLoader{ -public: - bool prepareLoadedData(); - ADT_file(); - ~ADT_file(); - void free(); +class ADT_file : public FileLoader +{ + public: + bool prepareLoadedData(); + ADT_file(); + ~ADT_file(); + void free(); - adt_MHDR* a_grid; - adt_MCNK* cells[ADT_CELLS_PER_GRID][ADT_CELLS_PER_GRID]; + adt_MHDR* a_grid; + adt_MCNK* cells[ADT_CELLS_PER_GRID][ADT_CELLS_PER_GRID]; }; bool isHole(int holes, int i, int j); diff --git a/contrib/extractor/loadlib/loadlib.cpp b/contrib/extractor/loadlib/loadlib.cpp index 1ec13b6c2..f0f22193f 100644 --- a/contrib/extractor/loadlib/loadlib.cpp +++ b/contrib/extractor/loadlib/loadlib.cpp @@ -27,7 +27,7 @@ bool OpenArchive(char const* mpqFileName, HANDLE* mpqHandlePtr /*= NULL*/) bool OpenNewestFile(char const* filename, HANDLE* fileHandlerPtr) { - for(ArchiveSet::const_reverse_iterator i=gOpenArchives.rbegin(); i!=gOpenArchives.rend();++i) + for (ArchiveSet::const_reverse_iterator i = gOpenArchives.rbegin(); i != gOpenArchives.rend(); ++i) { // always prefer get updated file version if (SFileOpenFileEx(*i, filename, SFILE_OPEN_PATCHED_FILE, fileHandlerPtr)) @@ -37,9 +37,9 @@ bool OpenNewestFile(char const* filename, HANDLE* fileHandlerPtr) return false; } -bool ExtractFile( char const* mpq_name, std::string const& filename ) +bool ExtractFile(char const* mpq_name, std::string const& filename) { - for(ArchiveSet::const_reverse_iterator i=gOpenArchives.rbegin(); i!=gOpenArchives.rend();++i) + for (ArchiveSet::const_reverse_iterator i = gOpenArchives.rbegin(); i != gOpenArchives.rend(); ++i) { HANDLE fileHandle; if (!SFileOpenFileEx(*i, mpq_name, SFILE_OPEN_PATCHED_FILE, &fileHandle)) @@ -69,7 +69,7 @@ bool ExtractFile( char const* mpq_name, std::string const& filename ) void CloseArchives() { - for(ArchiveSet::const_iterator i = gOpenArchives.begin(); i != gOpenArchives.end();++i) + for (ArchiveSet::const_iterator i = gOpenArchives.begin(); i != gOpenArchives.end(); ++i) SFileCloseArchive(*i); gOpenArchives.clear(); } @@ -86,7 +86,7 @@ FileLoader::~FileLoader() free(); } -bool FileLoader::loadFile(char *filename, bool log) +bool FileLoader::loadFile(char* filename, bool log) { free(); @@ -132,11 +132,9 @@ bool FileLoader::loadFile(char *filename, bool log) bool FileLoader::prepareLoadedData() { // Check version - version = (file_MVER *) data; - + version = (file_MVER*) data; if (version->fcc != 'MVER') return false; - if (version->ver != FILE_FORMAT_VERSION) return false; return true; diff --git a/contrib/extractor/loadlib/loadlib.h b/contrib/extractor/loadlib/loadlib.h index 006a2ed7a..b2518a7f3 100644 --- a/contrib/extractor/loadlib/loadlib.h +++ b/contrib/extractor/loadlib/loadlib.h @@ -1,3 +1,21 @@ +/** + * This code is part of MaNGOS. Contributor & Copyright details are in AUTHORS/THANKS. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + #ifndef LOAD_LIB_H #define LOAD_LIB_H diff --git a/contrib/extractor/loadlib/wdt.cpp b/contrib/extractor/loadlib/wdt.cpp index dedefbb64..390776480 100644 --- a/contrib/extractor/loadlib/wdt.cpp +++ b/contrib/extractor/loadlib/wdt.cpp @@ -59,4 +59,4 @@ bool WDT_file::prepareLoadedData() if (!wmo->prepareLoadedData()) return false; return true; -} \ No newline at end of file +} diff --git a/contrib/extractor/loadlib/wdt.h b/contrib/extractor/loadlib/wdt.h index fcee8ac64..c575c1428 100644 --- a/contrib/extractor/loadlib/wdt.h +++ b/contrib/extractor/loadlib/wdt.h @@ -1,3 +1,21 @@ +/** + * This code is part of MaNGOS. Contributor & Copyright details are in AUTHORS/THANKS. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + #ifndef WDT_H #define WDT_H #include "loadlib.h" @@ -65,4 +83,4 @@ public: wdt_MWMO *wmo; }; -#endif \ No newline at end of file +#endif diff --git a/contrib/extractor_binary/README.txt b/contrib/extractor_binary/README.txt index 464f8f9bb..d75cd032b 100644 --- a/contrib/extractor_binary/README.txt +++ b/contrib/extractor_binary/README.txt @@ -31,6 +31,6 @@ MaNGOSExtractor_detailed.log which includes all the information about the extrac If you want to toggle some parts in the extraction process, there are a few internal variables in the extraction scripts, that can be modified. -Consider the Readme's in the directories extractor, vmap_assembler, vmap_extractor_v3 and mmap for further information about detail. +Consider the Readme's in the directories extractor, vmap_assembler, vmap_extractor and mmap for further information about detail. Also especially related to mmaps updating you might be interested in using the MoveMapGen.sh script. diff --git a/contrib/git_id/CMakeLists.txt b/contrib/git_id/CMakeLists.txt index d126ab6be..802c4106d 100644 --- a/contrib/git_id/CMakeLists.txt +++ b/contrib/git_id/CMakeLists.txt @@ -1,4 +1,18 @@ -SET(CMAKE_VERBOSE_MAKEFILE ON) -cmake_minimum_required (VERSION 2.6) -ADD_EXECUTABLE (git_id git_id.cpp) +# This code is part of MaNGOS. Contributor & Copyright details are in AUTHORS/THANKS. +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +cmake_minimum_required (VERSION 2.8) +ADD_EXECUTABLE (git_id git_id.cpp) diff --git a/contrib/git_id/git_id_vc100.vcxproj b/contrib/git_id/VC100/git_id_vc100.vcxproj similarity index 99% rename from contrib/git_id/git_id_vc100.vcxproj rename to contrib/git_id/VC100/git_id_vc100.vcxproj index c934a8981..ff524e191 100644 --- a/contrib/git_id/git_id_vc100.vcxproj +++ b/contrib/git_id/VC100/git_id_vc100.vcxproj @@ -93,9 +93,9 @@ - + - \ No newline at end of file + diff --git a/contrib/git_id/git_id_vc100.vcxproj.filters b/contrib/git_id/VC100/git_id_vc100.vcxproj.filters similarity index 95% rename from contrib/git_id/git_id_vc100.vcxproj.filters rename to contrib/git_id/VC100/git_id_vc100.vcxproj.filters index 158311880..14a395113 100644 --- a/contrib/git_id/git_id_vc100.vcxproj.filters +++ b/contrib/git_id/VC100/git_id_vc100.vcxproj.filters @@ -15,7 +15,7 @@ - + Source Files diff --git a/contrib/git_id/VC110/git_id_vc110.vcxproj b/contrib/git_id/VC110/git_id_vc110.vcxproj new file mode 100644 index 000000000..d2e621275 --- /dev/null +++ b/contrib/git_id/VC110/git_id_vc110.vcxproj @@ -0,0 +1,103 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + + git_id + {AD81BF86-050B-4605-8AF2-03C01967D784} + git_id + Win32Proj + + + + Application + Unicode + true + v110 + + + Application + Unicode + v110 + + + + + + + + + + + + + <_ProjectFileVersion>10.0.30319.1 + $(SolutionDir)$(Configuration)\ + $(Configuration)\ + true + $(SolutionDir)$(Configuration)\ + $(Configuration)\ + false + AllRules.ruleset + + + AllRules.ruleset + + + + + + Disabled + WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + EnableFastChecks + MultiThreadedDebugDLL + + + Level3 + EditAndContinue + + + true + Console + false + + + MachineX86 + + + + + WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + MultiThreadedDLL + + + Level3 + ProgramDatabase + + + true + Console + true + true + false + + + MachineX86 + + + + + + + + + \ No newline at end of file diff --git a/contrib/git_id/VC110/git_id_vc110.vcxproj.filters b/contrib/git_id/VC110/git_id_vc110.vcxproj.filters new file mode 100644 index 000000000..14a395113 --- /dev/null +++ b/contrib/git_id/VC110/git_id_vc110.vcxproj.filters @@ -0,0 +1,22 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hpp;hxx;hm;inl;inc;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav + + + + + Source Files + + + \ No newline at end of file diff --git a/contrib/git_id/git_id.cpp b/contrib/git_id/git_id.cpp index 4046af9f9..9da79937c 100644 --- a/contrib/git_id/git_id.cpp +++ b/contrib/git_id/git_id.cpp @@ -1,4 +1,4 @@ -/* +/** * This code is part of MaNGOS. Contributor & Copyright details are in AUTHORS/THANKS. * * This program is free software; you can redistribute it and/or modify @@ -14,7 +14,7 @@ * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -*/ + */ #include #include @@ -439,9 +439,9 @@ bool get_sql_update_info(const char* buffer, sql_update_info& info) sscanf(buffer, REV_SCAN "_%[^_]_%d_%[^.].sql", &info.rev, &info.nr, info.db) != 3) { info.rev = 0; // this may be set by the first scans, even if they fail - if (sscanf(buffer, "%d_%[^_]_%[^.].sql", &info.nr, info.db, info.table) != 3 && - sscanf(buffer, "%d_%[^.].sql", &info.nr, info.db) != 2) - return false; + if(sscanf(buffer, "%d_%[^_]_%[^.].sql", &info.nr, info.db, info.table) != 3 && + sscanf(buffer, "%d_%[^.].sql", &info.nr, info.db) != 2) + return false; } for (info.db_idx = 0; info.db_idx < NUM_DATABASES; info.db_idx++) @@ -512,7 +512,7 @@ bool find_sql_updates() { last_sql_rev[info.db_idx] = info.rev; last_sql_nr[info.db_idx] = info.nr; - sscanf(buffer, "%[^.]", last_sql_update[info.db_idx]); + sscanf(buffer, "%[^.]", last_sql_update[info.db_idx]); } new_sql_updates.erase(itr); } @@ -569,23 +569,23 @@ bool convert_sql_updates() std::ostringstream out_buff; - // add the update requirements - out_buff << "ALTER TABLE " << db_version_table[info.db_idx] - << " CHANGE COLUMN required_" << last_sql_update[info.db_idx] - << " required_" << new_name << " bit;\n\n"; + // add the update requirements + out_buff << "ALTER TABLE " << db_version_table[info.db_idx] + << " CHANGE COLUMN required_" << last_sql_update[info.db_idx] + << " required_" << new_name << " bit;\n\n"; - // skip the first one or two lines from the input - // if it already contains update requirements - if (fgets(buffer, MAX_BUF, fin)) - { - char dummy[MAX_BUF]; - if (sscanf(buffer, "ALTER TABLE %s CHANGE COLUMN required_%s required_%s bit", dummy, dummy, dummy) == 3) + // skip the first one or two lines from the input + // if it already contains update requirements + if (fgets(buffer, MAX_BUF, fin)) { - if (fgets(buffer, MAX_BUF, fin) && buffer[0] != '\n') + char dummy[MAX_BUF]; + if (sscanf(buffer, "ALTER TABLE %s CHANGE COLUMN required_%s required_%s bit", dummy, dummy, dummy) == 3) + { + if (fgets(buffer, MAX_BUF, fin) && buffer[0] != '\n') + out_buff << buffer; + } + else out_buff << buffer; - } - else - out_buff << buffer; } // copy the rest of the file diff --git a/contrib/git_id/git_id_vc100.sln b/contrib/git_id/git_id_vc100.sln index 5fddec2f6..8f0a014fa 100644 --- a/contrib/git_id/git_id_vc100.sln +++ b/contrib/git_id/git_id_vc100.sln @@ -1,7 +1,7 @@  Microsoft Visual Studio Solution File, Format Version 11.00 # Visual Studio 2010 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "git_id", "git_id_vc100.vcxproj", "{AD81BF86-050B-4605-8AF2-03C01967D784}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "git_id", "VC100\git_id_vc100.vcxproj", "{AD81BF86-050B-4605-8AF2-03C01967D784}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution diff --git a/contrib/git_id/git_id_vc110.sln b/contrib/git_id/git_id_vc110.sln index 9386b1c8b..73d0dbf1b 100644 --- a/contrib/git_id/git_id_vc110.sln +++ b/contrib/git_id/git_id_vc110.sln @@ -1,7 +1,7 @@  Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2012 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "git_id", "git_id_vc110.vcxproj", "{AD81BF86-050B-4605-8AF2-03C01967D784}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "git_id", "VC110\git_id_vc110.vcxproj", "{AD81BF86-050B-4605-8AF2-03C01967D784}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution diff --git a/contrib/mmap/src/IntermediateValues.cpp b/contrib/mmap/src/IntermediateValues.cpp index 6d8fb313e..378096817 100644 --- a/contrib/mmap/src/IntermediateValues.cpp +++ b/contrib/mmap/src/IntermediateValues.cpp @@ -1,4 +1,4 @@ -/* +/** * This code is part of MaNGOS. Contributor & Copyright details are in AUTHORS/THANKS. * * This program is free software; you can redistribute it and/or modify diff --git a/contrib/mmap/src/IntermediateValues.h b/contrib/mmap/src/IntermediateValues.h index b92dfbd45..86a390e98 100644 --- a/contrib/mmap/src/IntermediateValues.h +++ b/contrib/mmap/src/IntermediateValues.h @@ -1,4 +1,4 @@ -/* +/** * This code is part of MaNGOS. Contributor & Copyright details are in AUTHORS/THANKS. * * This program is free software; you can redistribute it and/or modify diff --git a/contrib/mmap/src/MMapCommon.h b/contrib/mmap/src/MMapCommon.h index b016bcd59..5f7b0766c 100644 --- a/contrib/mmap/src/MMapCommon.h +++ b/contrib/mmap/src/MMapCommon.h @@ -1,4 +1,4 @@ -/* +/** * This code is part of MaNGOS. Contributor & Copyright details are in AUTHORS/THANKS. * * This program is free software; you can redistribute it and/or modify diff --git a/contrib/mmap/src/MangosMap.h b/contrib/mmap/src/MangosMap.h index cfd09f1d2..1e99c3609 100644 --- a/contrib/mmap/src/MangosMap.h +++ b/contrib/mmap/src/MangosMap.h @@ -1,4 +1,4 @@ -/* +/** * This code is part of MaNGOS. Contributor & Copyright details are in AUTHORS/THANKS. * * This program is free software; you can redistribute it and/or modify diff --git a/contrib/mmap/src/MapBuilder.cpp b/contrib/mmap/src/MapBuilder.cpp index 359bc07e7..f6860a948 100644 --- a/contrib/mmap/src/MapBuilder.cpp +++ b/contrib/mmap/src/MapBuilder.cpp @@ -1,4 +1,4 @@ -/* +/** * This code is part of MaNGOS. Contributor & Copyright details are in AUTHORS/THANKS. * * This program is free software; you can redistribute it and/or modify diff --git a/contrib/mmap/src/MapBuilder.h b/contrib/mmap/src/MapBuilder.h index 93fd087a7..31670ea58 100644 --- a/contrib/mmap/src/MapBuilder.h +++ b/contrib/mmap/src/MapBuilder.h @@ -1,4 +1,4 @@ -/* +/** * This code is part of MaNGOS. Contributor & Copyright details are in AUTHORS/THANKS. * * This program is free software; you can redistribute it and/or modify diff --git a/contrib/mmap/src/TerrainBuilder.cpp b/contrib/mmap/src/TerrainBuilder.cpp index 787ec32ad..eb072c270 100644 --- a/contrib/mmap/src/TerrainBuilder.cpp +++ b/contrib/mmap/src/TerrainBuilder.cpp @@ -1,4 +1,4 @@ -/* +/** * This code is part of MaNGOS. Contributor & Copyright details are in AUTHORS/THANKS. * * This program is free software; you can redistribute it and/or modify diff --git a/contrib/mmap/src/TerrainBuilder.h b/contrib/mmap/src/TerrainBuilder.h index 10e5b3a64..c08b707c7 100644 --- a/contrib/mmap/src/TerrainBuilder.h +++ b/contrib/mmap/src/TerrainBuilder.h @@ -1,4 +1,4 @@ -/* +/** * This code is part of MaNGOS. Contributor & Copyright details are in AUTHORS/THANKS. * * This program is free software; you can redistribute it and/or modify diff --git a/contrib/mmap/src/VMapExtensions.cpp b/contrib/mmap/src/VMapExtensions.cpp index 97c9121a4..a540c61ef 100644 --- a/contrib/mmap/src/VMapExtensions.cpp +++ b/contrib/mmap/src/VMapExtensions.cpp @@ -1,4 +1,4 @@ -/* +/** * This code is part of MaNGOS. Contributor & Copyright details are in AUTHORS/THANKS. * * This program is free software; you can redistribute it and/or modify @@ -70,4 +70,4 @@ namespace VMAP tilesY = iTilesY; corner = iCorner; } -} \ No newline at end of file +} diff --git a/contrib/mmap/src/generator.cpp b/contrib/mmap/src/generator.cpp index 729acbc8f..8015775c4 100644 --- a/contrib/mmap/src/generator.cpp +++ b/contrib/mmap/src/generator.cpp @@ -1,4 +1,4 @@ -/* +/** * This code is part of MaNGOS. Contributor & Copyright details are in AUTHORS/THANKS. * * This program is free software; you can redistribute it and/or modify diff --git a/contrib/mysql_to_pgsql/CMakeLists.txt b/contrib/mysql_to_pgsql/CMakeLists.txt index 490a023e4..88159b2fb 100644 --- a/contrib/mysql_to_pgsql/CMakeLists.txt +++ b/contrib/mysql_to_pgsql/CMakeLists.txt @@ -1,5 +1,20 @@ -SET(CMAKE_VERBOSE_MAKEFILE ON) -cmake_minimum_required (VERSION 2.6) +# This code is part of MaNGOS. Contributor & Copyright details are in AUTHORS/THANKS. +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + +cmake_minimum_required (VERSION 2.8) INCLUDE(cmake/FindMySQL.cmake) INCLUDE(cmake/FindPostgreSQL.cmake) diff --git a/contrib/mysql_to_pgsql/README b/contrib/mysql_to_pgsql/README index bf7083fb6..5c852e2fb 100644 --- a/contrib/mysql_to_pgsql/README +++ b/contrib/mysql_to_pgsql/README @@ -11,4 +11,3 @@ Using cmake on a Unix/Linux 2. cmake -i 3. make 4. ./mysql2pgsql - diff --git a/contrib/mysql_to_pgsql/src/defines.h b/contrib/mysql_to_pgsql/src/defines.h index 618e3d68f..0c3da9fbe 100644 --- a/contrib/mysql_to_pgsql/src/defines.h +++ b/contrib/mysql_to_pgsql/src/defines.h @@ -1,4 +1,4 @@ -/* +/** * This code is part of MaNGOS. Contributor & Copyright details are in AUTHORS/THANKS. * * This program is free software; you can redistribute it and/or modify @@ -181,4 +181,3 @@ void PG_Escape_Str(string& str) } #endif - diff --git a/contrib/mysql_to_pgsql/src/main.cpp b/contrib/mysql_to_pgsql/src/main.cpp index e336cc95a..2f3a3717e 100644 --- a/contrib/mysql_to_pgsql/src/main.cpp +++ b/contrib/mysql_to_pgsql/src/main.cpp @@ -1,4 +1,4 @@ -/* +/** * This code is part of MaNGOS. Contributor & Copyright details are in AUTHORS/THANKS. * * This program is free software; you can redistribute it and/or modify diff --git a/contrib/soap/example.php b/contrib/soap/example.php index 1e9bf72f9..83d2761ec 100644 --- a/contrib/soap/example.php +++ b/contrib/soap/example.php @@ -17,7 +17,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -/* +/** * MaNGOSsoap client example * * a simple example how to invoke commands using SOAP diff --git a/contrib/vmap_assembler/CMakeLists.txt b/contrib/vmap_assembler/CMakeLists.txt index a2682ab66..cdde68c36 100644 --- a/contrib/vmap_assembler/CMakeLists.txt +++ b/contrib/vmap_assembler/CMakeLists.txt @@ -12,8 +12,6 @@ cmake_minimum_required (VERSION 2.8) project (MANGOS_VMAP_ASSEMB_IO) -set(CMAKE_VERBOSE_MAKEFILE true) - # uncomment next line to disable debug mode ADD_DEFINITIONS("-DIOMAP_DEBUG") ADD_DEFINITIONS("-DNO_CORE_FUNCS") diff --git a/contrib/vmap_assembler/vmap_assembler.cpp b/contrib/vmap_assembler/vmap_assembler.cpp index 0e350b4b1..07c2fc05a 100644 --- a/contrib/vmap_assembler/vmap_assembler.cpp +++ b/contrib/vmap_assembler/vmap_assembler.cpp @@ -1,4 +1,4 @@ -/* +/** * This code is part of MaNGOS. Contributor & Copyright details are in AUTHORS/THANKS. * * This program is free software; you can redistribute it and/or modify diff --git a/contrib/vmap_extractor/vmapextract/adtfile.cpp b/contrib/vmap_extractor/vmapextract/adtfile.cpp index bff92b2ed..7aa804ff5 100644 --- a/contrib/vmap_extractor/vmapextract/adtfile.cpp +++ b/contrib/vmap_extractor/vmapextract/adtfile.cpp @@ -1,4 +1,4 @@ -/* +/** * This code is part of MaNGOS. Contributor & Copyright details are in AUTHORS/THANKS. * * This program is free software; you can redistribute it and/or modify diff --git a/contrib/vmap_extractor/vmapextract/adtfile.h b/contrib/vmap_extractor/vmapextract/adtfile.h index 7fa2a9294..931ac7a3e 100644 --- a/contrib/vmap_extractor/vmapextract/adtfile.h +++ b/contrib/vmap_extractor/vmapextract/adtfile.h @@ -1,4 +1,4 @@ -/* +/** * This code is part of MaNGOS. Contributor & Copyright details are in AUTHORS/THANKS. * * This program is free software; you can redistribute it and/or modify diff --git a/contrib/vmap_extractor/vmapextract/dbcfile.cpp b/contrib/vmap_extractor/vmapextract/dbcfile.cpp index 041d670ee..d38208804 100644 --- a/contrib/vmap_extractor/vmapextract/dbcfile.cpp +++ b/contrib/vmap_extractor/vmapextract/dbcfile.cpp @@ -1,4 +1,4 @@ -/* +/** * This code is part of MaNGOS. Contributor & Copyright details are in AUTHORS/THANKS. * * This program is free software; you can redistribute it and/or modify @@ -116,4 +116,3 @@ DBCFile::Iterator DBCFile::end() assert(_data); return Iterator(*this, _stringTable); } - diff --git a/contrib/vmap_extractor/vmapextract/dbcfile.h b/contrib/vmap_extractor/vmapextract/dbcfile.h index dcb3c5a8d..3064366e8 100644 --- a/contrib/vmap_extractor/vmapextract/dbcfile.h +++ b/contrib/vmap_extractor/vmapextract/dbcfile.h @@ -1,4 +1,4 @@ -/* +/** * This code is part of MaNGOS. Contributor & Copyright details are in AUTHORS/THANKS. * * This program is free software; you can redistribute it and/or modify diff --git a/contrib/vmap_extractor/vmapextract/gameobject_extract.cpp b/contrib/vmap_extractor/vmapextract/gameobject_extract.cpp index cf1f244f3..85bb372aa 100644 --- a/contrib/vmap_extractor/vmapextract/gameobject_extract.cpp +++ b/contrib/vmap_extractor/vmapextract/gameobject_extract.cpp @@ -21,7 +21,7 @@ bool ExtractSingleModel(std::string& fname, StringSet& failedPaths) // >= 3.1.0 ADT MMDX section store filename.m2 filenames for corresponded .m2 file // nothing do - std::string output(szWorkDirWmo); + std::string output(szWorkDirWmo); // Stores output filename (possible changed) output += "/"; output += name; diff --git a/contrib/vmap_extractor/vmapextract/loadlib/loadlib.h b/contrib/vmap_extractor/vmapextract/loadlib/loadlib.h index 7236d1ed5..6fa53ea7f 100644 --- a/contrib/vmap_extractor/vmapextract/loadlib/loadlib.h +++ b/contrib/vmap_extractor/vmapextract/loadlib/loadlib.h @@ -1,4 +1,4 @@ -/* +/** * This code is part of MaNGOS. Contributor & Copyright details are in AUTHORS/THANKS. * * This program is free software; you can redistribute it and/or modify diff --git a/contrib/vmap_extractor/vmapextract/model.cpp b/contrib/vmap_extractor/vmapextract/model.cpp index 138d3a602..3de8d4170 100644 --- a/contrib/vmap_extractor/vmapextract/model.cpp +++ b/contrib/vmap_extractor/vmapextract/model.cpp @@ -1,4 +1,4 @@ -/* +/** * This code is part of MaNGOS. Contributor & Copyright details are in AUTHORS/THANKS. * * This program is free software; you can redistribute it and/or modify diff --git a/contrib/vmap_extractor/vmapextract/model.h b/contrib/vmap_extractor/vmapextract/model.h index 4c873d456..160d27195 100644 --- a/contrib/vmap_extractor/vmapextract/model.h +++ b/contrib/vmap_extractor/vmapextract/model.h @@ -1,4 +1,4 @@ -/* +/** * This code is part of MaNGOS. Contributor & Copyright details are in AUTHORS/THANKS. * * This program is free software; you can redistribute it and/or modify @@ -71,6 +71,7 @@ class ModelInstance ModelInstance() {} ModelInstance(MPQFile& f, const char* ModelInstName, uint32 mapID, uint32 tileX, uint32 tileY, FILE* pDirfile); + }; #endif diff --git a/contrib/vmap_extractor/vmapextract/modelheaders.h b/contrib/vmap_extractor/vmapextract/modelheaders.h index a61a6fdb2..95eafeb8e 100644 --- a/contrib/vmap_extractor/vmapextract/modelheaders.h +++ b/contrib/vmap_extractor/vmapextract/modelheaders.h @@ -1,4 +1,4 @@ -/* +/** * This code is part of MaNGOS. Contributor & Copyright details are in AUTHORS/THANKS. * * This program is free software; you can redistribute it and/or modify diff --git a/contrib/vmap_extractor/vmapextract/vec3d.h b/contrib/vmap_extractor/vmapextract/vec3d.h index be5396125..342a4b5cd 100644 --- a/contrib/vmap_extractor/vmapextract/vec3d.h +++ b/contrib/vmap_extractor/vmapextract/vec3d.h @@ -1,3 +1,21 @@ +/** + * This code is part of MaNGOS. Contributor & Copyright details are in AUTHORS/THANKS. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + #ifndef VEC3D_H #define VEC3D_H diff --git a/contrib/vmap_extractor/vmapextract/vmapexport.cpp b/contrib/vmap_extractor/vmapextract/vmapexport.cpp index 696746b47..29502a748 100644 --- a/contrib/vmap_extractor/vmapextract/vmapexport.cpp +++ b/contrib/vmap_extractor/vmapextract/vmapexport.cpp @@ -1,4 +1,4 @@ -/* +/** * This code is part of MaNGOS. Contributor & Copyright details are in AUTHORS/THANKS. * * This program is free software; you can redistribute it and/or modify @@ -528,7 +528,6 @@ bool processArgv(int argc, char** argv) break; } } - if (!result) { printf("Extract for %s.\n", szRawVMAPMagic); @@ -607,7 +606,6 @@ int main(int argc, char** argv) printf("Detected and using locale locale: %s\n", Locales[i]); break; } - ReadLiquidTypeTableDBC(); // extract data diff --git a/contrib/vmap_extractor/vmapextract/vmapexport.h b/contrib/vmap_extractor/vmapextract/vmapexport.h index 5b422d7a9..888970699 100644 --- a/contrib/vmap_extractor/vmapextract/vmapexport.h +++ b/contrib/vmap_extractor/vmapextract/vmapexport.h @@ -1,4 +1,4 @@ -/* +/** * This code is part of MaNGOS. Contributor & Copyright details are in AUTHORS/THANKS. * * This program is free software; you can redistribute it and/or modify diff --git a/contrib/vmap_extractor/vmapextract/wdtfile.cpp b/contrib/vmap_extractor/vmapextract/wdtfile.cpp index ec4728796..5fff3fa62 100644 --- a/contrib/vmap_extractor/vmapextract/wdtfile.cpp +++ b/contrib/vmap_extractor/vmapextract/wdtfile.cpp @@ -1,4 +1,4 @@ -/* +/** * This code is part of MaNGOS. Contributor & Copyright details are in AUTHORS/THANKS. * * This program is free software; you can redistribute it and/or modify diff --git a/contrib/vmap_extractor/vmapextract/wdtfile.h b/contrib/vmap_extractor/vmapextract/wdtfile.h index e57626651..d5abcede6 100644 --- a/contrib/vmap_extractor/vmapextract/wdtfile.h +++ b/contrib/vmap_extractor/vmapextract/wdtfile.h @@ -1,4 +1,4 @@ -/* +/** * This code is part of MaNGOS. Contributor & Copyright details are in AUTHORS/THANKS. * * This program is free software; you can redistribute it and/or modify diff --git a/contrib/vmap_extractor/vmapextract/wmo.cpp b/contrib/vmap_extractor/vmapextract/wmo.cpp index a05ab2008..68ba3f863 100644 --- a/contrib/vmap_extractor/vmapextract/wmo.cpp +++ b/contrib/vmap_extractor/vmapextract/wmo.cpp @@ -1,4 +1,4 @@ -/* +/** * This code is part of MaNGOS. Contributor & Copyright details are in AUTHORS/THANKS. * * This program is free software; you can redistribute it and/or modify @@ -184,6 +184,7 @@ bool WMOGroup::open() f.read(&fogIdx, 4); f.read(&liquidType, 4); f.read(&groupWMOID, 4); + } else if (!strcmp(fourcc, "MOPY")) { diff --git a/contrib/vmap_extractor/vmapextract/wmo.h b/contrib/vmap_extractor/vmapextract/wmo.h index f3c07c22d..dbfa8b5ed 100644 --- a/contrib/vmap_extractor/vmapextract/wmo.h +++ b/contrib/vmap_extractor/vmapextract/wmo.h @@ -1,4 +1,4 @@ -/* +/** * This code is part of MaNGOS. Contributor & Copyright details are in AUTHORS/THANKS. * * This program is free software; you can redistribute it and/or modify diff --git a/contrib/vmap_extractor/win/vmapExtractor_VC90.sln b/contrib/vmap_extractor/win/vmapExtractor_VC90.sln deleted file mode 100644 index 96ebada72..000000000 --- a/contrib/vmap_extractor/win/vmapExtractor_VC90.sln +++ /dev/null @@ -1,42 +0,0 @@ -Microsoft Visual Studio Solution File, Format Version 10.00 -# Visual Studio 2008 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "vmapExtractor", "VC90\vmapExtractor.vcproj", "{D4624B20-AC1E-4EE9-8C9C-0FB65EEE3393}" - ProjectSection(ProjectDependencies) = postProject - {B96F612A-C91D-43B3-A4C3-D4294817EC6C} = {B96F612A-C91D-43B3-A4C3-D4294817EC6C} - {8F1DEA42-6A5B-4B62-839D-C141A7BFACF2} = {8F1DEA42-6A5B-4B62-839D-C141A7BFACF2} - {03AB0F44-628E-4855-99A0-C98A1EB52C50} = {03AB0F44-628E-4855-99A0-C98A1EB52C50} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libmpq", "..\..\..\dep\libmpq\win\VC90\libmpq.vcproj", "{03AB0F44-628E-4855-99A0-C98A1EB52C50}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "zlib", "..\..\..\win\VC90\zlib.vcproj", "{8F1DEA42-6A5B-4B62-839D-C141A7BFACF2}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "bzip2", "..\..\..\win\VC90\bzip2.vcproj", "{B96F612A-C91D-43B3-A4C3-D4294817EC6C}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Win32 = Debug|Win32 - Release|Win32 = Release|Win32 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {D4624B20-AC1E-4EE9-8C9C-0FB65EEE3393}.Debug|Win32.ActiveCfg = Debug|Win32 - {D4624B20-AC1E-4EE9-8C9C-0FB65EEE3393}.Debug|Win32.Build.0 = Debug|Win32 - {D4624B20-AC1E-4EE9-8C9C-0FB65EEE3393}.Release|Win32.ActiveCfg = Release|Win32 - {D4624B20-AC1E-4EE9-8C9C-0FB65EEE3393}.Release|Win32.Build.0 = Release|Win32 - {03AB0F44-628E-4855-99A0-C98A1EB52C50}.Debug|Win32.ActiveCfg = Debug|Win32 - {03AB0F44-628E-4855-99A0-C98A1EB52C50}.Debug|Win32.Build.0 = Debug|Win32 - {03AB0F44-628E-4855-99A0-C98A1EB52C50}.Release|Win32.ActiveCfg = Release|Win32 - {03AB0F44-628E-4855-99A0-C98A1EB52C50}.Release|Win32.Build.0 = Release|Win32 - {8F1DEA42-6A5B-4B62-839D-C141A7BFACF2}.Debug|Win32.ActiveCfg = Debug|Win32 - {8F1DEA42-6A5B-4B62-839D-C141A7BFACF2}.Debug|Win32.Build.0 = Debug|Win32 - {8F1DEA42-6A5B-4B62-839D-C141A7BFACF2}.Release|Win32.ActiveCfg = Release|Win32 - {8F1DEA42-6A5B-4B62-839D-C141A7BFACF2}.Release|Win32.Build.0 = Release|Win32 - {B96F612A-C91D-43B3-A4C3-D4294817EC6C}.Debug|Win32.ActiveCfg = Debug|Win32 - {B96F612A-C91D-43B3-A4C3-D4294817EC6C}.Debug|Win32.Build.0 = Debug|Win32 - {B96F612A-C91D-43B3-A4C3-D4294817EC6C}.Release|Win32.ActiveCfg = Release|Win32 - {B96F612A-C91D-43B3-A4C3-D4294817EC6C}.Release|Win32.Build.0 = Release|Win32 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal diff --git a/dep/ACE_wrappers/CMakeLists.txt b/dep/ACE_wrappers/CMakeLists.txt index 9659cc081..f4c8310cf 100644 --- a/dep/ACE_wrappers/CMakeLists.txt +++ b/dep/ACE_wrappers/CMakeLists.txt @@ -1,4 +1,3 @@ -# # This code is part of MaNGOS. Contributor & Copyright details are in AUTHORS/THANKS. # # This program is free software; you can redistribute it and/or modify @@ -14,7 +13,6 @@ # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -# include(ExternalProject) diff --git a/dep/ACE_wrappers/ace/ACE.h b/dep/ACE_wrappers/ace/ACE.h index 99f5f1095..04b39a856 100644 --- a/dep/ACE_wrappers/ace/ACE.h +++ b/dep/ACE_wrappers/ace/ACE.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file ACE.h * * $Id: ACE.h 92060 2010-09-27 18:08:48Z johnnyw $ @@ -49,7 +49,7 @@ class ACE_Time_Value; class ACE_Message_Block; class ACE_Handle_Set; -/* +/** * @namespace ACE * * @brief The namespace containing the ACE framework itself. @@ -98,7 +98,7 @@ namespace ACE extern ACE_Export bool wild_match(const char* s, const char* pattern, bool case_sensitive = true, bool character_classes = false); - /* + /** * @name I/O operations * * Notes on common parameters: @@ -209,7 +209,7 @@ namespace ACE size_t *bytes_transferred = 0); /// Receive into a variable number of pieces. - /* + /** * Accepts a variable, caller-specified, number of pointer/length * pairs. Arguments following @a n are char *, size_t pairs. * @@ -353,7 +353,7 @@ namespace ACE size_t *bytes_transferred = 0); //@} - /* + /** * Wait up to @a timeout amount of time to passively establish a * connection. This method doesn't perform the @c accept, it just * does the timed wait. @@ -362,7 +362,7 @@ namespace ACE ACE_Time_Value *timeout, bool restart); - /* + /** * Wait up to @a timeout amount of time to complete an actively * established non-blocking connection. If @a is_tli is non-0 then * we are being called by a TLI wrapper (which behaves slightly @@ -373,7 +373,7 @@ namespace ACE const ACE_Time_Value *timeout, int is_tli = 0); - /* + /** * Reset the limit on the number of open handles. If @a new_limit * == -1 set the limit to the maximum allowable. Otherwise, set * the limit value to @a new_limit. If @a increase_limit_only is @@ -382,7 +382,7 @@ namespace ACE extern ACE_Export int set_handle_limit (int new_limit = -1, int increase_limit_only = 0); - /* + /** * Returns the maximum number of open handles currently permitted in * this process. This maximum may be extended using * @c ACE::set_handle_limit. @@ -390,7 +390,7 @@ namespace ACE extern ACE_Export int max_handles (void); // = String functions - /* + /** * Return a dynamically allocated duplicate of @a str, substituting * the environment variable if @c str[0] @c == @c '$'. Note that * the pointer is allocated with @c ACE_OS::malloc and must be freed @@ -436,7 +436,7 @@ namespace ACE #endif /* ACE_HAS_WCHAR */ - /* + /** * On Windows, determines if a specified pathname ends with ".exe" * (not case sensitive). If on Windows and there is no ".exe" suffix, * a new ACE_TCHAR array is allocated and a copy of @c pathname with @@ -454,7 +454,7 @@ namespace ACE */ extern ACE_Export const ACE_TCHAR *execname (const ACE_TCHAR *pathname); - /* + /** * Returns the "basename" of a @a pathname separated by @a delim. * For instance, the basename of "/tmp/foo.cpp" is "foo.cpp" when * @a delim is @a '/'. @@ -463,7 +463,7 @@ namespace ACE ACE_TCHAR delim = ACE_DIRECTORY_SEPARATOR_CHAR); - /* + /** * Returns the "dirname" of a @a pathname. For instance, the * dirname of "/tmp/foo.cpp" is "/tmp" when @a delim is @a '/'. If * @a pathname has no @a delim ".\0" is returned. This method does @@ -473,7 +473,7 @@ namespace ACE ACE_TCHAR delim = ACE_DIRECTORY_SEPARATOR_CHAR); - /* + /** * Returns the given timestamp in the form * "hour:minute:second:microsecond." The month, day, and year are * also stored in the beginning of the @a date_and_time array, which @@ -489,7 +489,7 @@ namespace ACE size_t time_len, bool return_pointer_to_first_digit = false); - /* + /** * Returns the current timestamp in the form * "hour:minute:second:microsecond." The month, day, and year are * also stored in the beginning of the @a date_and_time array, which @@ -504,7 +504,7 @@ namespace ACE size_t time_len, bool return_pointer_to_first_digit = false); - /* + /** * if @a avoid_zombies == 0 call @c ACE_OS::fork directly, else * create an orphan process that's inherited by the init process; * init cleans up when the orphan process terminates so we don't @@ -517,7 +517,7 @@ namespace ACE const ACE_TCHAR *program_name = ACE_TEXT (""), int avoid_zombies = 0); - /* + /** * Become a daemon process using the algorithm in Richard Stevens * "Advanced Programming in the UNIX Environment." If * @a close_all_handles is non-zero then all open file handles are @@ -584,7 +584,7 @@ namespace ACE /// Calculates the minimum enclosing frame size for the given values. extern ACE_Export u_long minimum_frame_size (u_long period1, u_long period2); - /* + /** * Function that can burn up noticeable CPU time: brute-force * determination of whether number @a n is prime. Returns 0 if * it is prime, or the smallest factor if it is not prime. @@ -610,14 +610,14 @@ namespace ACE /// @internal extern ACE_Export bool is_sock_error (int error); - /* + /** * Checks if process with {pid} is still alive. Returns 1 if it is * still alive, 0 if it isn't alive, and -1 if something weird * happened. */ extern ACE_Export int process_active (pid_t pid); - /* + /** * Terminate the process abruptly with id @a pid. On Win32 platforms * this uses {TerminateProcess} and on POSIX platforms is uses * {kill} with the -9 (SIGKILL) signal, which cannot be caught or @@ -627,7 +627,7 @@ namespace ACE */ extern ACE_Export int terminate_process (pid_t pid); - /* + /** * This method uses process id and object pointer to come up with a * machine wide unique name. The process ID will provide uniqueness * between processes on the same machine. The "this" pointer of the diff --git a/dep/ACE_wrappers/ace/ARGV.h b/dep/ACE_wrappers/ace/ARGV.h index 6bd70d1b7..66e71810a 100644 --- a/dep/ACE_wrappers/ace/ARGV.h +++ b/dep/ACE_wrappers/ace/ARGV.h @@ -1,7 +1,7 @@ // -*- C++ -*- //========================================================================== -/* +/** * @file ARGV.h * * $Id: ARGV.h 81156 2008-03-30 20:56:47Z iliyan $ @@ -27,7 +27,7 @@ // Open versioned namespace, if enabled by the user. ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_ARGV_Queue_Entry_T * * @brief An entry in the queue which keeps user supplied arguments. @@ -40,7 +40,7 @@ public: /// Initialize a ACE_ARGV_Queue_Entry_T. ACE_ARGV_Queue_Entry_T (void); - /* + /** * Initialize a ACE_ARGV_Queue_Entry_T. * * @param arg Pointer to an argument @@ -51,7 +51,7 @@ public: ACE_ARGV_Queue_Entry_T (const CHAR_TYPE *arg, bool quote_arg); - /* + /** * Initialize a ACE_ARGV_Queue_Entry_T. * * @param entry Pointer to a queue entry @@ -75,7 +75,7 @@ public: bool quote_arg_; }; -/* +/** * @class ACE_ARGV_T * * @brief Builds a counted argument vector (ala argc/argv) from either @@ -97,7 +97,7 @@ class ACE_ARGV_T { public: // = Initialization and termination. - /* + /** * Splits the specified string into an argument vector. Arguments in the * string are delimited by whitespace. Whitespace-containing arguments * must be enclosed in quotes, either single (') or double ("). @@ -113,7 +113,7 @@ public: explicit ACE_ARGV_T (const CHAR_TYPE buf[], bool substitute_env_args = true); - /* + /** * Initializes the argument vector from a set of arguments. Any environment * variable references are translated (if applicable) during execution of * this method. In contrast with ACE_ARGV_T(CHAR_TYPE *[], bool, bool), this @@ -140,7 +140,7 @@ public: bool substitute_env_args = true, bool quote_args = false); - /* + /** * Initializes the argument vector from a set of arguments. Any environment * variable references are translated (if applicable) during execution of * this method. @@ -163,7 +163,7 @@ public: bool substitute_env_args = true, bool quote_args = false); - /* + /** * Initializes the argument vector from two combined argument vectors. * * @param first_argv An array of tokens to initialize the object with. @@ -186,7 +186,7 @@ public: bool substitute_env_args = true, bool quote_args = false); - /* + /** * Initialize this object so arguments can be added later using one * of the add methods. This is referred to as the @i iterative method * of adding arguments to this object. @@ -201,7 +201,7 @@ public: * These methods access the argument vector contained in this object. */ //@{ - /* + /** * Returns the specified element of the current argument vector. * * @param index Index to the desired element. @@ -211,7 +211,7 @@ public: */ const CHAR_TYPE *operator[] (size_t index); - /* + /** * Returns the current argument vector. The returned pointers are to data * maintained internally to this class. Do not change or delete either the * pointers or the memory to which they refer. @@ -221,7 +221,7 @@ public: /// Returns the current number of arguments. int argc (void) const; - /* + /** * Returns a single string form of the current arguments. The returned * pointer refers to memory maintained internally to this class. Do not * change or delete it. @@ -236,7 +236,7 @@ public: // Declare the dynamic allocation hooks. ACE_ALLOC_HOOK_DECLARE; - /* + /** * Add another argument. This only works in the iterative mode. * * @note This method copies the specified pointer, but not the data @@ -255,7 +255,7 @@ public: */ int add (const CHAR_TYPE *next_arg, bool quote_arg = false); - /* + /** * Add an array of arguments. This only works in the iterative mode. * * @note This method copies the specified pointers, but not the data diff --git a/dep/ACE_wrappers/ace/ATM_Acceptor.h b/dep/ACE_wrappers/ace/ATM_Acceptor.h index 1fd1aaf10..1241a228c 100644 --- a/dep/ACE_wrappers/ace/ATM_Acceptor.h +++ b/dep/ACE_wrappers/ace/ATM_Acceptor.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file ATM_Acceptor.h * * $Id: ATM_Acceptor.h 82723 2008-09-16 09:35:44Z johnnyw $ @@ -49,7 +49,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL // Forward declarations. class ACE_Time_Value; -/* +/** * @class ACE_ATM_Acceptor * * @brief Defines the member functions for ACE_ATM_Acceptor abstraction. diff --git a/dep/ACE_wrappers/ace/ATM_Addr.h b/dep/ACE_wrappers/ace/ATM_Addr.h index c16742cda..7fa93f149 100644 --- a/dep/ACE_wrappers/ace/ATM_Addr.h +++ b/dep/ACE_wrappers/ace/ATM_Addr.h @@ -1,7 +1,7 @@ // -*- C++ -*- //========================================================================== -/* +/** * @file ATM_Addr.h * * $Id: ATM_Addr.h 80826 2008-03-04 14:51:23Z wotte $ @@ -51,7 +51,7 @@ typedef struct _linux_atm_addr typedef int ATM_Addr; #endif /* ACE_HAS_FORE_ATM_XTI/ACE_HAS_FORE_ATM_WS2/ACE_HAS_LINUX_ATM */ -/* +/** * @class ACE_ATM_Addr * * @brief Defines the ATM domain address family address format. @@ -73,7 +73,7 @@ public: ACE_ATM_Addr (const ACE_ATM_Addr &, u_char selector = DEFAULT_SELECTOR); - /* + /** * Creates an ACE_ATM_Addr from an ATMSAPAddress structure. This * is vendor specific (FORE systems). May need to change when other * vendors are supported. @@ -81,7 +81,7 @@ public: ACE_ATM_Addr (const ATM_Addr *, u_char selector = DEFAULT_SELECTOR); - /* + /** * Initializes an ACE_ATM_Addr from the which can be * "atm-address" (e.g., * "47.0005.80.ffe100.0000.f20f.2200.0020480694f9.00") or "hostname" @@ -102,7 +102,7 @@ public: int set (const ACE_ATM_Addr &, u_char selector = DEFAULT_SELECTOR); - /* + /** * Initializes an ACE_ATM_Addr from an ATMSAPAddress/sockaddr_atm * structure. This is vendor specific (FORE systems). May need to * change when other vendors are supported. @@ -110,7 +110,7 @@ public: int set (const ATM_Addr *, u_char selector = DEFAULT_SELECTOR); - /* + /** * Initializes an ACE_ATM_Addr from the which can be * "atm-address" (e.g., * "47.0005.80.ffe100.0000.f20f.2200.0020480694f9.00") or "hostname" @@ -119,7 +119,7 @@ public: int set (const ACE_TCHAR sap[], u_char selector = DEFAULT_SELECTOR); - /* + /** * Initializes an ACE_ATM_Addr from the which can be * "atm-address" (e.g., * "47.0005.80.ffe100.0000.f20f.2200.0020480694f9.00") or "hostname" @@ -127,7 +127,7 @@ public: */ virtual int string_to_addr (const ACE_TCHAR sap[]); - /* + /** * Return the character representation of the ATM address (e.g., * "47.0005.80.ffe100.0000.f20f.2200.0020480694f9.00") storing it in * the @a addr (which is assumed to be bytes long). This @@ -137,7 +137,7 @@ public: virtual int addr_to_string (ACE_TCHAR addr[], size_t addrlen) const; - /* + /** * Return the character representation of the ATM address (e.g., * "47.0005.80.ffe100.0000.f20f.2200.0020480694f9.00"). Returns -1 * if the of the is too small, else 0.(This version @@ -158,7 +158,7 @@ public: /// Set the selector for the network address. void set_selector (u_char selector); - /* + /** * Compare two addresses for equality. The addresses are considered * equal if they contain the same ATM address. Q: Is there any * other check for equality needed for ATM? diff --git a/dep/ACE_wrappers/ace/ATM_Connector.h b/dep/ACE_wrappers/ace/ATM_Connector.h index e6bee660c..940fc5a30 100644 --- a/dep/ACE_wrappers/ace/ATM_Connector.h +++ b/dep/ACE_wrappers/ace/ATM_Connector.h @@ -1,7 +1,7 @@ /* -*- C++ -*- */ //============================================================================= -/* +/** * @file ATM_Connector.h * * $Id: ATM_Connector.h 82723 2008-09-16 09:35:44Z johnnyw $ @@ -42,7 +42,7 @@ ACE_END_VERSIONED_NAMESPACE_DECL // Open versioned namespace, if enabled by the user. ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_ATM_Connector * * @brief Defines an active connection factory for the ACE_ATM C++ @@ -55,7 +55,7 @@ public: /// Default constructor. ACE_ATM_Connector (void); - /* + /** * Actively connect and produce a @a new_stream if things go well. * The @a remote_sap is the address that we are trying to connect * with. The are the parameters needed for either socket @@ -85,7 +85,7 @@ public: #endif /* ACE_WIN32 */ int perms = 0); - /* + /** * Actively connect and produce a @a new_stream if things go well. * The @a remote_sap is the address that we are trying to connect * with. The are the parameters needed for either socket @@ -116,7 +116,7 @@ public: #endif /* ACE_WIN32 */ int perms = 0); - /* + /** * Try to complete a non-blocking connection. * If connection completion is successful then @a new_stream contains * the connected ACE_SOCK_Stream. If @a remote_sap is non-NULL then it @@ -126,7 +126,7 @@ public: ACE_ATM_Addr *remote_sap, ACE_Time_Value *tv); - /* + /** * Actively add a leaf to the root (i.e., point-to-multipoint). The * @a remote_sap is the address of the leaf that we * are trying to add. diff --git a/dep/ACE_wrappers/ace/ATM_Params.h b/dep/ACE_wrappers/ace/ATM_Params.h index 85ad3aefe..d1e8c9231 100644 --- a/dep/ACE_wrappers/ace/ATM_Params.h +++ b/dep/ACE_wrappers/ace/ATM_Params.h @@ -1,7 +1,7 @@ // -*- C++ -*- //========================================================================== -/* +/** * @file ATM_Params.h * * $Id: ATM_Params.h 80826 2008-03-04 14:51:23Z wotte $ @@ -51,7 +51,7 @@ typedef int Param_Udata; ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_ATM_Params * * @brief Wrapper class that simplifies the information passed to the ATM @@ -60,7 +60,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL class ACE_Export ACE_ATM_Params { public: - /* + /** * Initialize the data members. This class combines options from * ACE_SOCK_Connector (@a protocol_family, @a protocol, , * @a protocol_info, , and @a flags) and diff --git a/dep/ACE_wrappers/ace/ATM_QoS.h b/dep/ACE_wrappers/ace/ATM_QoS.h index a94f37db8..4e35f3fdd 100644 --- a/dep/ACE_wrappers/ace/ATM_QoS.h +++ b/dep/ACE_wrappers/ace/ATM_QoS.h @@ -1,7 +1,7 @@ // -*- C++ -*- //========================================================================== -/* +/** * @file ATM_QoS.h * * $Id: ATM_QoS.h 80826 2008-03-04 14:51:23Z wotte $ @@ -46,7 +46,7 @@ ACE_END_VERSIONED_NAMESPACE_DECL ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_ATM_QoS * * @brief Define the QoS parameters for ATM diff --git a/dep/ACE_wrappers/ace/ATM_Stream.h b/dep/ACE_wrappers/ace/ATM_Stream.h index 92a8b0a3d..41ffb0da3 100644 --- a/dep/ACE_wrappers/ace/ATM_Stream.h +++ b/dep/ACE_wrappers/ace/ATM_Stream.h @@ -1,7 +1,7 @@ /* -*- C++ -*- */ //============================================================================= -/* +/** * @file ATM_Stream.h * * $Id: ATM_Stream.h 80826 2008-03-04 14:51:23Z wotte $ @@ -40,7 +40,7 @@ ACE_END_VERSIONED_NAMESPACE_DECL ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_ATM_Stream * * @brief Defines the member functions for ACE_ATM_Stream abstraction. diff --git a/dep/ACE_wrappers/ace/Acceptor.h b/dep/ACE_wrappers/ace/Acceptor.h index 912f193af..64cf488b9 100644 --- a/dep/ACE_wrappers/ace/Acceptor.h +++ b/dep/ACE_wrappers/ace/Acceptor.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Acceptor.h * * $Id: Acceptor.h 88800 2010-02-01 23:18:34Z shuston $ @@ -26,7 +26,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_Acceptor * * @brief Abstract factory for creating a service handler @@ -64,7 +64,7 @@ public: ACE_Acceptor (ACE_Reactor * = 0, int use_select = 1); - /* + /** * Open the contained @c PEER_ACCEPTOR object to begin listening, and * register with the specified reactor for accept events. An * acceptor can only listen to one port at a time, so make sure to @@ -103,7 +103,7 @@ public: int use_select = 1, int reuse_addr = 1); - /* + /** * Open the contained @c PEER_ACCEPTOR object to begin listening, and * register with the specified reactor for accept events. An * acceptor can only listen to one port at a time, so make sure to @@ -175,7 +175,7 @@ protected: // for creating, accepting, and activating SVC_HANDLER's, // respectively. - /* + /** * Bridge method for creating a SVC_HANDLER. The default is to * create a new {SVC_HANDLER} if {sh} == 0, else {sh} is unchanged. * However, subclasses can override this policy to perform @@ -185,14 +185,14 @@ protected: */ virtual int make_svc_handler (SVC_HANDLER *&sh); - /* + /** * Bridge method for accepting the new connection into the * @a svc_handler. The default behavior delegates to the * PEER_ACCEPTOR::accept. */ virtual int accept_svc_handler (SVC_HANDLER *svc_handler); - /* + /** * Bridge method for activating a {svc_handler} with the appropriate * concurrency strategy. The default behavior of this method is to * activate the SVC_HANDLER by calling its {open} method (which @@ -240,7 +240,7 @@ protected: /// Needed to reopen the socket if {accept} fails. ACE_PEER_ACCEPTOR_ADDR peer_acceptor_addr_; - /* + /** * Flags that indicate how {SVC_HANDLER}'s should be initialized * prior to being activated. Right now, the only flag that is * processed is {ACE_NONBLOCK}, which enabled non-blocking I/O on @@ -256,7 +256,7 @@ protected: int reuse_addr_; }; -/* +/** * @class ACE_Strategy_Acceptor * * @brief Abstract factory for creating a service handler @@ -299,7 +299,7 @@ public: int use_select = 1, int reuse_addr = 1); - /* + /** * Initialize the appropriate strategies for creation, passive * connection acceptance, and concurrency, and then register {this} * with the Reactor and listen for connection requests at the @@ -316,7 +316,7 @@ public: int use_select = 1, int reuse_addr = 1); - /* + /** * Open the contained @c PEER_ACCEPTOR object to begin listening, and * register with the specified reactor for accept events. * @@ -356,7 +356,7 @@ public: int use_select = 1, int reuse_addr = 1); - /* + /** * Initialize the appropriate strategies for creation, passive * connection acceptance, and concurrency, and then register {this} * with the Reactor and listen for connection requests at the @@ -413,7 +413,7 @@ protected: // for creating, accepting, and activating {SVC_HANDLER}'s, // respectively. - /* + /** * Bridge method for creating a {SVC_HANDLER}. The strategy for * creating a {SVC_HANDLER} are configured into the Acceptor via * it's {creation_strategy_}. The default is to create a new @@ -425,14 +425,14 @@ protected: */ virtual int make_svc_handler (SVC_HANDLER *&); - /* + /** * Bridge method for accepting the new connection into the * {SVC_HANDLER}. The default behavior delegates to the * {PEER_ACCEPTOR::accept} in the {Acceptor_Strategy}. */ virtual int accept_svc_handler (SVC_HANDLER *svc_handler); - /* + /** * Bridge method for activating a {SVC_HANDLER} with the appropriate * concurrency strategy. The default behavior of this method is to * activate the {SVC_HANDLER} by calling its {open} method (which @@ -499,7 +499,7 @@ protected: ACE_PEER_ACCEPTOR_ADDR service_addr_; }; -/* +/** * @class ACE_Oneshot_Acceptor * * @brief Generic factory for passively connecting clients and creating @@ -542,7 +542,7 @@ public: /// Constructor. ACE_Oneshot_Acceptor (void); - /* + /** * Initialize the appropriate strategies for concurrency and then * open the acceptor at the designated @a local_addr. Note * that unlike ACE_Acceptor and ACE_Strategy_Acceptor, this @@ -554,7 +554,7 @@ public: ACE_Reactor *reactor = ACE_Reactor::instance (), ACE_Concurrency_Strategy * = 0); - /* + /** * Initialize the appropriate strategies for concurrency and then * open the acceptor at the designated @a local_addr. Note * that unlike ACE_Acceptor and ACE_Strategy_Acceptor, this @@ -597,7 +597,7 @@ public: ACE_ALLOC_HOOK_DECLARE; protected: - /* + /** * Bridge method for activating a {svc_handler} with the appropriate * concurrency strategy. Default behavior is to activate the * {SVC_HANDLER} as a "passive object." However, subclasses can @@ -654,7 +654,7 @@ protected: virtual int resume (void); private: - /* + /** * Insert ourselves into the {ACE_Reactor} so that we can continue * accepting this connection asynchronously. This method should NOT * be called by developers directly. diff --git a/dep/ACE_wrappers/ace/Activation_Queue.h b/dep/ACE_wrappers/ace/Activation_Queue.h index 736346ff2..ab58eedb5 100644 --- a/dep/ACE_wrappers/ace/Activation_Queue.h +++ b/dep/ACE_wrappers/ace/Activation_Queue.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Activation_Queue.h * * $Id: Activation_Queue.h 91066 2010-07-12 11:05:04Z johnnyw $ @@ -33,7 +33,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL class ACE_Method_Request; -/* +/** * @class ACE_Activation_Queue * * @brief @@ -53,7 +53,7 @@ class ACE_Export ACE_Activation_Queue : private ACE_Copy_Disabled { public: /// Constructor. - /* + /** * Initializes a new activation queue. * * @param new_queue The activation queue uses an ACE_Message_Queue to @@ -84,7 +84,7 @@ public: // = Activate Queue operations. /// Dequeue the next available ACE_Method_Request. - /* + /** * @param tv If 0, the method will block until a method request is * available, else will wait until the absolute time specified * in the referenced ACE_Time_Value. This method will return, @@ -98,7 +98,7 @@ public: ACE_Method_Request *dequeue (ACE_Time_Value *tv = 0); /// Enqueue the ACE_Method_Request in priority order. - /* + /** * The priority of the method request is obtained via the @c priority() * method of the queued method request. Priority ordering is determined * by the ACE_Message_Queue class; 0 is the lowest priority. diff --git a/dep/ACE_wrappers/ace/Active_Map_Manager.h b/dep/ACE_wrappers/ace/Active_Map_Manager.h index 5cce302f8..a6c167e5f 100644 --- a/dep/ACE_wrappers/ace/Active_Map_Manager.h +++ b/dep/ACE_wrappers/ace/Active_Map_Manager.h @@ -1,7 +1,7 @@ /* -*- C++ -*- */ //============================================================================= -/* +/** * @file Active_Map_Manager.h * * $Id: Active_Map_Manager.h 91066 2010-07-12 11:05:04Z johnnyw $ @@ -25,7 +25,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_Active_Map_Manager_Key * * @brief Key used in the Active Object Map. @@ -40,7 +40,7 @@ public: /// Default constructor. ACE_Active_Map_Manager_Key (void); - /* + /** * Constructor given the @a slot_index and @a slot_generation number. * This is useful once the user has somehow recovered the * @a slot_index and @a slot_generation number from the client. @@ -83,7 +83,7 @@ public: private: - /* + /** * @brief Data for the Active Object Map Key. * * This separate structure makes it easier to manage copying diff --git a/dep/ACE_wrappers/ace/Active_Map_Manager_T.h b/dep/ACE_wrappers/ace/Active_Map_Manager_T.h index 5b701b424..80eaada26 100644 --- a/dep/ACE_wrappers/ace/Active_Map_Manager_T.h +++ b/dep/ACE_wrappers/ace/Active_Map_Manager_T.h @@ -1,7 +1,7 @@ /* -*- C++ -*- */ //============================================================================= -/* +/** * @file Active_Map_Manager_T.h * * $Id: Active_Map_Manager_T.h 84316 2009-02-03 19:46:05Z johnnyw $ @@ -26,7 +26,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_Active_Map_Manager * * @brief Define a map abstraction that associates system generated @@ -81,7 +81,7 @@ public: /// corresponding key produced by the Active_Map_Manager. int bind (const T &value); - /* + /** * Reserves a slot in the internal structure and returns the key and * a pointer to the value. User should place their @a value into * @a internal_value. This method is useful in reducing the number @@ -98,7 +98,7 @@ public: int rebind (const ACE_Active_Map_Manager_Key &key, const T &value); - /* + /** * Reassociate @a key with @a value, storing the old value into the * "out" parameter @a old_value. The function fails if @a key is not * in the map. @@ -107,7 +107,7 @@ public: const T &value, T &old_value); - /* + /** * Reassociate @a key with @a value, storing the old key and value * into the "out" parameter @a old_key and @a old_value. The function * fails if @a key is not in the map. @@ -124,7 +124,7 @@ public: /// Is @a key in the map? int find (const ACE_Active_Map_Manager_Key &key) const; - /* + /** * Locate @a value associated with @a key. The value is returned via * @a internal_value and hence a copy is saved. Note that * @a internal_value is only a temporary pointer and will change when @@ -146,7 +146,7 @@ public: int unbind (const ACE_Active_Map_Manager_Key &key, T &value); - /* + /** * Locate @a value associated with @a key. The value is returned via * @a internal_value and hence a copy is saved. Note that * @a internal_value is only a temporary pointer and will change when diff --git a/dep/ACE_wrappers/ace/Addr.h b/dep/ACE_wrappers/ace/Addr.h index 29bc289b2..e58ffe2c0 100644 --- a/dep/ACE_wrappers/ace/Addr.h +++ b/dep/ACE_wrappers/ace/Addr.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Addr.h * * $Id: Addr.h 81030 2008-03-20 12:43:29Z johnnyw $ @@ -23,7 +23,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_Addr * * @brief Defines the base class for the "address family independent" diff --git a/dep/ACE_wrappers/ace/Arg_Shifter.h b/dep/ACE_wrappers/ace/Arg_Shifter.h index d1e56de14..57cd2b0f5 100644 --- a/dep/ACE_wrappers/ace/Arg_Shifter.h +++ b/dep/ACE_wrappers/ace/Arg_Shifter.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Arg_Shifter.h * * $Id: Arg_Shifter.h 91459 2010-08-25 09:51:01Z mcorino $ @@ -25,7 +25,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_Arg_Shifter_T * * @brief This ADT operates on a specified set of arguments (@a argv). @@ -56,7 +56,7 @@ class ACE_Arg_Shifter_T { public: // = Initialization and termination methods. - /* + /** * Initialize the ACE_Arg_Shifter to the vector over which to * iterate. Optionally, also provide the temporary array for * use in shifting the arguments. If ACE_Arg_Shifter must allocate @@ -93,7 +93,7 @@ public: /// Get the current head of the vector. const CHAR_TYPE *get_current (void) const; - /* + /** * If the @a flag matches the current_arg of arg shifter * this method will attempt to return the associated * parameter value @@ -127,7 +127,7 @@ public: */ const CHAR_TYPE *get_the_parameter (const CHAR_TYPE* flag); - /* + /** * Check if the current argument matches (case insensitive) @a flag * * ------------------------------------------------------------ diff --git a/dep/ACE_wrappers/ace/Argv_Type_Converter.h b/dep/ACE_wrappers/ace/Argv_Type_Converter.h index b21fc9fee..d41d839b6 100644 --- a/dep/ACE_wrappers/ace/Argv_Type_Converter.h +++ b/dep/ACE_wrappers/ace/Argv_Type_Converter.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Argv_Type_Converter.h * * $Id: Argv_Type_Converter.h 83891 2008-11-28 11:01:50Z johnnyw $ @@ -24,7 +24,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_Argv_Type_Converter * * @brief To convert 'char' input/command line parameter to 'wchar_t'. diff --git a/dep/ACE_wrappers/ace/Array_Base.h b/dep/ACE_wrappers/ace/Array_Base.h index fe426a3ac..0d6620a6c 100644 --- a/dep/ACE_wrappers/ace/Array_Base.h +++ b/dep/ACE_wrappers/ace/Array_Base.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Array_Base.h * * $Id: Array_Base.h 84477 2009-02-16 13:30:38Z johnnyw $ @@ -30,7 +30,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL // Forward declaration. template class ACE_Array_Iterator; -/* +/** * @class ACE_Array_Base * * @brief Implement a simple dynamic array @@ -72,14 +72,14 @@ public: T const & default_value, ACE_Allocator * the_allocator = 0); - /* + /** * The copy constructor performs initialization by making an exact * copy of the contents of parameter , i.e., *this == s will * return true. */ ACE_Array_Base (ACE_Array_Base const & s); - /* + /** * Assignment operator performs an assignment by making an exact * copy of the contents of parameter , i.e., *this == s will * return true. Note that if the of is >= than @@ -106,7 +106,7 @@ public: /// -1 if @a slot is not in range, else returns 0. int set (T const & new_item, size_type slot); - /* + /** * Get an item in the array at location @a slot. Returns -1 if * @a slot is not in range, else returns 0. Note that this function * copies the item. If you want to avoid the copy, you can use @@ -117,7 +117,7 @@ public: /// Returns the of the array. size_type size (void) const; - /* + /** * Changes the size of the array to match @a new_size. * It copies the old contents into the new array. * Return -1 on failure. @@ -127,7 +127,7 @@ public: /// Returns the of the array. size_type max_size (void) const; - /* + /** * Changes the size of the array to match @a new_size. * It copies the old contents into the new array. * Return -1 on failure. @@ -135,7 +135,7 @@ public: */ int max_size (size_type new_size); - /* + /** * @name Forward Iterator Accessors * * Forward iterator accessors. @@ -147,7 +147,7 @@ public: const_iterator end (void) const; //@} - /* + /** * @name Reverse Iterator Accessors * * Reverse iterator accessors. @@ -173,7 +173,7 @@ protected: /// in @c array_. size_type max_size_; - /* + /** * Current size of the array. This starts out being == to * . However, if we are assigned a smaller array, then * will become less than . The purpose of @@ -193,7 +193,7 @@ protected: // **************************************************************** -/* +/** * @class ACE_Array_Iterator * * @brief Implement an iterator over an ACE_Array. diff --git a/dep/ACE_wrappers/ace/Array_Map.h b/dep/ACE_wrappers/ace/Array_Map.h index 5ad8ea6bc..1515ea455 100644 --- a/dep/ACE_wrappers/ace/Array_Map.h +++ b/dep/ACE_wrappers/ace/Array_Map.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Array_Map.h * * $Id: Array_Map.h 84136 2009-01-12 11:01:17Z johnnyw $ @@ -34,7 +34,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_Array_Map * * @brief Light weight array-based map with fast iteration, but linear @@ -105,7 +105,7 @@ public: ACE_DECLARE_STL_REVERSE_ITERATORS /// Default Constructor. - /* + /** * Create an empty map with a preallocated buffer of size @a s. */ ACE_Array_Map (size_type s = 0); @@ -123,7 +123,7 @@ public: /// Destructor. ~ACE_Array_Map (void); - /* + /** * @name Forward Iterator Accessors * * Forward iterator accessors. @@ -135,7 +135,7 @@ public: const_iterator end (void) const; //@} - /* + /** * @name Reverse Iterator Accessors * * Reverse iterator accessors. @@ -148,7 +148,7 @@ public: //@} /// Return current size of map. - /* + /** * @return The number of elements in the map. */ size_type size (void) const; @@ -159,7 +159,7 @@ public: /// Return @c true if the map is empty, else @c false. bool is_empty (void) const; // ACE style - /* + /** * Return @c true if the map is empty, else @c false. We recommend * using @c is_empty() instead since it's more consistent with the * ACE container naming conventions. @@ -171,7 +171,7 @@ public: void swap (ACE_Array_Map & map); /// Insert the value @a x into the map. - /* + /** * STL-style map insertion method. * * @param x @c std::pair containing key and datum. @@ -194,36 +194,36 @@ public: void erase (iterator pos); /// Remove element corresponding to key @a k from the map. - /* + /** * @return Number of elements that were erased. */ size_type erase (key_type const & k); /// Remove range of elements [@a first, @a last) from the map. - /* + /** * @note [@a first, @a last) must be valid range within the map. */ void erase (iterator first, iterator last); /// Clear contents of map. - /* + /** * @note This a constant time (O(1)) operation. */ void clear (void); - /* + /** * @name Search Operations * * Search the map for data corresponding to key @a k. */ //@{ - /* + /** * @return @c end() if data corresponding to key @a k is not in the * map. */ iterator find (key_type const & k); - /* + /** * @return @c end() if data corresponding to key @a k is not in the * map. */ @@ -231,14 +231,14 @@ public: //@} /// Count the number of elements corresponding to key @a k. - /* + /** * @return In the case of this map, the count will always be one if * such exists in the map. */ size_type count (key_type const & k); /// Convenience array index operator. - /* + /** * Array index operator that allows insertion and retrieval of * elements using an array index syntax, such as: * @par @@ -257,7 +257,7 @@ private: size_type size_; /// Current size of underlying array. - /* + /** * @note @c capacity_ is always greater than or equal to @c size_; */ size_type capacity_; diff --git a/dep/ACE_wrappers/ace/Assert.h b/dep/ACE_wrappers/ace/Assert.h index c9500da26..89363d4c6 100644 --- a/dep/ACE_wrappers/ace/Assert.h +++ b/dep/ACE_wrappers/ace/Assert.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Assert.h * * $Id: Assert.h 82808 2008-09-23 11:27:27Z smcqueen $ diff --git a/dep/ACE_wrappers/ace/Asynch_Acceptor.h b/dep/ACE_wrappers/ace/Asynch_Acceptor.h index d086d742c..b806d6e45 100644 --- a/dep/ACE_wrappers/ace/Asynch_Acceptor.h +++ b/dep/ACE_wrappers/ace/Asynch_Acceptor.h @@ -1,7 +1,7 @@ /* -*- C++ -*- */ //============================================================================= -/* +/** * @file Asynch_Acceptor.h * * $Id: Asynch_Acceptor.h 91693 2010-09-09 12:57:54Z johnnyw $ @@ -32,7 +32,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL class ACE_Message_Block; class ACE_INET_Addr; -/* +/** * @class ACE_Asynch_Acceptor * * @brief This class is an example of the Acceptor Pattern. This class @@ -52,7 +52,7 @@ public: /// Virtual destruction virtual ~ACE_Asynch_Acceptor (void); - /* + /** * @c open starts one or more asynchronous accept requests on a * @a address. Each accept operation may optionally read an * initial buffer from the new connection when accepted. @@ -119,7 +119,7 @@ public: /// Get the underlying handle. virtual ACE_HANDLE get_handle (void) const; - /* + /** * Set the underlying listen handle. It is the user's responsibility * to make sure that the old listen handle has been appropriately * closed and the all outstanding asynchronous operations have @@ -128,13 +128,13 @@ public: virtual int set_handle (ACE_HANDLE handle); /// This initiates a new asynchronous accept operation. - /* + /** * You need only call this method if the @a reissue_accept argument * passed to @c open() was 0. */ virtual int accept (size_t bytes_to_read = 0, const void *act = 0); - /* + /** * Cancels all pending accepts operations issued by this object. * * @note On Windows, only accept operations initiated by the calling thread @@ -142,7 +142,7 @@ public: */ virtual int cancel (void); - /* + /** * Template method to validate peer before service is opened. * This method is called after a new connection is accepted if the * @a validate_connection argument to @c open() was non-zero or @@ -166,7 +166,7 @@ public: const ACE_INET_Addr &remote, const ACE_INET_Addr& local); - /* + /** * Template method for deciding whether to reissue accept. * * This hook method is called after each accept completes to decide if @@ -229,7 +229,7 @@ protected: /// Return the asynch accept object. ACE_Asynch_Accept &asynch_accept (void); - /* + /** * This is the template method used to create new handler. * Subclasses must overwrite this method if a new handler creation * strategy is required. diff --git a/dep/ACE_wrappers/ace/Asynch_Connector.h b/dep/ACE_wrappers/ace/Asynch_Connector.h index 5b39dc576..7c7969cc2 100644 --- a/dep/ACE_wrappers/ace/Asynch_Connector.h +++ b/dep/ACE_wrappers/ace/Asynch_Connector.h @@ -1,7 +1,7 @@ /* -*- C++ -*- */ //============================================================================= -/* +/** * @file Asynch_Connector.h * * $Id: Asynch_Connector.h 80826 2008-03-04 14:51:23Z wotte $ @@ -31,7 +31,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL // Forward declarations class ACE_Message_Block; -/* +/** * @class ACE_Asynch_Connector * * @brief This class is an example of the Connector pattern. This class @@ -52,7 +52,7 @@ public: /// Virtual destruction virtual ~ACE_Asynch_Connector (void); - /* + /** * This opens asynch connector */ virtual int open (bool pass_addresses = false, @@ -66,7 +66,7 @@ public: int reuse_addr = 1, const void *act = 0); - /* + /** * This cancels all pending accepts operations that were issued by * the calling thread. * @@ -78,7 +78,7 @@ public: virtual int cancel (void); - /* + /** * Template method to validate peer before service is opened. * This method is called when the connection attempt completes, * whether it succeeded or failed, if the @a validate_connection @@ -137,7 +137,7 @@ protected: /// Return the asynch Connect object. ACE_Asynch_Connect & asynch_connect (void); - /* + /** * This is the template method used to create new handler. * Subclasses must overwrite this method if a new handler creation * strategy is required. diff --git a/dep/ACE_wrappers/ace/Asynch_IO.h b/dep/ACE_wrappers/ace/Asynch_IO.h index a136436a4..641e22a8d 100644 --- a/dep/ACE_wrappers/ace/Asynch_IO.h +++ b/dep/ACE_wrappers/ace/Asynch_IO.h @@ -1,7 +1,7 @@ /* -*- C++ -*- */ //============================================================================= -/* +/** * @file Asynch_IO.h * * $Id: Asynch_IO.h 84837 2009-03-16 13:01:15Z johnnyw $ @@ -88,7 +88,7 @@ class ACE_Addr; class ACE_Asynch_Result_Impl; class ACE_Time_Value; -/* +/** * @class ACE_Asynch_Result * * @brief An interface base class which allows users access to common @@ -114,7 +114,7 @@ public: /// Did the operation succeed? int success (void) const; - /* + /** * This is the ACT associated with the handle on which the * Asynch_Operation takes place. * @@ -128,7 +128,7 @@ public: /// Error value if the operation fails. unsigned long error (void) const; - /* + /** * On WIN32, this returns the event associated with the OVERLAPPED * structure. * @@ -136,7 +136,7 @@ public: */ ACE_HANDLE event (void) const; - /* + /** * This really makes sense only when doing file I/O. * * On WIN32, these are represented in the OVERLAPPED datastructure. @@ -147,7 +147,7 @@ public: unsigned long offset (void) const; unsigned long offset_high (void) const; - /* + /** * Priority of the operation. * * On POSIX4-Unix, this is supported. Priority works like {nice} in @@ -159,7 +159,7 @@ public: */ int priority (void) const; - /* + /** * POSIX4 real-time signal number to be used for the * operation. {signal_number} ranges from ACE_SIGRTMIN to ACE_SIGRTMAX. By * default, ACE_SIGRTMIN is used to issue {aio_} calls. This is a no-op @@ -186,7 +186,7 @@ protected: // Forward declarations class ACE_Asynch_Operation_Impl; -/* +/** * @class ACE_Asynch_Operation * * @brief This is an interface base class for all asynch @@ -202,7 +202,7 @@ class ACE_Export ACE_Asynch_Operation { public: - /* + /** * Initializes the factory with information which will be used with * each asynchronous call. If ({handle} == ACE_INVALID_HANDLE), * {ACE_Handler::handle} will be called on the {handler} to get the @@ -213,7 +213,7 @@ public: const void *completion_key, ACE_Proactor *proactor); - /* + /** * (Attempts to) cancel the asynchronous operation pending against * the {handle} registered with this Operation. * @@ -275,7 +275,7 @@ protected: class ACE_Asynch_Read_Stream_Result_Impl; class ACE_Asynch_Read_Stream_Impl; -/* +/** * @class ACE_Asynch_Read_Stream * * @brief This class is a factory for starting off asynchronous reads @@ -298,7 +298,7 @@ public: /// Destructor virtual ~ACE_Asynch_Read_Stream (void); - /* + /** * Initializes the factory with information which will be used with * each asynchronous call. * @@ -317,7 +317,7 @@ public: const void *completion_key = 0, ACE_Proactor *proactor = 0); - /* + /** * Initiate an asynchronous read operation. * * @param message_block The ACE_Message_Block to receive the data. @@ -348,7 +348,7 @@ public: int signal_number = ACE_SIGRTMIN); #if defined (ACE_HAS_WIN32_OVERLAPPED_IO) - /* + /** * Same as above but with scatter support, through chaining of composite * message blocks using the continuation field. */ @@ -368,7 +368,7 @@ protected: ACE_Asynch_Read_Stream_Impl *implementation_; public: -/* +/** * @class Result * * @brief This is the class which will be passed back to the @@ -420,7 +420,7 @@ private: class ACE_Asynch_Write_Stream_Impl; class ACE_Asynch_Write_Stream_Result_Impl; -/* +/** * @class ACE_Asynch_Write_Stream * * @brief This class is a factory for initiating asynchronous writes @@ -442,7 +442,7 @@ public: /// Destructor. virtual ~ACE_Asynch_Write_Stream (void); - /* + /** * Initializes the factory with information which will be used with * each asynchronous operation. * @@ -467,7 +467,7 @@ public: const void *completion_key = 0, ACE_Proactor *proactor = 0); - /* + /** * Initiates an asynchronous write on a socket. If the operation completes * the ACE_Handler object registered in open() will receive a completion * callback via its handle_write_stream() method. @@ -504,7 +504,7 @@ public: int signal_number = ACE_SIGRTMIN); #if defined (ACE_HAS_WIN32_OVERLAPPED_IO) - /* + /** * Same as above but with gather support, through chaining of composite * message blocks using the continuation field. */ @@ -524,7 +524,7 @@ protected: ACE_Asynch_Write_Stream_Impl *implementation_; public: -/* +/** * @class Result * * @brief This is that class which will be passed back to the @@ -576,7 +576,7 @@ private: class ACE_Asynch_Read_File_Impl; class ACE_Asynch_Read_File_Result_Impl; -/* +/** * @class ACE_Asynch_Read_File * * @brief This class is a factory for starting off asynchronous reads @@ -601,7 +601,7 @@ public: /// Destructor. virtual ~ACE_Asynch_Read_File (void); - /* + /** * Initializes the factory with information which will be used with * each asynchronous operation. * @@ -627,7 +627,7 @@ public: const void *completion_key = 0, ACE_Proactor *proactor = 0); - /* + /** * This starts off an asynchronous read. Upto {bytes_to_read} will * be read and stored in the {message_block}. The read will start * at {offset} from the beginning of the file. Priority of the @@ -649,7 +649,7 @@ public: int signal_number = ACE_SIGRTMIN); #if (defined (ACE_WIN32) && !defined (ACE_HAS_WINCE)) - /* + /** * Same as above but with scatter support, through chaining of composite * message blocks using the continuation field. * @note In win32 Each data block payload must be at least the size of a system @@ -674,7 +674,7 @@ protected: ACE_Asynch_Read_File_Impl *implementation_; public: -/* +/** * @class Result * * @brief This is that class which will be passed back to the @@ -727,7 +727,7 @@ private: class ACE_Asynch_Write_File_Impl; class ACE_Asynch_Write_File_Result_Impl; -/* +/** * @class ACE_Asynch_Write_File * * @brief This class is a factory for starting off asynchronous writes @@ -752,7 +752,7 @@ public: /// Destructor. virtual ~ACE_Asynch_Write_File (void); - /* + /** * Initializes the factory with information which will be used with * each asynchronous call. If ({handle} == ACE_INVALID_HANDLE), * {ACE_Handler::handle} will be called on the {handler} to get the @@ -763,7 +763,7 @@ public: const void *completion_key = 0, ACE_Proactor *proactor = 0); - /* + /** * This starts off an asynchronous write. Upto {bytes_to_write} * will be written from the {message_block}, starting at the * block's {rd_ptr}. The write will go to the file, starting @@ -786,7 +786,7 @@ public: int signal_number = ACE_SIGRTMIN); #if (defined (ACE_WIN32) && !defined (ACE_HAS_WINCE)) - /* + /** * Same as above but with gather support, through chaining of composite * message blocks using the continuation field. * @note In win32 Each data block payload must be at least the size of a system @@ -810,7 +810,7 @@ protected: ACE_Asynch_Write_File_Impl *implementation_; public: -/* +/** * @class Result * * @brief This is that class which will be passed back to the @@ -863,7 +863,7 @@ private: class ACE_Asynch_Accept_Result_Impl; class ACE_Asynch_Accept_Impl; -/* +/** * @class ACE_Asynch_Accept * * @brief This class is a factory for starting off asynchronous accepts @@ -886,7 +886,7 @@ public: /// Destructor. virtual ~ACE_Asynch_Accept (void); - /* + /** * Initializes the factory with information which will be used with * each asynchronous call. If ({handle} == ACE_INVALID_HANDLE), * {ACE_Handler::handle} will be called on the {handler} to get the @@ -897,7 +897,7 @@ public: const void *completion_key = 0, ACE_Proactor *proactor = 0); - /* + /** * This starts off an asynchronous accept. The asynchronous accept * call also allows any initial data to be returned to the * handler specified to @c open(). @@ -949,7 +949,7 @@ protected: ACE_Asynch_Accept_Impl *implementation_; public: -/* +/** * @class Result * * @brief This is that class which will be passed back to the @@ -1002,7 +1002,7 @@ private: class ACE_Asynch_Connect_Result_Impl; class ACE_Asynch_Connect_Impl; -/* +/** * @class ACE_Asynch_Connect * * @brief This class is a factory for starting off asynchronous connects @@ -1023,7 +1023,7 @@ public: /// Destructor. virtual ~ACE_Asynch_Connect (void); - /* + /** * Initializes the factory with information which will be used with * each asynchronous call. * @@ -1034,7 +1034,7 @@ public: const void *completion_key = 0, ACE_Proactor *proactor = 0); - /* + /** * This starts off an asynchronous Connect. */ int connect (ACE_HANDLE connect_handle, @@ -1055,7 +1055,7 @@ protected: ACE_Asynch_Connect_Impl *implementation_; public: -/* +/** * @class Result * * @brief This is that class which will be passed back to the @@ -1100,7 +1100,7 @@ private: class ACE_Asynch_Transmit_File_Result_Impl; class ACE_Asynch_Transmit_File_Impl; -/* +/** * @class ACE_Asynch_Transmit_File * * @brief This class is a factory for starting off asynchronous @@ -1131,7 +1131,7 @@ public: /// Destructor. virtual ~ACE_Asynch_Transmit_File (void); - /* + /** * Initializes the factory with information which will be used with * each asynchronous call. If ({handle} == ACE_INVALID_HANDLE), * {ACE_Handler::handle} will be called on the {handler} to get the @@ -1142,7 +1142,7 @@ public: const void *completion_key = 0, ACE_Proactor *proactor = 0); - /* + /** * This starts off an asynchronous transmit file. The {file} is a * handle to an open file. {header_and_trailer} is a pointer to a * data structure that contains pointers to data to send before and @@ -1181,7 +1181,7 @@ protected: ACE_Asynch_Transmit_File_Impl *implementation_; public: -/* +/** * @class Result * * @brief This is that class which will be passed back to the @@ -1234,7 +1234,7 @@ public: ACE_Asynch_Transmit_File_Result_Impl *implementation_; }; -/* +/** * @class Header_And_Trailer * * @brief The class defines a data structure that contains pointers @@ -1316,7 +1316,7 @@ class ACE_Asynch_Read_Dgram_Result_Impl; class ACE_Asynch_Read_Dgram_Impl; class ACE_Addr; -/* +/** * @class ACE_Asynch_Read_Dgram * * @brief This class is a factory for starting off asynchronous reads @@ -1339,7 +1339,7 @@ public: /// Destructor virtual ~ACE_Asynch_Read_Dgram (void); - /* + /** * Initializes the factory with information which will be used with * each asynchronous call. If ({handle} == ACE_INVALID_HANDLE), * {ACE_Handler::handle} will be called on the {handler} to get the @@ -1393,7 +1393,7 @@ protected: ACE_Asynch_Read_Dgram_Impl *implementation_; public: -/* +/** * @class Result * * @brief This is the class which will be passed back to the @@ -1452,7 +1452,7 @@ private: class ACE_Asynch_Write_Dgram_Impl; class ACE_Asynch_Write_Dgram_Result_Impl; -/* +/** * @class ACE_Asynch_Write_Dgram * * @brief This class is a factory for starting off asynchronous writes @@ -1475,7 +1475,7 @@ public: /// Destructor. virtual ~ACE_Asynch_Write_Dgram (void); - /* + /** * Initializes the factory with information which will be used with * each asynchronous call. If ({handle} == ACE_INVALID_HANDLE), * {ACE_Handler::handle} will be called on the {handler} to get the @@ -1529,7 +1529,7 @@ protected: ACE_Asynch_Write_Dgram_Impl *implementation_; public: -/* +/** * @class Result * * @brief This is that class which will be passed back to the @@ -1582,7 +1582,7 @@ private: }; -/* +/** * @class ACE_Handler * * @brief This base class defines the interface for receiving the @@ -1641,7 +1641,7 @@ public: virtual void handle_time_out (const ACE_Time_Value &tv, const void *act = 0); - /* + /** * This is method works with the {run_event_loop} of the * ACE_Proactor. A special {Wake_Up_Completion} is used to wake up * all the threads that are blocking for completions. @@ -1654,7 +1654,7 @@ public: /// Set the proactor. void proactor (ACE_Proactor *p); - /* + /** * Get the I/O handle used by this {handler}. This method will be * called by the ACE_Asynch_* classes when an ACE_INVALID_HANDLE is * passed to {open}. @@ -1664,7 +1664,7 @@ public: /// Set the ACE_HANDLE value for this Handler. virtual void handle (ACE_HANDLE); - /* + /** * @class Proxy * * @brief The Proxy class acts as a proxy for dispatch of completions @@ -1708,7 +1708,7 @@ class ACE_INET_Addr; template class ACE_Asynch_Acceptor; -/* +/** * @class ACE_Service_Handler * * @brief This base class defines the interface for the @@ -1732,7 +1732,7 @@ public: /// Virtual destruction. virtual ~ACE_Service_Handler (void); - /* + /** * {open} is called by ACE_Asynch_Acceptor to initialize a new * instance of ACE_Service_Handler that has been created after the * new connection is accepted. The handle for the new connection is diff --git a/dep/ACE_wrappers/ace/Asynch_IO_Impl.h b/dep/ACE_wrappers/ace/Asynch_IO_Impl.h index 50525c537..06eb5c10a 100644 --- a/dep/ACE_wrappers/ace/Asynch_IO_Impl.h +++ b/dep/ACE_wrappers/ace/Asynch_IO_Impl.h @@ -1,7 +1,7 @@ /* -*- C++ -*- */ //============================================================================= -/* +/** * @file Asynch_IO_Impl.h * * $Id: Asynch_IO_Impl.h 80826 2008-03-04 14:51:23Z wotte $ @@ -41,7 +41,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL // Forward declaration. class ACE_Proactor_Impl; -/* +/** * @class ACE_Asynch_Result_Impl * * @brief Abstract base class for the all the classes that provide @@ -79,7 +79,7 @@ public: /// Priority of the operation. virtual int priority (void) const = 0; - /* + /** * POSIX4 real-time signal number to be used for the * operation. ranges from SIGRTMIN to SIGRTMAX. By * default, SIGRTMIN is used to issue calls. This is a no-op @@ -105,7 +105,7 @@ protected: ACE_Asynch_Result_Impl (void); }; -/* +/** * @class ACE_Asynch_Operation_Impl * * @brief Abstract base class for all the concrete implementation @@ -117,7 +117,7 @@ class ACE_Export ACE_Asynch_Operation_Impl public: virtual ~ACE_Asynch_Operation_Impl (void); - /* + /** * Initializes the factory with information which will be used with * each asynchronous call. If @a handle == ACE_INVALID_HANDLE, * ACE_Handler::handle() will be called on the proxied handler to get the @@ -128,7 +128,7 @@ public: const void *completion_key, ACE_Proactor *proactor) = 0; - /* + /** * This cancels all pending accepts operations that were issued by * the calling thread. The function does not cancel asynchronous * operations issued by other threads. @@ -145,7 +145,7 @@ protected: ACE_Asynch_Operation_Impl (void); }; -/* +/** * @class ACE_Asynch_Read_Stream_Impl * * @brief Abstract base class for all the concrete implementation @@ -167,7 +167,7 @@ public: int signal_number) = 0; #if (defined (ACE_WIN32) && !defined (ACE_HAS_WINCE)) - /* + /** * Same as above but with scatter support, through chaining of composite * message blocks using the continuation field. */ @@ -183,7 +183,7 @@ protected: ACE_Asynch_Read_Stream_Impl (void); }; -/* +/** * @class ACE_Asynch_Read_Stream_Result_Impl * * @brief Abstract base class for all the concrete implementation @@ -211,7 +211,7 @@ protected: ACE_Asynch_Read_Stream_Result_Impl (void); }; -/* +/** * @class ACE_Asynch_Write_Stream_Impl * * @brief Abstract base class for all the concrete implementation @@ -233,7 +233,7 @@ public: int signal_number) = 0; #if (defined (ACE_WIN32) && !defined (ACE_HAS_WINCE)) - /* + /** * Same as above but with gather support, through chaining of composite * message blocks using the continuation field. */ @@ -249,7 +249,7 @@ protected: ACE_Asynch_Write_Stream_Impl (void); }; -/* +/** * @class ACE_Asynch_Write_Stream_Result_Impl * * @brief Abstract base class for all the concrete implementation @@ -277,7 +277,7 @@ protected: ACE_Asynch_Write_Stream_Result_Impl (void); }; -/* +/** * @class ACE_Asynch_Read_File_Impl * * @brief Abstract base class for all the concrete implementation @@ -290,7 +290,7 @@ class ACE_Export ACE_Asynch_Read_File_Impl : public virtual ACE_Asynch_Read_Stre public: virtual ~ACE_Asynch_Read_File_Impl (void); - /* + /** * This starts off an asynchronous read. Upto @a bytes_to_read will * be read and stored in the @a message_block. The read will start * at @a offset from the beginning of the file. @@ -304,7 +304,7 @@ public: int signal_number) = 0; #if (defined (ACE_WIN32) && !defined (ACE_HAS_WINCE)) - /* + /** * Same as above but with scatter support, through chaining of composite * message blocks using the continuation field. * @note In win32 Each data block payload must be at least the size of a system @@ -328,7 +328,7 @@ public: int signal_number) = 0; #if (defined (ACE_WIN32) && !defined (ACE_HAS_WINCE)) - /* + /** * Same as above but with scatter support, through chaining of composite * message blocks using the continuation field. */ @@ -344,7 +344,7 @@ protected: ACE_Asynch_Read_File_Impl (void); }; -/* +/** * @class ACE_Asynch_Read_File_Result_Impl * * @brief This is the abstract base class for all the concrete @@ -362,7 +362,7 @@ protected: ACE_Asynch_Read_File_Result_Impl (void); }; -/* +/** * @class ACE_Asynch_Write_File_Impl * * @brief Abstract base class for all the concrete implementation @@ -375,7 +375,7 @@ class ACE_Export ACE_Asynch_Write_File_Impl : public virtual ACE_Asynch_Write_St public: virtual ~ACE_Asynch_Write_File_Impl (void); - /* + /** * This starts off an asynchronous write. Upto @a bytes_to_write * will be write and stored in the @a message_block. The write will * start at @a offset from the beginning of the file. @@ -389,7 +389,7 @@ public: int signal_number) = 0; #if (defined (ACE_WIN32) && !defined (ACE_HAS_WINCE)) - /* + /** * Same as above but with gather support, through chaining of composite * message blocks using the continuation field. * @note In win32 Each data block payload must be at least the size of a system @@ -413,7 +413,7 @@ public: int signal_number) = 0; #if (defined (ACE_WIN32) && !defined (ACE_HAS_WINCE)) - /* + /** * Same as above but with gather support, through chaining of composite * message blocks using the continuation field. */ @@ -429,7 +429,7 @@ protected: ACE_Asynch_Write_File_Impl (void); }; -/* +/** * @class ACE_Asynch_Write_File_Result_Impl * * @brief This is the abstract base class for all the concrete @@ -447,7 +447,7 @@ protected: ACE_Asynch_Write_File_Result_Impl (void); }; -/* +/** * @class ACE_Asynch_Accept_Impl * * @brief Abstract base class for all the concrete implementation @@ -460,7 +460,7 @@ class ACE_Export ACE_Asynch_Accept_Impl : public virtual ACE_Asynch_Operation_Im public: virtual ~ACE_Asynch_Accept_Impl (void); - /* + /** * This starts off an asynchronous accept. The asynchronous accept * call also allows any initial data to be returned to the * . Upto @a bytes_to_read will be read and stored in the @@ -484,7 +484,7 @@ protected: ACE_Asynch_Accept_Impl (void); }; -/* +/** * @class ACE_Asynch_Accept_Result_Impl * * @brief Abstract base class for all the concrete implementation @@ -516,7 +516,7 @@ protected: }; -/* +/** * @class ACE_Asynch_Connect_Impl * * @brief Abstract base class for all the concrete implementation @@ -529,7 +529,7 @@ class ACE_Export ACE_Asynch_Connect_Impl : public virtual ACE_Asynch_Operation_I public: virtual ~ACE_Asynch_Connect_Impl (void); - /* + /** * This starts off an asynchronous connect */ virtual int connect (ACE_HANDLE connect_handle, @@ -545,7 +545,7 @@ protected: ACE_Asynch_Connect_Impl (void); }; -/* +/** * @class ACE_Asynch_Connect_Result_Impl * * @brief Abstract base class for all the concrete implementation @@ -567,7 +567,7 @@ protected: }; -/* +/** * @class ACE_Asynch_Transmit_File_Impl * * @brief Abstract base class for all the concrete implementation @@ -597,7 +597,7 @@ protected: ACE_Asynch_Transmit_File_Impl (void); }; -/* +/** * @class ACE_Asynch_Transmit_File_Result_Impl * * @brief Abstract base class for all the concrete implementation @@ -636,7 +636,7 @@ protected: }; -/* +/** * @class ACE_Asynch_Read_Dgram_Impl * * @brief Abstract base class for all the concrete implementation @@ -688,7 +688,7 @@ protected: ACE_Asynch_Read_Dgram_Impl (void); }; -/* +/** * @class ACE_Asynch_Read_Dgram_Result_Impl * * @brief Abstract base class for all the concrete implementation @@ -722,7 +722,7 @@ protected: ACE_Asynch_Read_Dgram_Result_Impl (void); }; -/* +/** * @class ACE_Asynch_Write_Dgram_Impl * * @brief Abstract base class for all the concrete implementation @@ -774,7 +774,7 @@ protected: ACE_Asynch_Write_Dgram_Impl (void); }; -/* +/** * @class ACE_Asynch_Write_Dgram_Result_Impl * * @brief Abstract base class for all the concrete implementation diff --git a/dep/ACE_wrappers/ace/Asynch_Pseudo_Task.h b/dep/ACE_wrappers/ace/Asynch_Pseudo_Task.h index dd25ffb11..6e2c3a1d4 100644 --- a/dep/ACE_wrappers/ace/Asynch_Pseudo_Task.h +++ b/dep/ACE_wrappers/ace/Asynch_Pseudo_Task.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Asynch_Pseudo_Task.h * * $Id: Asynch_Pseudo_Task.h 80826 2008-03-04 14:51:23Z wotte $ @@ -34,7 +34,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL */ //@@ REACTOR_SPL_INCLUDE_FORWARD_DECL_ADD_HOOK -/* +/** * @class ACE_Asynch_Pseudo_Task * */ diff --git a/dep/ACE_wrappers/ace/Atomic_Op.h b/dep/ACE_wrappers/ace/Atomic_Op.h index 74bc12351..4dee35e6e 100644 --- a/dep/ACE_wrappers/ace/Atomic_Op.h +++ b/dep/ACE_wrappers/ace/Atomic_Op.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Atomic_Op.h * * $Id: Atomic_Op.h 91523 2010-08-27 14:18:02Z johnnyw $ @@ -62,7 +62,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL #if defined (ACE_HAS_BUILTIN_ATOMIC_OP) -/* +/** * @brief Specialization of ACE_Atomic_Op for platforms that * support atomic integer operations. * @@ -159,7 +159,7 @@ private: static long (*exchange_add_fn_) (volatile long *, long); }; -/* +/** * @brief Specialization of ACE_Atomic_Op for platforms that * support atomic integer operations. * diff --git a/dep/ACE_wrappers/ace/Atomic_Op_GCC_T.h b/dep/ACE_wrappers/ace/Atomic_Op_GCC_T.h index eeafd67da..92bc771dd 100644 --- a/dep/ACE_wrappers/ace/Atomic_Op_GCC_T.h +++ b/dep/ACE_wrappers/ace/Atomic_Op_GCC_T.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Atomic_Op_GCC_T.h * * $Id: Atomic_Op_GCC_T.h 89339 2010-03-05 12:20:47Z johnnyw $ @@ -27,7 +27,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @brief Specialization of ACE_Atomic_Op for platforms that * support atomic integer operations. * diff --git a/dep/ACE_wrappers/ace/Atomic_Op_T.h b/dep/ACE_wrappers/ace/Atomic_Op_T.h index bfea91cf5..7a20049ce 100644 --- a/dep/ACE_wrappers/ace/Atomic_Op_T.h +++ b/dep/ACE_wrappers/ace/Atomic_Op_T.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Atomic_Op_T.h * * $Id: Atomic_Op_T.h 92353 2010-10-25 06:34:35Z johnnyw $ @@ -129,7 +129,7 @@ struct ACE_Type_Traits typedef TYPE* parameter_type; }; -/* +/** * @class ACE_Atomic_Op_Ex * * @brief Transparently parameterizes synchronization into basic @@ -219,7 +219,7 @@ public: /// Manage copying... ACE_Atomic_Op_Ex (ACE_Atomic_Op_Ex const &); - /* + /** * Returns a reference to the underlying ACE_LOCK. This makes it * possible to acquire the lock explicitly, which can be useful in * some cases if you instantiate the ACE_Atomic_Op_Ex with an @@ -229,7 +229,7 @@ public: */ ACE_LOCK & mutex (void); - /* + /** * Explicitly return @c value_ (by reference). This gives the user * full, unrestricted access to the underlying value. This method * will usually be used in conjunction with explicit access to the @@ -245,7 +245,7 @@ private: TYPE value_; }; -/* +/** * @class ACE_Atomic_Op * * @brief Transparently parameterizes synchronization into basic @@ -324,7 +324,7 @@ public: /// Dump the state of an object. void dump (void) const; - /* + /** * Explicitly return @c value_ (by reference). This gives the user * full, unrestricted access to the underlying value. This method * will usually be used in conjunction with explicit access to the diff --git a/dep/ACE_wrappers/ace/Auto_Event.h b/dep/ACE_wrappers/ace/Auto_Event.h index c805f2951..9699759ad 100644 --- a/dep/ACE_wrappers/ace/Auto_Event.h +++ b/dep/ACE_wrappers/ace/Auto_Event.h @@ -1,7 +1,7 @@ // -*- C++ -*- //========================================================================== -/* +/** * @file Auto_Event.h * * $Id: Auto_Event.h 91781 2010-09-15 12:49:15Z johnnyw $ @@ -26,7 +26,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_Auto_Event * * @brief Auto Events. diff --git a/dep/ACE_wrappers/ace/Auto_Functor.h b/dep/ACE_wrappers/ace/Auto_Functor.h index 00c658068..2c2b81eb2 100644 --- a/dep/ACE_wrappers/ace/Auto_Functor.h +++ b/dep/ACE_wrappers/ace/Auto_Functor.h @@ -1,6 +1,6 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Auto_Functor.h * * $Id: Auto_Functor.h 80826 2008-03-04 14:51:23Z wotte $ @@ -24,7 +24,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL namespace ACE_Utils { -/* +/** * @class Auto_Functor_Ref * * @brief Helper class to implement assignment and copy-construction @@ -39,7 +39,7 @@ struct Auto_Functor_Ref Auto_Functor_Ref(X * p, Functor f); }; -/* +/** * @class Auto_Functor * * @brief Helper template to implement auto_ptr<>-like classes, but diff --git a/dep/ACE_wrappers/ace/Auto_IncDec_T.h b/dep/ACE_wrappers/ace/Auto_IncDec_T.h index 133afe2cc..86fa65523 100644 --- a/dep/ACE_wrappers/ace/Auto_IncDec_T.h +++ b/dep/ACE_wrappers/ace/Auto_IncDec_T.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Auto_IncDec_T.h * * $Id: Auto_IncDec_T.h 92353 2010-10-25 06:34:35Z johnnyw $ @@ -26,7 +26,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_Auto_IncDec * * @brief This class automatically increments and decrements a diff --git a/dep/ACE_wrappers/ace/Auto_Ptr.h b/dep/ACE_wrappers/ace/Auto_Ptr.h index 2a3672001..3183019ac 100644 --- a/dep/ACE_wrappers/ace/Auto_Ptr.h +++ b/dep/ACE_wrappers/ace/Auto_Ptr.h @@ -1,7 +1,7 @@ /* -*- C++ -*- */ //============================================================================= -/* +/** * @file Auto_Ptr.h * * $Id: Auto_Ptr.h 80826 2008-03-04 14:51:23Z wotte $ @@ -35,7 +35,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_Auto_Basic_Ptr * * @brief Implements the draft C++ standard auto_ptr abstraction. @@ -82,7 +82,7 @@ using std::auto_ptr; #endif /* ACE_USES_STD_NAMESPACE_FOR_STDCPP_LIB */ #else /* ACE_HAS_STANDARD_CPP_LIBRARY */ -/* +/** * @class auto_ptr * * @brief Implements the draft C++ standard auto_ptr abstraction. @@ -104,7 +104,7 @@ public: ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @brief Implements the draft C++ standard auto_ptr abstraction. * This version can be used instead of auto_ptr, and obviates * the need for the ACE_AUTO_PTR_RESET macro on platforms like @@ -122,7 +122,7 @@ public: X *operator-> () const; }; -/* +/** * @class ACE_Auto_Basic_Array_Ptr * * @brief Implements an extension to the draft C++ standard auto_ptr @@ -160,7 +160,7 @@ protected: X * p_; }; -/* +/** * @class ACE_Auto_Array_Ptr * * @brief Implements an extension to the draft C++ standard auto_ptr @@ -180,7 +180,7 @@ public: }; -/* +/** * @brief Reset given @c auto_ptr element to new element. * * Some platforms have an older version of auto_ptr support, which diff --git a/dep/ACE_wrappers/ace/Barrier.h b/dep/ACE_wrappers/ace/Barrier.h index 257d449bc..84d7b6492 100644 --- a/dep/ACE_wrappers/ace/Barrier.h +++ b/dep/ACE_wrappers/ace/Barrier.h @@ -1,7 +1,7 @@ // -*- C++ -*- //========================================================================== -/* +/** * @file Barrier.h * * $Id: Barrier.h 92069 2010-09-28 11:38:59Z johnnyw $ @@ -31,7 +31,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_Barrier * * @brief This is a no-op to make ACE "syntactically consistent." @@ -76,7 +76,7 @@ struct ACE_Export ACE_Sub_Barrier ACE_ALLOC_HOOK_DECLARE; }; -/* +/** * @class ACE_Barrier * * @brief Implements "barrier synchronization". @@ -138,7 +138,7 @@ protected: /// Total number of threads that can be waiting at any one time. int count_; - /* + /** * We keep two @c sub_barriers, one for the first "generation" of * waiters, and one for the next "generation" of waiters. This * efficiently solves the problem of what to do if all the first @@ -156,7 +156,7 @@ private: ACE_Barrier (const ACE_Barrier &); }; -/* +/** * @class ACE_Thread_Barrier * * @brief Implements "barrier synchronization" using ACE_Thread_Mutexes! diff --git a/dep/ACE_wrappers/ace/Base_Thread_Adapter.h b/dep/ACE_wrappers/ace/Base_Thread_Adapter.h index 40b740043..b36d18e4f 100644 --- a/dep/ACE_wrappers/ace/Base_Thread_Adapter.h +++ b/dep/ACE_wrappers/ace/Base_Thread_Adapter.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Base_Thread_Adapter.h * * $Id: Base_Thread_Adapter.h 81239 2008-04-04 22:28:48Z iliyan $ @@ -40,7 +40,7 @@ extern "C" ACE_Export ACE_THR_FUNC_RETURN ACE_THREAD_ADAPTER_NAME (void *args); ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_OS_Thread_Descriptor * * @brief Parent class of all ACE_Thread_Descriptor classes. @@ -58,7 +58,7 @@ protected: /// For use by ACE_Thread_Descriptor. ACE_OS_Thread_Descriptor (long flags = 0); - /* + /** * Keeps track of whether this thread was created "detached" or not. * If a thread is *not* created detached then if someone calls * , we need to join with that thread (and @@ -72,7 +72,7 @@ protected: class ACE_Service_Gestalt; -/* +/** * @class ACE_Base_Thread_Adapter * * @brief Base class for all the Thread_Adapters. @@ -160,7 +160,7 @@ protected: /// linkage). ACE_THR_C_FUNC entry_point_; - /* + /** * Optional thread descriptor. Passing this pointer in will force * the spawned thread to cache this location in and wait * until fills in all information in thread diff --git a/dep/ACE_wrappers/ace/Based_Pointer_Repository.cpp b/dep/ACE_wrappers/ace/Based_Pointer_Repository.cpp index 68ac68450..4ebe8b82c 100644 --- a/dep/ACE_wrappers/ace/Based_Pointer_Repository.cpp +++ b/dep/ACE_wrappers/ace/Based_Pointer_Repository.cpp @@ -9,7 +9,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_Based_Pointer_Repository_Rep * * @brief Implementation for the ACE_Based_Pointer_Repository. diff --git a/dep/ACE_wrappers/ace/Based_Pointer_Repository.h b/dep/ACE_wrappers/ace/Based_Pointer_Repository.h index 51efb5b9f..d549ce153 100644 --- a/dep/ACE_wrappers/ace/Based_Pointer_Repository.h +++ b/dep/ACE_wrappers/ace/Based_Pointer_Repository.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Based_Pointer_Repository.h * * $Id: Based_Pointer_Repository.h 84837 2009-03-16 13:01:15Z johnnyw $ @@ -32,7 +32,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL // Forward decl., using the "Cheshire Cat" technique. class ACE_Based_Pointer_Repository_Rep; -/* +/** * @class ACE_Based_Pointer_Repository * * @brief Maps pointers to the base address of the region to which each @@ -48,7 +48,7 @@ public: ~ACE_Based_Pointer_Repository (void); // = Search structure methods. - /* + /** * Return the appropriate @a base_addr region that contains @a addr. * Returns 1 on success and 0 if the @a addr isn't contained in any * @a base_addr region. diff --git a/dep/ACE_wrappers/ace/Based_Pointer_T.h b/dep/ACE_wrappers/ace/Based_Pointer_T.h index 444418e19..802e73ca0 100644 --- a/dep/ACE_wrappers/ace/Based_Pointer_T.h +++ b/dep/ACE_wrappers/ace/Based_Pointer_T.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Based_Pointer_T.h * * $Id: Based_Pointer_T.h 81705 2008-05-15 14:02:02Z johnnyw $ @@ -29,7 +29,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_Based_Pointer_Basic * * @brief A proxy that keeps track of the relative offset of a "pointer" @@ -44,7 +44,7 @@ template class ACE_Based_Pointer_Basic { public: - /* + /** * This constructor initializes the by asking the * Singleton for the base address of * the memory region within which it is instantiated. Two results @@ -63,7 +63,7 @@ public: */ ACE_Based_Pointer_Basic (void); - /* + /** * Initialize this object using the @a initial pointer. This * constructor initializes the by asking the * Singleton for the base address of @@ -145,7 +145,7 @@ protected: ptrdiff_t base_offset_; }; -/* +/** * @class ACE_Based_Pointer * * @brief A smart proxy that keeps track of the relative offset of a diff --git a/dep/ACE_wrappers/ace/Basic_Stats.h b/dep/ACE_wrappers/ace/Basic_Stats.h index 1f549ce55..bff1ff29f 100644 --- a/dep/ACE_wrappers/ace/Basic_Stats.h +++ b/dep/ACE_wrappers/ace/Basic_Stats.h @@ -1,6 +1,6 @@ //============================================================================= -/* +/** * @file Basic_Stats.h * * $Id: Basic_Stats.h 80826 2008-03-04 14:51:23Z wotte $ @@ -24,7 +24,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL /// Collect basic stats about a series of samples -/* +/** * Compute the average and standard deviation (aka jitter) for an * arbitrary number of samples, using constant space. * Normally used for latency statistics. @@ -33,7 +33,7 @@ class ACE_Export ACE_Basic_Stats { public: /// Constructor - /* + /** * The number of samples is pre-allocated, and cannot changes once * the class is initialized. */ @@ -49,7 +49,7 @@ public: void accumulate (const ACE_Basic_Stats &rhs); /// Dump all the samples - /* + /** * Prints out the results, using @a msg as a prefix for each message and * scaling all the numbers by @a scale_factor. The latter is useful because * high resolution timer samples are acquired in clock ticks, but often diff --git a/dep/ACE_wrappers/ace/Basic_Types.h b/dep/ACE_wrappers/ace/Basic_Types.h index e10a11cc2..bc467fafb 100644 --- a/dep/ACE_wrappers/ace/Basic_Types.h +++ b/dep/ACE_wrappers/ace/Basic_Types.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Basic_Types.h * * $Id: Basic_Types.h 91161 2010-07-21 18:25:12Z schmidt $ @@ -449,7 +449,7 @@ ACE_END_VERSIONED_NAMESPACE_DECL ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_U_LongLong * * @brief Unsigned long long for platforms that don't have one. @@ -648,7 +648,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL inline ACE_UINT32 ACE_U64_TO_U32 (ACE_U_LongLong const & n) { - /* + /** * @note We could add a cast operator to ACE_U_LongLong but that may * cause more problems than it solves. Force users to perform * an explicit cast via ACE_{C}U64_TO_{C}U32. diff --git a/dep/ACE_wrappers/ace/Bound_Ptr.h b/dep/ACE_wrappers/ace/Bound_Ptr.h index fee4d9724..5176ff951 100644 --- a/dep/ACE_wrappers/ace/Bound_Ptr.h +++ b/dep/ACE_wrappers/ace/Bound_Ptr.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Bound_Ptr.h * * $Id: Bound_Ptr.h 82723 2008-09-16 09:35:44Z johnnyw $ @@ -26,7 +26,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_Bound_Ptr_Counter * * @brief An ACE_Bound_Ptr_Counter object encapsulates an @@ -96,7 +96,7 @@ private: // Forward decl. template class ACE_Weak_Bound_Ptr; -/* +/** * @class ACE_Strong_Bound_Ptr * * @brief This class implements support for a reference counted @@ -174,7 +174,7 @@ public: /// Equality operator that returns @c true if both /// ACE_Strong_Bound_Ptr instances point to the same underlying /// object. - /* + /** * @note It also returns @c true if both objects have just been * instantiated and not used yet. */ @@ -183,7 +183,7 @@ public: /// Equality operator that returns true if the ACE_Strong_Bound_Ptr /// and ACE_Weak_Bound_Ptr objects point to the same underlying /// object. - /* + /** * @note It also returns @c true if both objects have just been * instantiated and not used yet. */ @@ -246,7 +246,7 @@ private: X *ptr_; }; -/* +/** * @class ACE_Weak_Bound_Ptr * * @brief This class implements support for a weak pointer that complements @@ -287,7 +287,7 @@ public: /// Equality operator that returns @c true if both /// ACE_Weak_Bound_Ptr objects point to the same underlying object. - /* + /** * @note It also returns @c true if both objects have just been * instantiated and not used yet. */ @@ -296,7 +296,7 @@ public: /// Equality operator that returns @c true if the ACE_Weak_Bound_Ptr /// and ACE_Strong_Bound_Ptr objects point to the same underlying /// object. - /* + /** * @note It also returns @c true if both objects have just been * instantiated and not used yet. */ @@ -316,7 +316,7 @@ public: bool operator != (X *p) const; /// Redirection operator. - /* + /** * It returns a temporary strong pointer and makes use of the * chaining properties of operator-> to ensure that the underlying * object does not disappear while you are using it. If you are @@ -340,7 +340,7 @@ public: void reset (X *p = 0); /// Increment the reference count on the underlying object. - /* + /** * Returns the new reference count on the object. This function may * be used to integrate the bound pointers into an external * reference counting mechanism such as those used by COM or CORBA @@ -350,7 +350,7 @@ public: /// Decrement the reference count on the underlying object, which is deleted /// if the count has reached zero. - /* + /** * Returns the new reference count on the object. This function may * be used to integrate the bound pointers into an external * reference counting mechanism such as those used by COM or CORBA diff --git a/dep/ACE_wrappers/ace/CDR_Base.h b/dep/ACE_wrappers/ace/CDR_Base.h index 14a3fb946..66a6d8857 100644 --- a/dep/ACE_wrappers/ace/CDR_Base.h +++ b/dep/ACE_wrappers/ace/CDR_Base.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file CDR_Base.h * * $Id: CDR_Base.h 91685 2010-09-09 09:35:14Z johnnyw $ @@ -53,7 +53,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL class ACE_Message_Block; -/* +/** * @class ACE_CDR * * @brief Keep constants and some routines common to both Output and @@ -92,7 +92,7 @@ public: MAX_ALIGNMENT = 8, /// The default buffer size. - /* + /** * @todo We want to add options to control this * default value, so this constant should be read as the default * default value ;-) @@ -109,7 +109,7 @@ public: LINEAR_GROWTH_CHUNK = ACE_DEFAULT_CDR_LINEAR_GROWTH_CHUNK }; - /* + /** * @enum Byte_Order * * Defines values for the byte_order argument to ACE_OutputCDR and @@ -125,7 +125,7 @@ public: BYTE_ORDER_NATIVE = ACE_CDR_BYTE_ORDER }; - /* + /** * Do byte swapping for each basic IDL type size. There exist only * routines to put byte, halfword (2 bytes), word (4 bytes), * doubleword (8 bytes) and quadword (16 byte); because those are @@ -152,7 +152,7 @@ public: /// set by the CORBA spec at 8 bytes. static void mb_align (ACE_Message_Block *mb); - /* + /** * Compute the size of the smallest buffer that can contain at least * @a minsize bytes. * To understand how a "best fit" is computed look at the @@ -168,7 +168,7 @@ public: /// will fir @a minsize bytes. static size_t next_size (size_t minsize); - /* + /** * Increase the capacity of mb to contain at least @a minsize bytes. * If @a minsize is zero the size is increased by an amount at least * large enough to contain any of the basic IDL types. @@ -177,7 +177,7 @@ public: */ static int grow (ACE_Message_Block *mb, size_t minsize); - /* + /** * Copy a message block chain into a single message block, * preserving the alignment of the first message block of the * original stream, not the following message blocks. @@ -190,7 +190,7 @@ public: static size_t total_length (const ACE_Message_Block *begin, const ACE_Message_Block *end); - /* + /** * @name Basic OMG IDL Types * * These types are for use in the CDR classes. The cleanest way to @@ -234,7 +234,7 @@ public: ACE_CDR::Long h; # endif /* ! ACE_BIG_ENDIAN */ - /* + /** * @name Overloaded Relation Operators. * * The canonical comparison operators. diff --git a/dep/ACE_wrappers/ace/CDR_Size.h b/dep/ACE_wrappers/ace/CDR_Size.h index 5b3d0b0c9..a0b3c462c 100644 --- a/dep/ACE_wrappers/ace/CDR_Size.h +++ b/dep/ACE_wrappers/ace/CDR_Size.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file CDR_Size.h * * $Id: CDR_Size.h 80826 2008-03-04 14:51:23Z wotte $ @@ -38,7 +38,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_SizeCDR * * @brief A CDR stream for calculating size of the representation. @@ -140,7 +140,7 @@ private: ACE_CDR::Boolean write_8 (const ACE_CDR::ULongLong *x); ACE_CDR::Boolean write_16 (const ACE_CDR::LongDouble *x); - /* + /** * write an array of @a length elements, each of @a size bytes and the * start aligned at a multiple of . The elements are assumed * to be packed with the right alignment restrictions. It is mostly diff --git a/dep/ACE_wrappers/ace/CDR_Stream.h b/dep/ACE_wrappers/ace/CDR_Stream.h index 0381c3849..0a200dc56 100644 --- a/dep/ACE_wrappers/ace/CDR_Stream.h +++ b/dep/ACE_wrappers/ace/CDR_Stream.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file CDR_Stream.h * * $Id: CDR_Stream.h 84527 2009-02-19 14:01:42Z johnnyw $ @@ -67,7 +67,7 @@ class ACE_WChar_Codeset_Translator; class ACE_InputCDR; -/* +/** * @class ACE_OutputCDR * * @brief A CDR stream for marshalling data, most often for transmission to @@ -84,7 +84,7 @@ class ACE_InputCDR; class ACE_Export ACE_OutputCDR { public: - /* + /** * The Codeset translators need access to some private members to * efficiently marshal arrays * For reading from an output CDR stream. @@ -93,7 +93,7 @@ public: friend class ACE_WChar_Codeset_Translator; friend class ACE_InputCDR; - /* + /** * Default constructor; allows one to set byte ordering, allocators, and * tuning information. * @@ -122,7 +122,7 @@ public: /// Build a CDR stream with an initial buffer, it will *not* remove /// @a data, since it did not allocated it. It's important to be careful /// with the alignment of @a data. - /* + /** * Create an output stream from an arbitrary buffer, care must be * exercised with alignment, because this contructor will align if * needed. In this case @a data will not point to the start of the @@ -143,7 +143,7 @@ public: /// Build a CDR stream with an initial data block, it will *not* remove /// , since it did not allocated it. It's important to be // careful with the alignment of . - /* + /** * Create an output stream from an arbitrary data block, care must be * exercised with alignment, because this contructor will align if * needed. In this case @a data_block will not point to the @@ -169,7 +169,7 @@ public: /// destructor ~ACE_OutputCDR (void); - /* + /** * Disambiguate overload when inserting booleans, octets, chars, and * bounded strings. */ @@ -226,7 +226,7 @@ public: }; //@} - /* + /** * @{ @name Write operations * Return 0 on failure and 1 on success. */ @@ -290,7 +290,7 @@ public: ACE_CDR::Boolean write_octet_array_mb (const ACE_Message_Block* mb); //@} - /* + /** * @{ @name Placeholder/replace operations * Facilitates writing a placeholder into a CDR stream to be replaced * later with a different value. @@ -306,7 +306,7 @@ public: @endcode */ - /* + /** * Write a placeholder into the stream. The placeholder's pointer * is returned so it may later be passed as the @a loc argument to * replace (). @@ -319,7 +319,7 @@ public: char* write_long_placeholder (void); char* write_short_placeholder (void); - /* + /** * Writes a new value into a specific location. This is commonly * used to update a prior "placeholder" location in the stream. * The specified location is assumed to have proper CDR alignment for the @@ -339,7 +339,7 @@ public: ACE_CDR::Boolean replace (ACE_CDR::Short x, char* loc); //@} - /* + /** * Return 0 on failure and 1 on success. */ //@{ @name Append contents of own CDR stream to another @@ -362,7 +362,7 @@ public: //@} /// Returns @c false if an error has ocurred. - /* + /** * @note The only expected error is to run out of memory. */ bool good_bit (void) const; @@ -373,7 +373,7 @@ public: /// Add the length of each message block in the chain. size_t total_length (void) const; - /* + /** * Return the start of the message block chain for this CDR stream. * @note The complete CDR stream is represented by a chain of * message blocks. @@ -387,7 +387,7 @@ public: const ACE_Message_Block *current (void) const; /// Replace the message block chain with a single message block. - /* + /** * Upon successful completion, there will be a single message block * containing the data from the complete message block chain. * @@ -395,21 +395,21 @@ public: */ int consolidate (void); - /* + /** * Access the underlying buffer (read only). @note This * method only returns a pointer to the first block in the * chain. */ const char *buffer (void) const; - /* + /** * Return the size of first message block in the block chain. @note This * method only returns information about the first block in the * chain. */ size_t length (void) const; - /* + /** * Utility function to allow the user more flexibility. * Pads the stream up to the nearest -byte boundary. * Argument MUST be a power of 2. @@ -433,7 +433,7 @@ public: /// access the serialized size of wchars. static size_t wchar_maxbytes (void); - /* + /** * Return alignment of the wr_ptr(), with respect to the start of * the CDR stream. This is not the same as the alignment of * current->wr_ptr()! @@ -442,7 +442,7 @@ public: void current_alignment (size_t current_alignment); - /* + /** * Returns (in @a buf) the next position in the buffer aligned to * @a size, it advances the Message_Block wr_ptr past the data * (i.e., @a buf + @a size). If necessary it grows the Message_Block @@ -501,7 +501,7 @@ private: ACE_CDR::Boolean write_8 (const ACE_CDR::ULongLong *x); ACE_CDR::Boolean write_16 (const ACE_CDR::LongDouble *x); - /* + /** * write an array of @a length elements, each of @a size bytes and the * start aligned at a multiple of . The elements are assumed * to be packed with the right alignment restrictions. It is mostly @@ -523,7 +523,7 @@ private: ACE_CDR::ULong length); - /* + /** * Grow the CDR stream. When it returns @a buf contains a pointer to * memory in the CDR stream, with at least @a size bytes ahead of it * and aligned to an boundary. It moved the to . The elements are assumed * to be packed with the right alignment restrictions. It is mostly @@ -1050,7 +1050,7 @@ private: size_t align, ACE_CDR::ULong length); - /* + /** * On those occasions when the native codeset for wchar is smaller than * the size of a wchar_t, such as using UTF-16 with a 4-byte wchar_t, a * special form of reading the array is needed. Actually, this should be @@ -1068,7 +1068,7 @@ private: // **************************************************************** -/* +/** * @class ACE_Char_Codeset_Translator * * @brief Codeset translation routines common to both Output and Input @@ -1138,7 +1138,7 @@ protected: size_t align, ACE_CDR::ULong length); - /* + /** * Efficiently write @a length elements of size @a size from into * . Before inserting the elements enough padding is added * to ensure that the elements will be aligned to in the @@ -1150,7 +1150,7 @@ protected: size_t align, ACE_CDR::ULong length); - /* + /** * Exposes the stream implementation of , this is useful in * many cases to minimize memory allocations during marshaling. * On success @a buf will contain a contiguous area in the CDR stream @@ -1174,7 +1174,7 @@ protected: // **************************************************************** -/* +/** * @class ACE_WChar_Codeset_Translator * * @brief Codeset translation routines common to both Output and Input @@ -1231,7 +1231,7 @@ protected: size_t align, ACE_CDR::ULong length); - /* + /** * Efficiently write @a length elements of size @a size from into * . Before inserting the elements enough padding is added * to ensure that the elements will be aligned to in the @@ -1243,7 +1243,7 @@ protected: size_t align, ACE_CDR::ULong length); - /* + /** * Exposes the stream implementation of , this is useful in * many cases to minimize memory allocations during marshaling. * On success @a buf will contain a contiguous area in the CDR stream diff --git a/dep/ACE_wrappers/ace/CE_Screen_Output.h b/dep/ACE_wrappers/ace/CE_Screen_Output.h index 40986cb81..ba2bc7c02 100644 --- a/dep/ACE_wrappers/ace/CE_Screen_Output.h +++ b/dep/ACE_wrappers/ace/CE_Screen_Output.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file CE_Screen_Output.h * * $Id: CE_Screen_Output.h 80826 2008-03-04 14:51:23Z wotte $ @@ -32,7 +32,7 @@ namespace ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_CE_Screen_Output * * @brief Replacement of text output for Windows CE. @@ -64,7 +64,7 @@ public: void clear (void); /// Stream insertion operator that performs actual print out. - /* + /** * @note This is the only one operator that performs output. All * other perators convert the type and use this operator * underneath. diff --git a/dep/ACE_wrappers/ace/CORBA_macros.h b/dep/ACE_wrappers/ace/CORBA_macros.h index 06d87d572..8233b63cd 100644 --- a/dep/ACE_wrappers/ace/CORBA_macros.h +++ b/dep/ACE_wrappers/ace/CORBA_macros.h @@ -1,7 +1,7 @@ // -*- C++ -*- // ============================================================================ -/* +/** * @file CORBA_macros.h * * $Id: CORBA_macros.h 91626 2010-09-07 10:59:20Z johnnyw $ diff --git a/dep/ACE_wrappers/ace/Cache_Map_Manager_T.h b/dep/ACE_wrappers/ace/Cache_Map_Manager_T.h index 71b6528e3..3f11d92fd 100644 --- a/dep/ACE_wrappers/ace/Cache_Map_Manager_T.h +++ b/dep/ACE_wrappers/ace/Cache_Map_Manager_T.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Cache_Map_Manager_T.h * * $Id: Cache_Map_Manager_T.h 92097 2010-09-30 05:41:49Z msmit $ @@ -42,7 +42,7 @@ class ACE_Cache_Map_Reverse_Iterator; // For linkers that cant grok long names. #define ACE_Cache_Map_Manager ACMM -/* +/** * @class ACE_Cache_Map_Manager * * @brief Defines a abstraction that will purge entries from a map. @@ -86,7 +86,7 @@ public: typedef REVERSE_ITERATOR reverse_iterator; - /* + /** * The actual value mapped to the key in the map. The * are used by the strategy and is transparent to the user of this * class. @@ -112,7 +112,7 @@ public: /// Close down a cache and release dynamically allocated resources. int close (void); - /* + /** * Associate @a key with @a value. If @a key is already in the CMAP_TYPE * then the ENTRY is not changed. Returns 0 if a new entry is bound * successfully, returns 1 if an attempt is made to bind an existing @@ -121,7 +121,7 @@ public: int bind (const KEY &key, const VALUE &value); - /* + /** * Lookup entry in the cache. If it is not found, returns -1. * If the @a key is located in the CMAP_TYPE object, the CACHING_STRATEGY is * notified of it via notify_find (int result, ATTRIBUTES &attribute). @@ -131,7 +131,7 @@ public: int find (const KEY &key, VALUE &value); - /* + /** * Lookup entry in the cache. If it is not found, returns -1. * If the @a key is located in the CMAP_TYPE object, the CACHING_STRATEGY is * notified of it via notify_find (int result, ATTRIBUTES &attribute). @@ -140,7 +140,7 @@ public: */ int find (const KEY &key); - /* + /** * Reassociate the @a key with @a value. If the @a key already exists * in the cache then returns 1, on a new bind returns 0 and returns * -1 in case of any failures. @@ -148,7 +148,7 @@ public: int rebind (const KEY &key, const VALUE &value); - /* + /** * Reassociate @a key with @a value, storing the old value into the * "out" parameter @a old_value. The function fails if @a key is not * in the cache for caches that do not allow user specified keys. @@ -159,7 +159,7 @@ public: const VALUE &value, VALUE &old_value); - /* + /** * Reassociate @a key with @a value, storing the old key and value * into the "out" parameters @a old_key and @a old_value. The * function fails if @a key is not in the cache for caches that do @@ -172,7 +172,7 @@ public: KEY &old_key, VALUE &old_value); - /* + /** * Associate @a key with @a value if and only if @a key is not in the * cache. If @a key is already in the cache, then the @a value * parameter is overwritten with the existing value in the @@ -235,7 +235,7 @@ private: }; -/* +/** * @class ACE_Cache_Map_Iterator * * @brief Defines a iterator for the Cache_Map_Manager. @@ -312,7 +312,7 @@ protected: IMPLEMENTATION iterator_implementation_; }; -/* +/** * @class ACE_Cache_Map_Reverse_Iterator * * @brief Defines a reverse iterator for the Cache_Map_Manager. diff --git a/dep/ACE_wrappers/ace/Cached_Connect_Strategy_T.h b/dep/ACE_wrappers/ace/Cached_Connect_Strategy_T.h index 16ad3e7d9..12c5485ce 100644 --- a/dep/ACE_wrappers/ace/Cached_Connect_Strategy_T.h +++ b/dep/ACE_wrappers/ace/Cached_Connect_Strategy_T.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Cached_Connect_Strategy_T.h * * $Id: Cached_Connect_Strategy_T.h 92097 2010-09-30 05:41:49Z msmit $ @@ -32,7 +32,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_Cached_Connect_Strategy_Ex * * @brief A connection strategy which caches connections to peers @@ -68,7 +68,7 @@ public: /// connections purged. virtual int mark_as_closed_i (const void *recycling_act); - /* + /** * Since g++ version < 2.8 arent happy with templates, this special * method had to be devised to avoid memory leaks and perform * cleanup of the . @@ -155,7 +155,7 @@ protected: int perms, int &found); - /* + /** * Connection of the svc_handler with the remote host. This method * also encapsulates the connection done with auto_purging under the * hood. If the connect failed due to the process running out of @@ -181,7 +181,7 @@ protected: // For linkers which cant grok long names... #define ACE_Bounded_Cached_Connect_Strategy ABCCS -/* +/** * @class ACE_Bounded_Cached_Connect_Strategy * * @brief diff --git a/dep/ACE_wrappers/ace/Caching_Strategies_T.h b/dep/ACE_wrappers/ace/Caching_Strategies_T.h index bd15ab936..48f5e898e 100644 --- a/dep/ACE_wrappers/ace/Caching_Strategies_T.h +++ b/dep/ACE_wrappers/ace/Caching_Strategies_T.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Caching_Strategies_T.h * * $Id: Caching_Strategies_T.h 92097 2010-09-30 05:41:49Z msmit $ @@ -31,7 +31,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_Caching_Strategy * * @brief This class is an abstract base class for a caching strategy. @@ -94,7 +94,7 @@ public: #define ACE_Caching_Strategy_Adapter ACSA -/* +/** * @class ACE_Caching_Strategy_Adapter * * @brief This class follows the Adaptor pattern and is used to provide @@ -176,7 +176,7 @@ private: ////////////////////////////////////////////////////////////////////////// #define ACE_LRU_Caching_Strategy ALRU -/* +/** * @class ACE_LRU_Caching_Strategy * * @brief Defines a Least Recently Used strategy which will decide on @@ -205,7 +205,7 @@ public: // = Initialisation and termination. - /* + /** * The is the map in which the entries reside. The * timer attribute is initialed to zero in this constructor. And * the field denotes the percentage of the entries @@ -276,7 +276,7 @@ private: ////////////////////////////////////////////////////////////////////////// #define ACE_LFU_Caching_Strategy ALFU -/* +/** * @class ACE_LFU_Caching_Strategy * * @brief Defines a Least Frequently Used strategy for which will decide on @@ -306,7 +306,7 @@ public: // = Initialisation and termination methods. - /* + /** * The is the map in which the entries reside. The * timer attribute is initialed to zero in this constructor. And * the field denotes the percentage of the entries @@ -371,7 +371,7 @@ private: ///////////////////////////////////////////////////////////// #define ACE_FIFO_Caching_Strategy AFIFO -/* +/** * @class ACE_FIFO_Caching_Strategy * * @brief The First In First Out strategy is implemented wherein each @@ -398,7 +398,7 @@ public: // = Initialisation and termination. - /* + /** * The is the map in which the entries reside. The * timer attribute is initialed to zero in this constructor. And * the field denotes the percentage of the entries @@ -466,7 +466,7 @@ private: ////////////////////////////////////////////////////////////////////// #define ACE_Null_Caching_Strategy ANULL -/* +/** * @class ACE_Null_Caching_Strategy * * @brief The is a special caching strategy which doesnt have the purging diff --git a/dep/ACE_wrappers/ace/Caching_Utility_T.h b/dep/ACE_wrappers/ace/Caching_Utility_T.h index c9ac3e5ab..9340d73ac 100644 --- a/dep/ACE_wrappers/ace/Caching_Utility_T.h +++ b/dep/ACE_wrappers/ace/Caching_Utility_T.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Caching_Utility_T.h * * $Id: Caching_Utility_T.h 92085 2010-09-29 12:23:13Z johnnyw $ @@ -27,7 +27,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_Pair_Caching_Utility * * @brief Defines a helper class for the Caching Strategies. @@ -55,7 +55,7 @@ public: /// Destructor. ~ACE_Pair_Caching_Utility (void); - /* + /** * Purge entries from the @a container. The Cleanup_Strategy will do the * actual job of cleanup once the entries to be cleaned up are decided. */ @@ -76,7 +76,7 @@ protected: bool delete_cleanup_strategy_; }; -/* +/** * @class ACE_Recyclable_Handler_Caching_Utility * * @brief Defines a helper class for the Caching Strategies. @@ -106,7 +106,7 @@ public: /// Destructor. ~ACE_Recyclable_Handler_Caching_Utility (void); - /* + /** * Purge entries from the . The Cleanup_Strategy will do * the actual job of cleanup once the entries to be cleaned up are * decided. @@ -128,7 +128,7 @@ protected: bool delete_cleanup_strategy_; }; -/* +/** * @class ACE_Refcounted_Recyclable_Handler_Caching_Utility * * @brief Defines a helper class for the Caching Strategies. @@ -157,7 +157,7 @@ public: /// Destructor. ~ACE_Refcounted_Recyclable_Handler_Caching_Utility (void); - /* + /** * Purge entries from the . The Cleanup_Strategy will do * the actual job of cleanup once the entries to be cleaned up are * decided. @@ -178,7 +178,7 @@ protected: /// Whether the cleanup_strategy should be destroyed or not. bool delete_cleanup_strategy_; - /* + /** * This figure denotes the number of entries are there in the * container which have been marked as closed already but might * not have been unbound from the container. @@ -186,7 +186,7 @@ protected: size_t marked_as_closed_entries_; }; -/* +/** * @class ACE_Handler_Caching_Utility * * @brief Defines a helper class for the Caching Strategies. @@ -215,7 +215,7 @@ public: /// Destructor. ~ACE_Handler_Caching_Utility (void); - /* + /** * Purge entries from the . The Cleanup_Strategy will do * the actual job of cleanup once the entries to be cleaned up are * decided. @@ -225,7 +225,7 @@ public: protected: - /* + /** * Find the entry with minimum caching attributes. This is handler * specific since this utility is to be used very specifically for * handler who have caching_attributes for server side acched @@ -243,7 +243,7 @@ protected: bool delete_cleanup_strategy_; }; -/* +/** * @class ACE_Null_Caching_Utility * * @brief Defines a dummy helper class for the Caching Strategies. @@ -270,7 +270,7 @@ public: /// Destructor. ~ACE_Null_Caching_Utility (void); - /* + /** * Purge entries from the . The Cleanup_Strategy will do * the actual job of cleanup once the entries to be cleaned up are * decided. @note Here it is a no-op. @@ -280,7 +280,7 @@ public: protected: - /* + /** * Find the entry with minimum caching attributes. This is handler * specific since this utility is to be used very specifically for * handler who have caching_attributes for server side acched diff --git a/dep/ACE_wrappers/ace/Capabilities.h b/dep/ACE_wrappers/ace/Capabilities.h index 889014586..f4c8b5cc6 100644 --- a/dep/ACE_wrappers/ace/Capabilities.h +++ b/dep/ACE_wrappers/ace/Capabilities.h @@ -1,7 +1,7 @@ /* -*- C++ -*- */ //============================================================================= -/* +/** * @file Capabilities.h * * $Id: Capabilities.h 91077 2010-07-13 14:33:08Z johnnyw $ @@ -34,7 +34,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_CapEntry * * @brief This class is the base class for all ACE Capabilities entry @@ -67,7 +67,7 @@ protected: }; -/* +/** * @class ACE_IntCapEntry * * @brief This class implement the ACE Integer Capability subclass. @@ -85,7 +85,7 @@ protected: int val_; }; -/* +/** * @class ACE_StringCapEntry * * @brief This class implement the ACE String Capability subclass. @@ -103,7 +103,7 @@ protected: ACE_TString val_; }; -/* +/** * @class ACE_BoolCapEntry * * @brief This class implement the ACE Bool Capability subclass. @@ -121,7 +121,7 @@ protected: int val_; }; -/* +/** * @class ACE_Capabilities * * @brief diff --git a/dep/ACE_wrappers/ace/Cleanup.h b/dep/ACE_wrappers/ace/Cleanup.h index a1b092585..bd750724f 100644 --- a/dep/ACE_wrappers/ace/Cleanup.h +++ b/dep/ACE_wrappers/ace/Cleanup.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Cleanup.h * * $Id: Cleanup.h 84163 2009-01-15 07:57:27Z johnnyw $ @@ -39,7 +39,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_Cleanup * * @brief Base class for objects that are cleaned by ACE_Object_Manager. @@ -61,7 +61,7 @@ public: extern "C" ACE_Export void ACE_CLEANUP_DESTROYER_NAME (ACE_Cleanup *, void *param = 0); -/* +/** * @class ACE_Cleanup_Info_Node * * @brief For maintaining a list of ACE_Cleanup_Info items. @@ -105,7 +105,7 @@ private: typedef ACE_Intrusive_List ACE_Cleanup_Info_Node_List; -/* +/** * @class ACE_OS_Exit_Info * * @brief Hold Object Manager cleanup (exit) information. @@ -139,7 +139,7 @@ public: void call_hooks (); private: - /* + /** * Keeps track of all registered objects. */ ACE_Cleanup_Info_Node_List registered_objects_; diff --git a/dep/ACE_wrappers/ace/Cleanup_Strategies_T.h b/dep/ACE_wrappers/ace/Cleanup_Strategies_T.h index 4f9736b8f..ca51b47b1 100644 --- a/dep/ACE_wrappers/ace/Cleanup_Strategies_T.h +++ b/dep/ACE_wrappers/ace/Cleanup_Strategies_T.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Cleanup_Strategies_T.h * * $Id: Cleanup_Strategies_T.h 81388 2008-04-23 14:02:05Z johnnyw $ @@ -26,7 +26,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_Cleanup_Strategy * * @brief Defines a default strategy to be followed for cleaning up @@ -51,7 +51,7 @@ public: ////////////////////////////////////////////////////////////////////// #define ACE_Recyclable_Handler_Cleanup_Strategy ARHCLE -/* +/** * @class ACE_Recyclable_Handler_Cleanup_Strategy * * @brief Defines a strategy to be followed for cleaning up @@ -75,7 +75,7 @@ public: ////////////////////////////////////////////////////////////////////// #define ACE_Refcounted_Recyclable_Handler_Cleanup_Strategy ARRHCLE -/* +/** * @class ACE_Refcounted_Recyclable_Handler_Cleanup_Strategy * * @brief Defines a strategy to be followed for cleaning up @@ -96,7 +96,7 @@ public: ////////////////////////////////////////////////////////////////////// -/* +/** * @class ACE_Handler_Cleanup_Strategy * * @brief Defines a strategy to be followed for cleaning up @@ -119,7 +119,7 @@ public: ////////////////////////////////////////////////////////////////////// #define ACE_Null_Cleanup_Strategy ANCLE -/* +/** * @class ACE_Null_Cleanup_Strategy * * @brief Defines a do-nothing implementation of the cleanup strategy. diff --git a/dep/ACE_wrappers/ace/Codecs.h b/dep/ACE_wrappers/ace/Codecs.h index 6b12c9c06..2c4227dd0 100644 --- a/dep/ACE_wrappers/ace/Codecs.h +++ b/dep/ACE_wrappers/ace/Codecs.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Codecs.h * * $Id: Codecs.h 80826 2008-03-04 14:51:23Z wotte $ @@ -33,7 +33,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_Base64 * * @brief Encode/Decode a stream of bytes according to Base64 encoding. @@ -49,7 +49,7 @@ public: //@{ - /* + /** * Encodes a stream of bytes to Base64 data * * @param input Binary data in byte stream. @@ -64,7 +64,7 @@ public: const size_t input_len, size_t* output_len, bool is_chunked = true); - /* + /** * Decodes a stream of Base64 to bytes data * * @param input Encoded Base64 data in byte stream. @@ -75,7 +75,7 @@ public: static ACE_Byte* decode (const ACE_Byte* input, size_t* output_len); - /* + /** * Return the length of the encoded input data * * @param input Encoded Base64 data in byte stream. diff --git a/dep/ACE_wrappers/ace/Codeset_IBM1047.cpp b/dep/ACE_wrappers/ace/Codeset_IBM1047.cpp index 60091d712..3f5bad0b7 100644 --- a/dep/ACE_wrappers/ace/Codeset_IBM1047.cpp +++ b/dep/ACE_wrappers/ace/Codeset_IBM1047.cpp @@ -1,6 +1,6 @@ //============================================================================= -/* +/** * @file Codeset_IBM1047.cpp * * $Id: Codeset_IBM1047.cpp 91286 2010-08-05 09:04:31Z johnnyw $ diff --git a/dep/ACE_wrappers/ace/Codeset_IBM1047.h b/dep/ACE_wrappers/ace/Codeset_IBM1047.h index 3fe506513..3caa8881f 100644 --- a/dep/ACE_wrappers/ace/Codeset_IBM1047.h +++ b/dep/ACE_wrappers/ace/Codeset_IBM1047.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Codeset_IBM1047.h * * $Id: Codeset_IBM1047.h 81388 2008-04-23 14:02:05Z johnnyw $ @@ -32,7 +32,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL // **************************************************************** -/* +/** * @class ACE_IBM1047_ISO8859 * * @brief Codeset translation specialization. @@ -75,7 +75,7 @@ public: virtual ACE_CDR::ULong tcs (); }; -/* +/** * @class ACE_ISO8859_IBM1047 * * @brief Codeset translation specialization. diff --git a/dep/ACE_wrappers/ace/Codeset_Registry.cpp b/dep/ACE_wrappers/ace/Codeset_Registry.cpp index a53b63333..6c132a880 100644 --- a/dep/ACE_wrappers/ace/Codeset_Registry.cpp +++ b/dep/ACE_wrappers/ace/Codeset_Registry.cpp @@ -1,5 +1,5 @@ //============================================================================= -/* +/** * @file Codeset_Registry.cpp * * $Id: Codeset_Registry.cpp 91286 2010-08-05 09:04:31Z johnnyw $ diff --git a/dep/ACE_wrappers/ace/Codeset_Registry.h b/dep/ACE_wrappers/ace/Codeset_Registry.h index f88208344..e72c435f8 100644 --- a/dep/ACE_wrappers/ace/Codeset_Registry.h +++ b/dep/ACE_wrappers/ace/Codeset_Registry.h @@ -1,6 +1,6 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Codeset_Registry.h * * $Id: Codeset_Registry.h 81348 2008-04-14 09:00:32Z johnnyw $ diff --git a/dep/ACE_wrappers/ace/Codeset_Registry.inl b/dep/ACE_wrappers/ace/Codeset_Registry.inl index c544e9249..4419cf5e7 100644 --- a/dep/ACE_wrappers/ace/Codeset_Registry.inl +++ b/dep/ACE_wrappers/ace/Codeset_Registry.inl @@ -1,6 +1,6 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Codeset_Registry.inl * * $Id: Codeset_Registry.inl 80826 2008-03-04 14:51:23Z wotte $ diff --git a/dep/ACE_wrappers/ace/Codeset_Symbols.h b/dep/ACE_wrappers/ace/Codeset_Symbols.h index adbf0411a..6ffe198c1 100644 --- a/dep/ACE_wrappers/ace/Codeset_Symbols.h +++ b/dep/ACE_wrappers/ace/Codeset_Symbols.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Codeset_Symbols.h * * $Id: Codeset_Symbols.h 80826 2008-03-04 14:51:23Z wotte $ diff --git a/dep/ACE_wrappers/ace/Condition_Recursive_Thread_Mutex.cpp b/dep/ACE_wrappers/ace/Condition_Recursive_Thread_Mutex.cpp index 1fb429060..1f357589f 100644 --- a/dep/ACE_wrappers/ace/Condition_Recursive_Thread_Mutex.cpp +++ b/dep/ACE_wrappers/ace/Condition_Recursive_Thread_Mutex.cpp @@ -1,6 +1,6 @@ // -*- C++ -*- -/* +/** * @file Condition_Recursive_Thread_Mutex.cpp * * $Id: Condition_Recursive_Thread_Mutex.cpp 89127 2010-02-22 19:58:18Z schmidt $ diff --git a/dep/ACE_wrappers/ace/Condition_Recursive_Thread_Mutex.h b/dep/ACE_wrappers/ace/Condition_Recursive_Thread_Mutex.h index 9489af62a..ac3177da8 100644 --- a/dep/ACE_wrappers/ace/Condition_Recursive_Thread_Mutex.h +++ b/dep/ACE_wrappers/ace/Condition_Recursive_Thread_Mutex.h @@ -1,7 +1,7 @@ // -*- C++ -*- //========================================================================== -/* +/** * @file Condition_Recursive_Thread_Mutex.h * * $Id: Condition_Recursive_Thread_Mutex.h 86731 2009-09-17 12:23:48Z johnnyw $ @@ -31,7 +31,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL template class ACE_Condition; -/* +/** * @brief ACE_Condition template specialization written using * @a ACE_Recursive_Thread_Mutex. This allows threads to block until * shared data changes state using recursive mutexes. @@ -46,14 +46,14 @@ public: /// Implicitly destroy the condition variable. ~ACE_Condition (void); - /* + /** * Explicitly destroy the condition variable. Note that only one * thread should call this method since it doesn't protect against * race conditions. */ int remove (void); - /* + /** * Block on condition, or until absolute time-of-day has passed. If * abstime == 0 use "blocking" semantics. Else, if @a abstime * != 0 and the call times out before the condition is signaled @@ -61,7 +61,7 @@ public: */ int wait (const ACE_Time_Value *abstime = 0); - /* + /** * Block on condition or until absolute time-of-day has passed. If * abstime == 0 use "blocking" wait() semantics on the recursive @a mutex * passed as a parameter (this is useful if you need to store the diff --git a/dep/ACE_wrappers/ace/Condition_T.h b/dep/ACE_wrappers/ace/Condition_T.h index 9ba365a3b..936ce8217 100644 --- a/dep/ACE_wrappers/ace/Condition_T.h +++ b/dep/ACE_wrappers/ace/Condition_T.h @@ -1,7 +1,7 @@ // -*- C++ -*- //========================================================================== -/* +/** * @file Condition_T.h * * $Id: Condition_T.h 81462 2008-04-28 11:39:40Z johnnyw $ @@ -30,7 +30,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL class ACE_Time_Value; -/* +/** * @class ACE_Condition * * @brief ACE_Condition variable wrapper, which allows threads to block @@ -63,7 +63,7 @@ public: ~ACE_Condition (void); // = Lock accessors. - /* + /** * Block on condition, or until absolute time-of-day has passed. If * @a abstime == 0 use "blocking" semantics. Else, if @a abstime * != 0 and the call times out before the condition is signaled @@ -74,7 +74,7 @@ public: /// Block on condition. int wait (void); - /* + /** * Block on condition or until absolute time-of-day has passed. If * abstime == 0 use "blocking" wait() semantics on the * passed as a parameter (this is useful if you need to store the @@ -116,7 +116,7 @@ private: ACE_UNIMPLEMENTED_FUNC (ACE_Condition (const ACE_Condition &)) }; -/* +/** * @class ACE_Thread_Condition * * @brief ACE_Condition variable wrapper that works within processes. diff --git a/dep/ACE_wrappers/ace/Condition_Thread_Mutex.cpp b/dep/ACE_wrappers/ace/Condition_Thread_Mutex.cpp index e7e49bbbf..88e99702d 100644 --- a/dep/ACE_wrappers/ace/Condition_Thread_Mutex.cpp +++ b/dep/ACE_wrappers/ace/Condition_Thread_Mutex.cpp @@ -1,5 +1,5 @@ /* -*- C++ -*- */ -/* +/** * @file Condition_Thread_Mutex.cpp * * $Id: Condition_Thread_Mutex.cpp 91286 2010-08-05 09:04:31Z johnnyw $ diff --git a/dep/ACE_wrappers/ace/Condition_Thread_Mutex.h b/dep/ACE_wrappers/ace/Condition_Thread_Mutex.h index 880ec4557..1ba866d2e 100644 --- a/dep/ACE_wrappers/ace/Condition_Thread_Mutex.h +++ b/dep/ACE_wrappers/ace/Condition_Thread_Mutex.h @@ -1,7 +1,7 @@ // -*- C++ -*- //========================================================================== -/* +/** * @file Condition_Thread_Mutex.h * * $Id: Condition_Thread_Mutex.h 92069 2010-09-28 11:38:59Z johnnyw $ @@ -54,7 +54,7 @@ private: ACE_Condition_Attributes (const ACE_Condition_Attributes &); }; -/* +/** * @class ACE_Condition_Thread_Mutex * * @brief ACE_Condition variable wrapper written using ACE_Mutexes This @@ -91,14 +91,14 @@ public: /// Implicitly destroy the condition variable. ~ACE_Condition_Thread_Mutex (void); - /* + /** * Explicitly destroy the condition variable. Note that only one * thread should call this method since it doesn't protect against * race conditions. */ int remove (void); - /* + /** * Block on condition, or until absolute time-of-day has passed. If * abstime == 0 use "blocking" semantics. Else, if @a abstime * != 0 and the call times out before the condition is signaled @@ -109,7 +109,7 @@ public: /// Block on condition. int wait (void); - /* + /** * Block on condition or until absolute time-of-day has passed. If * abstime == 0 use "blocking" wait() semantics on the * passed as a parameter (this is useful if you need to store the diff --git a/dep/ACE_wrappers/ace/Configuration.cpp b/dep/ACE_wrappers/ace/Configuration.cpp index e50d93709..4e0a1749e 100644 --- a/dep/ACE_wrappers/ace/Configuration.cpp +++ b/dep/ACE_wrappers/ace/Configuration.cpp @@ -180,7 +180,7 @@ ACE_Configuration::root_section (void) const return root_; } -/* +/** * Determine if the contents of this object is the same as the * contents of the object on the right hand side. * Returns 1 (True) if they are equal and 0 (False) if they are not equal diff --git a/dep/ACE_wrappers/ace/Configuration.h b/dep/ACE_wrappers/ace/Configuration.h index 17505bf6b..4c931e6ab 100644 --- a/dep/ACE_wrappers/ace/Configuration.h +++ b/dep/ACE_wrappers/ace/Configuration.h @@ -1,7 +1,7 @@ /* -*- C++ -*- */ //============================================================================= -/* +/** * @file Configuration.h * * $Id: Configuration.h 91688 2010-09-09 11:21:50Z johnnyw $ @@ -54,7 +54,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_Section_Key_Internal * * @internal @@ -84,7 +84,7 @@ protected: u_int ref_count_; }; -/* +/** * @class ACE_Configuration_Section_Key * * @brief Reference counted wrapper for ACE_Section_Key_Internal. @@ -101,7 +101,7 @@ public: ACE_Configuration_Section_Key (void); /// Constructor that initializes to a pointer to a concrete internal key. - /* + /** * @param key The section key to reference. Calls add_ref() with @a key. */ explicit ACE_Configuration_Section_Key (ACE_Section_Key_Internal *key); @@ -120,7 +120,7 @@ private: ACE_Section_Key_Internal *key_; }; -/* +/** * @class ACE_Configuration * * @internal @@ -155,7 +155,7 @@ public: */ virtual const ACE_Configuration_Section_Key& root_section (void) const; - /* + /** * Opens a named section in an existing section. * * @param base Existing section in which to open the named section. @@ -174,7 +174,7 @@ public: ACE_Configuration_Section_Key& result) = 0; /// Removes a named section. - /* + /** * @param key Section key to remove the named section from. * @param sub_section Name of the section to remove. * @param recursive If true, any subkeys below @a sub_section are @@ -187,7 +187,7 @@ public: const ACE_TCHAR *sub_section, bool recursive) = 0; - /* + /** * Enumerates through the values in a section. * * @param key Section key to iterate through. @@ -210,7 +210,7 @@ public: ACE_TString& name, VALUETYPE& type) = 0; - /* + /** * Enumerates through the subsections in a section. * * @param key Section key to iterate through. @@ -231,7 +231,7 @@ public: int index, ACE_TString& name) = 0; /// Sets a string-typed value. - /* + /** * @param key Configuration section to set the value in. * @param name Name of the configuration value to set. If a value with * the specified name exists, it is replaced. @@ -245,7 +245,7 @@ public: const ACE_TString& value) = 0; /// Sets a integer-typed value. - /* + /** * @param key Configuration section to set the value in. * @param name Name of the configuration value to set. If a value with * the specified name exists, it is replaced. @@ -259,7 +259,7 @@ public: u_int value) = 0; /// Sets a binary-typed value. - /* + /** * @param key Configuration section to set the value in. * @param name Name of the configuration value to set. If a value with * the specified name exists, it is replaced. @@ -275,7 +275,7 @@ public: size_t length) = 0; /// Gets a string-typed value. - /* + /** * @param key Configuration section to get the value from. * @param name Name of the configuration value to get. * @param value Receives the configuration value if it exists and @@ -289,7 +289,7 @@ public: ACE_TString& value) = 0; /// Gets an integer-typed value. - /* + /** * @param key Configuration section to get the value from. * @param name Name of the configuration value to get. * @param value Receives the configuration value if it exists and @@ -303,7 +303,7 @@ public: u_int& value) = 0; /// Gets a binary-typed value. - /* + /** * @param key Configuration section to get the value from. * @param name Name of the configuration value to get. * @param data Receives a pointer to memory holding the binary data @@ -321,7 +321,7 @@ public: void*& data, size_t& length) = 0; - /* + /** * Retrieves the type of a named configuration value. * * @param key Configuration section to look up the name in. @@ -336,7 +336,7 @@ public: VALUETYPE& type) = 0; /// Removes a named value. - /* + /** * @param key Configuration section to remove the named value from. * @param name Name of the configuration value to remove. * @@ -346,7 +346,7 @@ public: virtual int remove_value (const ACE_Configuration_Section_Key& key, const ACE_TCHAR* name) = 0; - /* + /** * Expands @a path_in to @a key_out from @a key. If create is true, * the subsections are created. Returns 0 on success, non zero on * error The path consists of sections separated by the backslash @@ -359,21 +359,21 @@ public: ACE_Configuration_Section_Key& key_out, int create = 1); - /* + /** * Determine if the contents of this object is the same as the * contents of the object on the right hand side. * Returns true if they are equal and false if they are not equal */ bool operator==(const ACE_Configuration& rhs) const; - /* + /** * Determine if the contents of this object are different from the * contents of the object on the right hand side. * Returns false if they are equal and true if they are not equal */ bool operator!=(const ACE_Configuration& rhs) const; - /* + /** * * Represents the "NULL" string to simplify the internal logic. * */ static ACE_TCHAR NULL_String_; @@ -386,7 +386,7 @@ protected: ACE_Section_Key_Internal* get_internal_key (const ACE_Configuration_Section_Key& key); - /* + /** * Tests to see if @a name is valid. @a name must be < 255 characters * and not contain the path separator '\', brackets [] or = (maybe * just restrict to alphanumeric?) returns non zero if name is not @@ -395,7 +395,7 @@ protected: */ int validate_name (const ACE_TCHAR* name, int allow_path = 0); - /* + /** * Test to see if @a name is valid. The default value for a key can be * unnamed, which means either @a name is == 0 or @a name == '\0` is * valid. Otherwise, it calls validate_name() to test @a name for the @@ -413,7 +413,7 @@ protected: #if defined (ACE_WIN32) && !defined (ACE_LACKS_WIN32_REGISTRY) -/* +/** * @class ACE_Section_Key_Win32 * * @brief The Win32 registry implementation of an internal section key. @@ -437,7 +437,7 @@ protected: ACE_Section_Key_Win32& operator= (const ACE_Section_Key_Win32& rhs); }; -/* +/** * @class ACE_Configuration_Win32Registry * * @brief The win32 registry implementation of a configuration database @@ -450,7 +450,7 @@ class ACE_Export ACE_Configuration_Win32Registry : public ACE_Configuration { public: - /* + /** * Constructor for registry configuration database. hKey is the * base registry key to attach to. This class takes ownership of * hKey, it will invoke on it upon destruction. @@ -512,7 +512,7 @@ public: virtual int remove_value (const ACE_Configuration_Section_Key& key, const ACE_TCHAR* name); - /* + /** * This method traverses through . It is useful when * you want the HKEY for a specific registry key, especially when * initializing this implementation. Caller is responsible for @@ -547,7 +547,7 @@ typedef ACE_Allocator_Adapter > HEAP_ALLOCATOR; -/* +/** * @class ACE_Configuration_ExtId * * @brief External ID for the section and value hash @@ -603,7 +603,7 @@ typedef ACE_Hash_Map_Manager_Ex SUBSECTION_HASH; -/* +/** * @class ACE_Configuration_Value_IntId * * @brief The section hash table internal value class @@ -640,7 +640,7 @@ public: // = Data members. - /* + /** * Points to the string value or binary data or IS the integer * Length is only used when type_ == BINARY */ @@ -665,7 +665,7 @@ typedef ACE_Hash_Map_Manager_Ex &non_blocking_handles (void) = 0; }; -/* +/** * @class ACE_NonBlocking_Connect_Handler * * @brief Performs non-blocking connects on behalf of the Connector. @@ -71,7 +71,7 @@ public: ~ACE_NonBlocking_Connect_Handler (void); /// Close up and return underlying SVC_HANDLER through @c sh. - /* + /** * If the return value is true the close was performed succesfully, * implying that this object was removed from the reactor and thereby * (by means of reference counting decremented to 0) deleted. @@ -140,7 +140,7 @@ private: long timer_id_; }; -/* +/** * @class ACE_Connector * * @brief Generic factory for actively connecting clients and creating @@ -168,7 +168,7 @@ public: typedef typename ACE_PEER_CONNECTOR::PEER_ADDR peer_addr_type; typedef ACE_PEER_CONNECTOR_ADDR ACE_PEER_ADDR_TYPEDEF; - /* + /** * Initialize a connector. @a flags indicates how SVC_HANDLER's * should be initialized prior to being activated. Right now, the * only flag that is processed is ACE_NONBLOCK, which enabled @@ -177,7 +177,7 @@ public: ACE_Connector (ACE_Reactor *r = ACE_Reactor::instance (), int flags = 0); - /* + /** * Initialize a connector. @a flags indicates how SVC_HANDLER's * should be initialized prior to being activated. Right now, the * only flag that is processed is ACE_NONBLOCK, which enabled @@ -191,7 +191,7 @@ public: // = Connection establishment methods. - /* + /** * Initiate connection of @a svc_handler to peer at @a remote_addr * using @a synch_options. If the caller wants to designate the * selected @a local_addr they can (and can also insist that the @@ -211,7 +211,7 @@ public: int flags = O_RDWR, int perms = 0); - /* + /** * This is a variation on the previous method. On cached * connectors the @a svc_handler_hint variable can be used as a hint * for future lookups. Since this variable is modified in the @@ -231,7 +231,7 @@ public: int flags = O_RDWR, int perms = 0); - /* + /** * Initiate connection of @a n @a svc_handlers to peers at * @a remote_addrs using @a synch_options. Returns -1 if failure * occurs and 0 otherwise. If @a failed_svc_handlers is non-NULL, a @@ -246,7 +246,7 @@ public: const ACE_Synch_Options &synch_options = ACE_Synch_Options::defaults); - /* + /** * Cancel the @a svc_handler that was started asynchronously. Note that * this is the only case when the Connector does not actively close * the @a svc_handler. It is left up to the caller of to @@ -284,7 +284,7 @@ protected: // = The following two methods define the Connector's strategies for // creating, connecting, and activating SVC_HANDLER's, respectively. - /* + /** * Bridge method for creating a SVC_HANDLER. The default is to * create a new SVC_HANDLER only if @a sh == 0, else @a sh is * unchanged. However, subclasses can override this policy to @@ -295,7 +295,7 @@ protected: */ virtual int make_svc_handler (SVC_HANDLER *&sh); - /* + /** * Bridge method for connecting the @a svc_handler to the * @a remote_addr. The default behavior delegates to the * . @@ -316,7 +316,7 @@ protected: int flags, int perms); - /* + /** * Bridge method for activating a @a svc_handler with the appropriate * concurrency strategy. The default behavior of this method is to * activate the SVC_HANDLER by calling its method (which @@ -370,7 +370,7 @@ private: /// This is the peer connector factory. ACE_PEER_CONNECTOR connector_; - /* + /** * Flags that indicate how SVC_HANDLER's should be initialized * prior to being activated. Right now, the only flag that is * processed is ACE_NONBLOCK, which enabled non-blocking I/O on @@ -386,7 +386,7 @@ private: }; -/* +/** * @class ACE_Strategy_Connector * * @brief Abstract factory for creating a service handler @@ -426,7 +426,7 @@ public: typedef ACE_Connector SUPER; - /* + /** * Initialize a connector. @a flags indicates how SVC_HANDLER's * should be initialized prior to being activated. Right now, the * only flag that is processed is ACE_NONBLOCK, which enabled @@ -438,7 +438,7 @@ public: ACE_Concurrency_Strategy * = 0, int flags = 0); - /* + /** * Initialize a connector. @a flags indicates how SVC_HANDLER's * should be initialized prior to being activated. Right now, the * only flag that is processed is ACE_NONBLOCK, which enabled @@ -448,7 +448,7 @@ public: virtual int open (ACE_Reactor *r, int flags); - /* + /** * Initialize a connector. @a flags indicates how SVC_HANDLER's * should be initialized prior to being activated. Right now, the * only flag that is processed is ACE_NONBLOCK, which enabled @@ -476,7 +476,7 @@ protected: // for creating, connecting, and activating SVC_HANDLER's, // respectively. - /* + /** * Bridge method for creating a SVC_HANDLER. The strategy for * creating a SVC_HANDLER are configured into the Connector via * it's . The default is to create a new @@ -489,7 +489,7 @@ protected: */ virtual int make_svc_handler (SVC_HANDLER *&sh); - /* + /** * Bridge method for connecting the new connection into the * SVC_HANDLER. The default behavior delegates to the * in the . @@ -502,7 +502,7 @@ protected: int flags, int perms); - /* + /** * Bridge method for connecting the new connection into the * SVC_HANDLER. The default behavior delegates to the * in the . @@ -521,7 +521,7 @@ protected: int flags, int perms); - /* + /** * Bridge method for activating a SVC_HANDLER with the appropriate * concurrency strategy. The default behavior of this method is to * activate the SVC_HANDLER by calling its method (which diff --git a/dep/ACE_wrappers/ace/Containers.h b/dep/ACE_wrappers/ace/Containers.h index 177a36721..ecff8e368 100644 --- a/dep/ACE_wrappers/ace/Containers.h +++ b/dep/ACE_wrappers/ace/Containers.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Containers.h * * $Id: Containers.h 80826 2008-03-04 14:51:23Z wotte $ @@ -28,7 +28,7 @@ template class ACE_Double_Linked_List_Iterator_Base; template class ACE_Double_Linked_List_Iterator; template class ACE_Double_Linked_List_Reverse_Iterator; -/* +/** * @class ACE_DLList_Node * * @brief Base implementation of element in a DL list. Needed for diff --git a/dep/ACE_wrappers/ace/Containers_T.h b/dep/ACE_wrappers/ace/Containers_T.h index 41d853e8f..6e6c5bd34 100644 --- a/dep/ACE_wrappers/ace/Containers_T.h +++ b/dep/ACE_wrappers/ace/Containers_T.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Containers_T.h * * $Id: Containers_T.h 91995 2010-09-24 12:45:24Z johnnyw $ @@ -41,7 +41,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL class ACE_Allocator; -/* +/** * @class ACE_Bounded_Stack * * @brief Implement a generic LIFO abstract data type. @@ -81,21 +81,21 @@ public: // = Initialization, assignment, and termination methods. /// Initialize a new empty stack with the provided size.. - /* + /** * Initialize and allocate space for a new Bounded_Stack with the provided * size. */ ACE_Bounded_Stack (size_t size); /// Initialize the stack to be a copy of the stack provided. - /* + /** * Initialize the stack to be an exact copy of the Bounded_Stack provided * as a parameter. */ ACE_Bounded_Stack (const ACE_Bounded_Stack &s); /// Assignment operator - /* + /** * Perform a deep copy operation using the Bounded_Stack parameter. If the * capacity of the lhs isn't sufficient for the rhs, then the underlying data * structure will be reallocated to accomadate the larger number of elements. @@ -103,7 +103,7 @@ public: void operator= (const ACE_Bounded_Stack &s); /// Perform actions needed when stack goes out of scope. - /* + /** * Deallocate the memory used by the Bounded_Stack. */ ~ACE_Bounded_Stack (void); @@ -111,7 +111,7 @@ public: // = Classic Stack operations. ///Add an element to the top of the stack. - /* + /** * Place a new item on top of the stack. Returns -1 if the stack * is already full, 0 if the stack is not already full, and -1 if * failure occurs. @@ -119,7 +119,7 @@ public: int push (const T &new_item); ///Remove an item from the top of stack. - /* + /** * Remove and return the top stack item. Returns -1 if the stack is * already empty, 0 if the stack is not already empty, and -1 if * failure occurs. @@ -127,7 +127,7 @@ public: int pop (T &item); ///Examine the contents of the top of stack. - /* + /** * Return top stack item without removing it. Returns -1 if the * stack is already empty, 0 if the stack is not already empty, and * -1 if failure occurs. @@ -137,19 +137,19 @@ public: // = Check boundary conditions. /// Returns 1 if the container is empty, otherwise returns 0. - /* + /** * Performs constant time check to determine if the stack is empty. */ int is_empty (void) const; /// Returns 1 if the container is full, otherwise returns 0. - /* + /** * Performs constant time check to determine if the stack is at capacity. */ int is_full (void) const; /// The number of items in the stack. - /* + /** * Return the number of items currently in the stack. */ size_t size (void) const; @@ -174,7 +174,7 @@ private: //---------------------------------------- -/* +/** * @class ACE_Fixed_Stack * * @brief Implement a generic LIFO abstract data type. @@ -211,25 +211,25 @@ class ACE_Fixed_Stack public: // = Initialization, assignment, and termination methods. /// Initialize a new stack so that it is empty. - /* + /** * Initialize an empty stack. */ ACE_Fixed_Stack (void); /// The copy constructor (performs initialization). - /* + /** * Initialize the stack and copy the provided stack into the current stack. */ ACE_Fixed_Stack (const ACE_Fixed_Stack &s); /// Assignment operator (performs assignment). - /* + /** * Perform a deep copy of the provided stack. */ void operator= (const ACE_Fixed_Stack &s); /// Perform actions needed when stack goes out of scope. - /* + /** * Destroy the stack. */ ~ACE_Fixed_Stack (void); @@ -237,7 +237,7 @@ public: // = Classic Stack operations. ///Constant time placement of element on top of stack. - /* + /** * Place a new item on top of the stack. Returns -1 if the stack * is already full, 0 if the stack is not already full, and -1 if * failure occurs. @@ -245,7 +245,7 @@ public: int push (const T &new_item); ///Constant time removal of top of stack. - /* + /** * Remove and return the top stack item. Returns -1 if the stack is * already empty, 0 if the stack is not already empty, and -1 if * failure occurs. @@ -253,7 +253,7 @@ public: int pop (T &item); ///Constant time examination of top of stack. - /* + /** * Return top stack item without removing it. Returns -1 if the * stack is already empty, 0 if the stack is not already empty, and * -1 if failure occurs. @@ -263,19 +263,19 @@ public: // = Check boundary conditions. /// Returns 1 if the container is empty, otherwise returns 0. - /* + /** * Performs constant time check to see if stack is empty. */ int is_empty (void) const; /// Returns 1 if the container is full, otherwise returns 0. - /* + /** * Performs constant time check to see if stack is full. */ int is_full (void) const; /// The number of items in the stack. - /* + /** * Constant time access to the current size of the stack. */ size_t size (void) const; @@ -302,7 +302,7 @@ private: template class ACE_Ordered_MultiSet; template class ACE_Ordered_MultiSet_Iterator; -/* +/** * @class ACE_DNode * * @brief Implementation element in a bilinked list. @@ -335,7 +335,7 @@ private: -/* +/** * @class ACE_Unbounded_Stack * * @brief Implement a generic LIFO abstract data type. @@ -382,26 +382,26 @@ public: // = Initialization, assignment, and termination methods. /// Initialize a new stack so that it is empty. Use user defined /// allocation strategy if specified. - /* + /** * Initialize an empty stack using the user specified allocation strategy * if provided. */ ACE_Unbounded_Stack (ACE_Allocator *the_allocator = 0); /// The copy constructor (performs initialization). - /* + /** * Initialize this stack to be an exact copy of {s}. */ ACE_Unbounded_Stack (const ACE_Unbounded_Stack &s); /// Assignment operator (performs assignment). - /* + /** * Perform a deep copy of the rhs into the lhs. */ void operator= (const ACE_Unbounded_Stack &s); /// Perform actions needed when stack goes out of scope. - /* + /** * Destroy the underlying list for the stack. */ ~ACE_Unbounded_Stack (void); @@ -410,7 +410,7 @@ public: ///Push an element onto the top of stack. - /* + /** * Place a new item on top of the stack. Returns -1 if the stack * is already full, 0 if the stack is not already full, and -1 if * failure occurs. @@ -418,7 +418,7 @@ public: int push (const T &new_item); ///Pop the top element of the stack. - /* + /** * Remove and return the top stack item. Returns -1 if the stack is * already empty, 0 if the stack is not already empty, and -1 if * failure occurs. @@ -426,7 +426,7 @@ public: int pop (T &item); ///Examine the top of the stack. - /* + /** * Return top stack item without removing it. Returns -1 if the * stack is already empty, 0 if the stack is not already empty, and * -1 if failure occurs. @@ -436,13 +436,13 @@ public: // = Check boundary conditions. /// Returns 1 if the container is empty, otherwise returns 0. - /* + /** * Constant time check to see if the stack is empty. */ int is_empty (void) const; /// Returns 1 if the container is full, otherwise returns 0. - /* + /** * Always resturns 0 since the stack is unbounded. */ int is_full (void) const; @@ -450,7 +450,7 @@ public: // = Auxiliary methods (not strictly part of the Stack ADT). ///Linear Insert of an item. - /* + /** * Insert {new_item} into the Stack at the head (but doesn't allow * duplicates). Returns -1 if failures occur, 1 if item is already * present (i.e., no duplicates are allowed), else 0. @@ -459,19 +459,19 @@ public: /// Remove @a item from the Stack. Returns 0 if it removes the item, /// -1 if it can't find the item, and -1 if a failure occurs. - /* + /** * Linear remove operation. */ int remove (const T &item); /// Finds if @a item occurs the set. Returns 0 if finds, else -1. - /* + /** * Linear find operation. */ int find (const T &item) const; /// The number of items in the stack. - /* + /** * Constant time access to the current stack size. */ size_t size (void) const; @@ -499,7 +499,7 @@ private: ACE_Allocator *allocator_; }; -/* +/** * @class ACE_Unbounded_Stack_Iterator * * @brief Implement an iterator over an unbounded Stack. @@ -546,7 +546,7 @@ private: template class ACE_Double_Linked_List; -/* +/** * @class ACE_Double_Linked_List_Iterator_Base * * @brief Implements a common base class for iterators for a double @@ -562,7 +562,7 @@ public: /// iteration has completed, otherwise 1 int next (T *&) const; - /* + /** * @deprecated Return the address of next (current) unvisited item in * the list. 0 if there is no more element available. */ @@ -575,7 +575,7 @@ public: /// to the node underneath the iterator. T & operator* (void) const ; - /* + /** * Retasks the iterator to iterate over a new * Double_Linked_List. This allows clients to reuse an iterator * without incurring the constructor overhead. If you do use this, @@ -600,7 +600,7 @@ protected: &iter); // = Iteration methods. - /* + /** * Move to the first element of the list. Returns 0 if the list is * empty, else 1. * @note the head of the ACE_DLList is actually a null entry, so the @@ -612,7 +612,7 @@ protected: /// empty, else 1. int go_tail (void); - /* + /** * Check if we reach the end of the list. Can also be used to get * the *current* element in the list. Return the address of the * current item if there are still elements left , 0 if we run out @@ -637,7 +637,7 @@ protected: const ACE_Double_Linked_List *dllist_; }; -/* +/** * @class ACE_Double_Linked_List_Iterator * * @brief Implements an iterator for a double linked list ADT @@ -657,7 +657,7 @@ public: // = Initialization method. ACE_Double_Linked_List_Iterator (const ACE_Double_Linked_List &); - /* + /** * Retasks the iterator to iterate over a new * Double_Linked_List. This allows clients to reuse an iterator * without incurring the constructor overhead. If you do use this, @@ -676,7 +676,7 @@ public: /// items in the list have been seen, else 1. int advance (void); - /* + /** * Advance the iterator while removing the original item from the * list. Return a pointer points to the original (removed) item. * If @a dont_remove equals false, this function behaves like {advance} @@ -705,7 +705,7 @@ public: ACE_ALLOC_HOOK_DECLARE; }; -/* +/** * @class ACE_Double_Linked_List_Reverse_Iterator * * @brief Implements a reverse iterator for a double linked list ADT @@ -726,7 +726,7 @@ public: // = Initialization method. ACE_Double_Linked_List_Reverse_Iterator (ACE_Double_Linked_List &); - /* + /** * Retasks the iterator to iterate over a new * Double_Linked_List. This allows clients to reuse an iterator * without incurring the constructor overhead. If you do use this, @@ -745,7 +745,7 @@ public: /// items in the list have been seen, else 1. int advance (void); - /* + /** * Advance the iterator while removing the original item from the * list. Return a pointer points to the original (removed) item. * If @a dont_remove equals false, this function behaves like {advance} @@ -775,7 +775,7 @@ public: }; -/* +/** * @class ACE_Double_Linked_List * * @brief A double-linked list implementation. @@ -834,28 +834,28 @@ public: // = Initialization and termination methods. /// construction. Use user specified allocation strategy /// if specified. - /* + /** * Initialize an empy list using the allocation strategy specified by the user. * If none is specified, then use default allocation strategy. */ ACE_Double_Linked_List (ACE_Allocator *the_allocator = 0); /// Copy constructor. - /* + /** * Create a double linked list that is a copy of the provided * parameter. */ ACE_Double_Linked_List (const ACE_Double_Linked_List &); /// Assignment operator. - /* + /** * Perform a deep copy of the provided list by first deleting the nodes of the * lhs and then copying the nodes of the rhs. */ void operator= (const ACE_Double_Linked_List &); /// Destructor. - /* + /** * Clean up the memory allocated for the nodes of the list. */ ~ACE_Double_Linked_List (void); @@ -863,13 +863,13 @@ public: // = Check boundary conditions. /// Returns 1 if the container is empty, 0 otherwise. - /* + /** * Performs constant time check to determine if the list is empty. */ int is_empty (void) const; /// The list is unbounded, so this always returns 0. - /* + /** * Since the list is unbounded, the method simply returns 0. */ int is_full (void) const; @@ -878,20 +878,20 @@ public: /// Adds @a new_item to the tail of the list. Returns the new item /// that was inserted. - /* + /** * Provides constant time insertion at the end of the list structure. */ T *insert_tail (T *new_item); /// Adds @a new_item to the head of the list.Returns the new item that /// was inserted. - /* + /** * Provides constant time insertion at the head of the list. */ T *insert_head (T *new_item); /// Removes the head of the list and returns a pointer to that item. - /* + /** * Removes and returns the first {item} in the list. Returns * internal node's address on success, 0 if the queue was empty. * This method will *not* free the internal node. @@ -899,7 +899,7 @@ public: T* delete_head (void); /// Removes the tail of the list and returns a pointer to that item. - /* + /** * Removes and returns the last {item} in the list. Returns * internal nodes's address on success, 0 if the queue was * empty. This method will *not* free the internal node. @@ -909,7 +909,7 @@ public: // = Additional utility methods. ///Empty the list. - /* + /** * Reset the {ACE_Double_Linked_List} to be empty. * Notice that since no one is interested in the items within, * This operation will delete all items. @@ -918,14 +918,14 @@ public: /// Get the {slot}th element in the set. Returns -1 if the element /// isn't in the range {0..{size} - 1}, else 0. - /* + /** * Iterates through the list to the desired index and assigns the provides pointer * with the address of the node occupying that index. */ int get (T *&item, size_t slot = 0); /// The number of items in the queue. - /* + /** * Constant time call to return the current size of the list. */ size_t size (void) const; @@ -934,7 +934,7 @@ public: void dump (void) const; /// Use DNode address directly. - /* + /** * Constant time removal of an item from the list using it's address. */ int remove (T *n); @@ -944,26 +944,26 @@ public: protected: /// Delete all the nodes in the list. - /* + /** * Removes and deallocates memory for all of the list nodes. */ void delete_nodes (void); /// Copy nodes from {rhs} into this list. - /* + /** * Copy the elements of the provided list by allocated new nodes and assigning * them with the proper data. */ void copy_nodes (const ACE_Double_Linked_List &rhs); /// Setup header pointer. Called after we create the head node in ctor. - /* + /** * Initialize the head pointer so that the list has a dummy node. */ void init_head (void); ///Constant time insert a new item into the list structure. - /* + /** * Insert a @a new_item into the list. It will be added before * or after @a old_item. Default is to insert the new item *after* * {head_}. Return 0 if succeed, -1 if error occured. @@ -973,7 +973,7 @@ protected: T *old_item = 0); ///Constant time delete an item from the list structure. - /* + /** * Remove @a item from the list. Return 0 if succeed, -1 otherwise. * Notice that this function checks if item is {head_} and either its * {next_} or {prev_} is NULL. The function resets item's {next_} and @@ -1011,7 +1011,7 @@ typedef ACE_Double_Linked_List ACE_DLList_Base; // replacing all references to the base classes with their actual // type. Matt Braun (6/15/99) -/* +/** * @class ACE_DLList * * @brief A double-linked list container class. @@ -1040,26 +1040,26 @@ public: /// Delegates to ACE_Double_Linked_List. void operator= (const ACE_DLList &l); - /* + /** * @name Queue-like insert and delete methods */ //@{ - /* + /** * Insert pointer for a new item at the tail of the list. * * @return Pointer to item inserted; 0 on error. */ T *insert_tail (T *new_item); - /* + /** * Insert pointer for a new item at the head of the list. * * @return Pointer to item inserted; 0 on error. */ T *insert_head (T *new_item); - /* + /** * Removes the item at the head of the list and returns its pointer. * * @return Pointer to previously inserted item; 0 if the list is empty, @@ -1067,7 +1067,7 @@ public: */ T *delete_head (void); - /* + /** * Removes the item at the tail of the list and returns its pointer. * * @return Pointer to previously inserted item; 0 if the list is empty, @@ -1076,7 +1076,7 @@ public: T *delete_tail (void); //@} - /* + /** * Provide random access to any item in the list. * * @param item Receives a pointer to the T object pointer held at the @@ -1094,7 +1094,7 @@ public: /// Delegates to ACE_Double_Linked_List. int remove (ACE_DLList_Node *n); - /* + /** * Constructor. * * @param the_allocator Allocator to use for allocating ACE_DLList_Node @@ -1106,7 +1106,7 @@ public: /// Delegates to ACE_Double_Linked_List. ACE_DLList (const ACE_DLList &l); - /* + /** * Deletes all ACE_DLList_Node objects in the list starting from the head. * No T objects referred to by the deleted ACE_DLList_Node objects are * modified or freed. If you desire all of the T objects in the list to @@ -1123,7 +1123,7 @@ public: ~ACE_DLList (void); }; -/* +/** * @class ACE_DLList_Iterator * * @brief A double-linked list container class iterator. @@ -1144,7 +1144,7 @@ public: // = Initialization method. ACE_DLList_Iterator (ACE_DLList &l); - /* + /** * Retasks the iterator to iterate over a new * Double_Linked_List. This allows clients to reuse an iterator * without incurring the constructor overhead. If you do use this, @@ -1164,14 +1164,14 @@ public: /// Returns 0 when all items have been seen, else 1. int next (T *&); - /* + /** * @deprecated Delegates to ACE_Double_Linked_List_Iterator, except that * whereas the Double_Linked_List version of next returns the node, this next * returns the contents of the node */ T *next (void) const; - /* + /** * Removes the current item (i.e., {next}) from the list. * Note that DLList iterators do not support {advance_and_remove} * directly (defined in its base class) and you will need to @@ -1186,7 +1186,7 @@ private: ACE_DLList *list_; }; -/* +/** * @class ACE_DLList_Reverse_Iterator * * @brief A double-linked list container class iterator. @@ -1207,7 +1207,7 @@ public: // = Initialization method. ACE_DLList_Reverse_Iterator (ACE_DLList &l); - /* + /** * Retasks the iterator to iterate over a new * Double_Linked_List. This allows clients to reuse an iterator * without incurring the constructor overhead. If you do use this, @@ -1247,7 +1247,7 @@ private: template class ACE_Fixed_Set; -/* +/** * @class ACE_Fixed_Set_Iterator_Base * * @brief Implements a common base class for iterators for a unordered set. @@ -1297,7 +1297,7 @@ protected: int next_i (T *&next_item); }; -/* +/** * @class ACE_Fixed_Set_Iterator * * @brief Iterates through an unordered set. @@ -1334,7 +1334,7 @@ public: ACE_ALLOC_HOOK_DECLARE; }; -/* +/** * @class ACE_Fixed_Set_Const_Iterator * * @brief Iterates through a const unordered set. @@ -1365,7 +1365,7 @@ public: ACE_ALLOC_HOOK_DECLARE; }; -/* +/** * @class ACE_Fixed_Set * * @brief Implement a simple unordered set of {T} with maximum {ACE_SIZE}. @@ -1412,25 +1412,25 @@ public: // = Initialization and termination methods. /// Default Constructor. - /* + /** * Creates an empy set */ ACE_Fixed_Set (void); /// Copy constructor. - /* + /** * Initializes a set to be a copy of the set parameter. */ ACE_Fixed_Set (const ACE_Fixed_Set &); /// Assignment operator. - /* + /** * Deep copy of one set to another. */ void operator= (const ACE_Fixed_Set &); /// Destructor. - /* + /** * Destroys a set. */ ~ACE_Fixed_Set (void); @@ -1438,13 +1438,13 @@ public: // = Check boundary conditions. /// Returns 1 if the container is empty, otherwise returns 0. - /* + /** * Performs constant time check to determine if a set is empty. */ int is_empty (void) const; /// Returns 1 if the container is full, otherwise returns 0. - /* + /** * Performs a constant time check to see if the set is full. */ int is_full (void) const; @@ -1452,7 +1452,7 @@ public: // = Classic unordered set operations. ///Linear time insertion of an item unique to the set. - /* + /** * Insert @a new_item into the set (doesn't allow duplicates). * Returns -1 if failures occur, 1 if item is already present, else * 0. @@ -1460,7 +1460,7 @@ public: int insert (const T &new_item); ///Linear time removal operation of an item. - /* + /** * Remove first occurrence of {item} from the set. Returns 0 if * it removes the item, -1 if it can't find the item, and -1 if a * failure occurs. Removal doesn't reclaim memory for the @a item. @@ -1468,13 +1468,13 @@ public: int remove (const T &item); /// Finds if @a item occurs in the set. Returns 0 if finds, else -1. - /* + /** * Performs a linear find operation for the specified @a item. */ int find (const T &item) const; /// Size of the set. - /* + /** * Returns the current size of the set. */ size_t size (void) const; @@ -1507,7 +1507,7 @@ private: template class ACE_Bounded_Set; -/* +/** * @class ACE_Bounded_Set_Iterator * * @brief Iterates through an unordered set. @@ -1554,7 +1554,7 @@ private: }; -/* +/** * @class ACE_Bounded_Set * * @brief Implement a simple unordered set of {T} with maximum @@ -1607,27 +1607,27 @@ public: // = Initialization and termination methods. /// Construct a Bounded_Set using the default size. - /* + /** * The default constructor initializes the Bounded_Set to a maximum size * specified by the DEFAULT_SIZE. */ ACE_Bounded_Set (void); /// Construct a Bounded_Set with the provided sizeB. - /* + /** * Initialize the Bounded_Set to have a maximum size equal to the size * parameter specified. */ ACE_Bounded_Set (size_t size); /// Construct a Bounded_Set that is a copy of the provides Bounded_Set. - /* + /** * Initialize the Bounded_Set to be a copy of the Bounded_Set parameter. */ ACE_Bounded_Set (const ACE_Bounded_Set &); /// Assignment operator. - /* + /** * The assignment will make a deep copy of the Bounded_Set provided. If the * rhs has more elements than the capacity of the lhs, then the lhs will be * deleted and reallocated to accomadate the larger number of elements. @@ -1635,7 +1635,7 @@ public: void operator= (const ACE_Bounded_Set &); /// Destructor - /* + /** * Clean up the underlying dynamically allocated memory that is used by * the Bounded_Set. */ @@ -1644,14 +1644,14 @@ public: // = Check boundary conditions. /// Returns 1 if the container is empty, otherwise returns 0. - /* + /** * A constant time check is performed to determine if the Bounded_Set is * empty. */ int is_empty (void) const; /// Returns 1 if the container is full, otherwise returns 0. - /* + /** * Performs a constant time check to determine if the Bounded_Set is at * capacity. */ @@ -1660,7 +1660,7 @@ public: // = Classic unordered set operations. ///Inserts a new element unique to the set. - /* + /** * Insert @a new_item into the set (doesn't allow duplicates) in linear * time. * Returns -1 if failures occur, 1 if item is already present, else @@ -1669,7 +1669,7 @@ public: int insert (const T &new_item); ///Finds the specified element and removes it from the set. - /* + /** * Remove first occurrence of @a item from the set. Returns 0 if it * removes the item, -1 if it can't find the item, and -1 if a * failure occurs. The linear remove operation does not reclaim the @@ -1678,14 +1678,14 @@ public: int remove (const T &item); /// Finds if @a item occurs in the set. Returns 0 if finds, else -1. - /* + /** * find preforms a linear search for {item} and returns 0 on successful * find and -1 otherwise. */ int find (const T &item) const; /// Size of the set. - /* + /** * Returns a size_t representing the current size of the set. */ size_t size (void) const; @@ -1716,7 +1716,7 @@ private: size_t max_size_; }; -/* +/** * @class ACE_Ordered_MultiSet_Iterator * * @brief Implement a bidirectional iterator over an ordered multiset. @@ -1777,7 +1777,7 @@ private: }; -/* +/** * @class ACE_Ordered_MultiSet * * @brief Implement a simple ordered multiset of {T} of unbounded size @@ -1825,26 +1825,26 @@ public: // = Initialization and termination methods. /// Constructor. Use user specified allocation strategy /// if specified. - /* + /** * Initialize the set using the allocation strategy specified. If none, use the * default strategy. */ ACE_Ordered_MultiSet (ACE_Allocator *the_allocator = 0); /// Copy constructor. - /* + /** * Initialize the set to be a copy of the provided set. */ ACE_Ordered_MultiSet (const ACE_Ordered_MultiSet &); /// Destructor. - /* + /** * Delete the nodes of the set. */ ~ACE_Ordered_MultiSet (void); /// Assignment operator. - /* + /** * Delete the nodes in lhs, and copy the nodes from the rhs. */ void operator= (const ACE_Ordered_MultiSet &); @@ -1852,13 +1852,13 @@ public: // = Check boundary conditions. /// Returns 1 if the container is empty, otherwise returns 0. - /* + /** * Constant time check to determine if the set is empty. */ int is_empty (void) const; /// Size of the set. - /* + /** * Constant time check to determine the size of the set. */ size_t size (void) const; @@ -1867,13 +1867,13 @@ public: /// Insert @a new_item into the ordered multiset. /// Returns -1 if failures occur, else 0. - /* + /** * Linear time, order preserving insert into the set beginning at the head. */ int insert (const T &new_item); ///Linear time insert beginning at the point specified by the provided iterator. - /* + /** * Insert @a new_item into the ordered multiset, starting its search at * the node pointed to by the iterator, and if insertion was successful, * updates the iterator to point to the newly inserted node. @@ -1883,13 +1883,13 @@ public: /// Remove first occurrence of @a item from the set. Returns 0 if /// it removes the item, -1 if it can't find the item. - /* + /** * Linear time search operation which removes the item from the set if found . */ int remove (const T &item); ///Linear find operation. - /* + /** * Finds first occurrence of @a item in the multiset, using the iterator's * current position as a hint to improve performance. If find succeeds, * it positions the iterator at that node and returns 0, or if it cannot @@ -1898,7 +1898,7 @@ public: int find (const T &item, ITERATOR &iter) const; /// Reset the ACE_Ordered_MultiSet to be empty. - /* + /** * Delete the nodes inside the set. */ void reset (void); @@ -1911,7 +1911,7 @@ public: private: - /* + /** * Insert @a item, starting its search at the position given, * and if successful updates the passed pointer to point to * the newly inserted item's node. @@ -1919,7 +1919,7 @@ private: int insert_from (const T &item, ACE_DNode *start_position, ACE_DNode **new_position); - /* + /** * Looks for first occurrence of @a item in the ordered set, using the * passed starting position as a hint: if there is such an instance, it * updates the new_position pointer to point to this node and returns 0; @@ -1954,7 +1954,7 @@ private: // **************************************************************** -/* +/** * @class ACE_Array * * @brief A dynamic array class. @@ -1996,7 +1996,7 @@ public: typedef ACE_Array_Iterator ITERATOR; /// Dynamically create an uninitialized array. - /* + /** * Initialize an empty array of the specified size using the provided * allocation strategy. */ @@ -2004,7 +2004,7 @@ public: ACE_Allocator* alloc = 0); /// Dynamically initialize the entire array to the {default_value}. - /* + /** * Initialize an array the given size placing the default_value in each index. */ ACE_Array (size_t size, @@ -2012,7 +2012,7 @@ public: ACE_Allocator* alloc = 0); ///Copy constructor. - /* + /** * The copy constructor performs initialization by making an exact * copy of the contents of parameter {s}, i.e., *this == s will * return true. @@ -2020,7 +2020,7 @@ public: ACE_Array (const ACE_Array &s); ///Assignment operator - /* + /** * Assignment operator performs an assignment by making an exact * copy of the contents of parameter {s}, i.e., *this == s will * return true. Note that if the {max_size_} of {array_} is >= than @@ -2033,7 +2033,7 @@ public: // = Compare operators ///Equality comparison operator. - /* + /** * Compare this array with {s} for equality. Two arrays are equal * if their {size}'s are equal and all the elements from 0 .. {size} * are equal. @@ -2041,7 +2041,7 @@ public: bool operator== (const ACE_Array &s) const; ///Inequality comparison operator. - /* + /** * Compare this array with {s} for inequality such that {*this} != * {s} is always the complement of the boolean return value of * {*this} == {s}. diff --git a/dep/ACE_wrappers/ace/Copy_Disabled.cpp b/dep/ACE_wrappers/ace/Copy_Disabled.cpp index f69b3b373..f3fdfb71b 100644 --- a/dep/ACE_wrappers/ace/Copy_Disabled.cpp +++ b/dep/ACE_wrappers/ace/Copy_Disabled.cpp @@ -1,4 +1,4 @@ -/* +/** * @file Copy_Disabled.cpp * * $Id: Copy_Disabled.cpp 91286 2010-08-05 09:04:31Z johnnyw $ diff --git a/dep/ACE_wrappers/ace/Copy_Disabled.h b/dep/ACE_wrappers/ace/Copy_Disabled.h index ed97fbe4b..f7b40e264 100644 --- a/dep/ACE_wrappers/ace/Copy_Disabled.h +++ b/dep/ACE_wrappers/ace/Copy_Disabled.h @@ -1,7 +1,7 @@ // -*- C++ -*- //=========================================================================== -/* +/** * @file Copy_Disabled.h * * $Id: Copy_Disabled.h 80826 2008-03-04 14:51:23Z wotte $ @@ -23,7 +23,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_Copy_Disabled * * @brief Helper class to disable copy construction and assignment diff --git a/dep/ACE_wrappers/ace/Countdown_Time.h b/dep/ACE_wrappers/ace/Countdown_Time.h index f7a7f4f88..b9c9a467f 100644 --- a/dep/ACE_wrappers/ace/Countdown_Time.h +++ b/dep/ACE_wrappers/ace/Countdown_Time.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Countdown_Time.h * * $Id: Countdown_Time.h 85365 2009-05-18 08:27:42Z johnnyw $ @@ -26,7 +26,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_Countdown_Time * * @brief Keeps track of the amount of elapsed time. diff --git a/dep/ACE_wrappers/ace/DEV.h b/dep/ACE_wrappers/ace/DEV.h index fa1b94840..d8ce8628e 100644 --- a/dep/ACE_wrappers/ace/DEV.h +++ b/dep/ACE_wrappers/ace/DEV.h @@ -1,7 +1,7 @@ /* -*- C++ -*- */ //============================================================================= -/* +/** * @file DEV.h * * $Id: DEV.h 91685 2010-09-09 09:35:14Z johnnyw $ @@ -25,7 +25,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_DEV * * @brief Defines the member functions for the base class of the @@ -43,7 +43,7 @@ public: /// Declare the dynamic allocation hooks. ACE_ALLOC_HOOK_DECLARE; - /* + /** * Disable signal @a signum * This is here to prevent Win32 from * disabling SPIPE using socket calls diff --git a/dep/ACE_wrappers/ace/DEV_Addr.h b/dep/ACE_wrappers/ace/DEV_Addr.h index d41c12733..49ec5023a 100644 --- a/dep/ACE_wrappers/ace/DEV_Addr.h +++ b/dep/ACE_wrappers/ace/DEV_Addr.h @@ -1,7 +1,7 @@ // -*- C++ -*- //========================================================================== -/* +/** * @file DEV_Addr.h * * $Id: DEV_Addr.h 80826 2008-03-04 14:51:23Z wotte $ @@ -25,7 +25,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_DEV_Addr * * @brief Defines device address family address format. diff --git a/dep/ACE_wrappers/ace/DEV_Connector.h b/dep/ACE_wrappers/ace/DEV_Connector.h index 172bc4db8..2f71f6088 100644 --- a/dep/ACE_wrappers/ace/DEV_Connector.h +++ b/dep/ACE_wrappers/ace/DEV_Connector.h @@ -1,7 +1,7 @@ /* -*- C++ -*- */ //============================================================================= -/* +/** * @file DEV_Connector.h * * $Id: DEV_Connector.h 82723 2008-09-16 09:35:44Z johnnyw $ @@ -25,7 +25,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_DEV_Connector * * @brief Defines an active connection factory for the ACE_DEV wrappers. @@ -36,7 +36,7 @@ public: /// Default constructor. ACE_DEV_Connector (void); - /* + /** * Actively connect and produce a @a new_io if things go well. * The @a remote_sap is the address that we are trying to connect * with. The @a timeout is the amount of time to wait to connect. @@ -61,7 +61,7 @@ public: int flags = O_RDWR, int perms = 0); - /* + /** * Actively connect and produce a @a new_io if things go well. * The @a remote_sap is the address that we are trying to connect * with. The @a timeout is the amount of time to wait to connect. diff --git a/dep/ACE_wrappers/ace/DEV_IO.h b/dep/ACE_wrappers/ace/DEV_IO.h index 8ef0e8a16..3b1c3deb3 100644 --- a/dep/ACE_wrappers/ace/DEV_IO.h +++ b/dep/ACE_wrappers/ace/DEV_IO.h @@ -1,7 +1,7 @@ /* -*- C++ -*- */ //============================================================================= -/* +/** * @file DEV_IO.h * * $Id: DEV_IO.h 80826 2008-03-04 14:51:23Z wotte $ @@ -32,7 +32,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL class ACE_Time_Value; -/* +/** * @class ACE_DEV_IO * * @brief Read/Write operations on Devices. @@ -56,7 +56,7 @@ public: ssize_t send_n (const void *buf, size_t n) const; - /* + /** * @name I/O operations * * Notes on common parameters: @@ -129,7 +129,7 @@ public: /// Recv iovecs via <::readv>. ssize_t recv (iovec iov[], size_t n) const; - /* + /** * Send N char *ptrs and int lengths. Note that the char *'s * precede the ints (basically, an varargs version of writev). The * count N is the *total* number of trailing arguments, *not* a @@ -137,7 +137,7 @@ public: */ ssize_t send (size_t n, ...) const; - /* + /** * This is an interface to ::readv, that doesn't use the struct * iovec explicitly. The ... can be passed as an arbitrary number * of (char *ptr, int len) tuples. However, the count N is the diff --git a/dep/ACE_wrappers/ace/DLL.h b/dep/ACE_wrappers/ace/DLL.h index a6bc71fba..20d333db8 100644 --- a/dep/ACE_wrappers/ace/DLL.h +++ b/dep/ACE_wrappers/ace/DLL.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file DLL.h * * $Id: DLL.h 91064 2010-07-12 10:11:24Z johnnyw $ @@ -27,7 +27,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL class ACE_DLL_Handle; -/* +/** * @class ACE_DLL * * @brief Provides an abstract interface for handling various DLL @@ -44,7 +44,7 @@ class ACE_Export ACE_DLL public: // = Initialization and termination methods. - /* + /** * Default constructor. By default, the close() operation on the * object will be invoked before it is destroyed. * @param close_handle_on_destruction Indicates whether or not the @@ -60,7 +60,7 @@ public: ACE_DLL& operator= (const ACE_DLL &rhs); - /* + /** * This constructor performs the actions of open() during construction. * @param dll_name The name or path of the DLL to load. * @param open_mode Flags to alter the actions taken when loading the DLL. @@ -86,7 +86,7 @@ public: /// Copy constructor. ACE_DLL (const ACE_DLL &); - /* + /** * This method opens and dynamically links a specified DLL. * @param dll_name The filename or path of the DLL to load. * If a filename is given to @c open(), the @c ACE::ldfind() is used @@ -123,14 +123,14 @@ public: /// Call to close the DLL object. int close (void); - /* + /** * Called when the DLL object is destroyed -- invokes close() if the * @a close_handle_on_destruction flag was set to non-zero in the * constructor or open() method. */ ~ACE_DLL (void); - /* + /** * Look up a named symbol in the DLL. DLL must be successfully opened * before calling symbol(). * @param symbol_name The symbol name to look up. @@ -147,7 +147,7 @@ public: /// returned by the OS. ACE_TCHAR *error (void) const; - /* + /** * Return the handle to the caller. If @a become_owner is non-0 then * caller assumes ownership of the handle and the ACE_DLL object * won't call close() when it goes out of scope, even if diff --git a/dep/ACE_wrappers/ace/DLL_Manager.h b/dep/ACE_wrappers/ace/DLL_Manager.h index fb09bae79..716e32995 100644 --- a/dep/ACE_wrappers/ace/DLL_Manager.h +++ b/dep/ACE_wrappers/ace/DLL_Manager.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file DLL_Manager.h * * $Id: DLL_Manager.h 91064 2010-07-12 10:11:24Z johnnyw $ @@ -34,7 +34,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_DLL_Handle * * @brief Provides an abstract interface for handling various DLL @@ -67,7 +67,7 @@ public: /// Returns the name of the shared library (without prefixes or suffixes). const ACE_TCHAR *dll_name () const; - /* + /** * This method opens and dynamically links @a dll_name. The default * mode is @c RTLD_LAZY, which loads identifier symbols but not the * symbols for functions, which are loaded dynamically on-demand. @@ -96,7 +96,7 @@ public: /// available, since missing functions in that case aren't really errors. void *symbol (const ACE_TCHAR *symbol_name, int ignore_errors = 0); - /* + /** * Return the handle to the caller. If @a become_owner is non-0 then * caller assumes ownership of the handle so we decrement the retcount. */ @@ -146,7 +146,7 @@ private: class ACE_Framework_Repository; -/* +/** * @class ACE_DLL_Manager * * @brief This class is a singleton and serves as a factory and diff --git a/dep/ACE_wrappers/ace/Date_Time.h b/dep/ACE_wrappers/ace/Date_Time.h index b93b85fee..a15d435ee 100644 --- a/dep/ACE_wrappers/ace/Date_Time.h +++ b/dep/ACE_wrappers/ace/Date_Time.h @@ -1,7 +1,7 @@ // -*- C++ -*- //========================================================================== -/* +/** * @file Date_Time.h * * $Id: Date_Time.h 80826 2008-03-04 14:51:23Z wotte $ @@ -25,7 +25,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL class ACE_Time_Value; -/* +/** * @class ACE_Date_Time * * @brief System independent representation of date and time. diff --git a/dep/ACE_wrappers/ace/Default_Constants.h b/dep/ACE_wrappers/ace/Default_Constants.h index 376d2f675..c21c776ea 100644 --- a/dep/ACE_wrappers/ace/Default_Constants.h +++ b/dep/ACE_wrappers/ace/Default_Constants.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Default_Constants.h * * $Id: Default_Constants.h 91688 2010-09-09 11:21:50Z johnnyw $ @@ -395,7 +395,7 @@ #define ACE_MAX_UDP_PACKET_SIZE 65536 #endif -/* +/** * @name Default values to control CDR classes memory allocation strategies */ //@{ @@ -424,7 +424,7 @@ //@} /// Control the zero-copy optimizations for octet sequences -/* +/** * Large octet sequences can be sent without any copies by chaining * them in the list of message blocks that represent a single CDR * stream. However, if the octet sequence is too small the zero copy diff --git a/dep/ACE_wrappers/ace/Dev_Poll_Reactor.h b/dep/ACE_wrappers/ace/Dev_Poll_Reactor.h index 2a6c800a1..00ae4c218 100644 --- a/dep/ACE_wrappers/ace/Dev_Poll_Reactor.h +++ b/dep/ACE_wrappers/ace/Dev_Poll_Reactor.h @@ -1,7 +1,7 @@ // -*- C++ -*- // ========================================================================= -/* +/** * @file Dev_Poll_Reactor.h * * $Id: Dev_Poll_Reactor.h 91462 2010-08-25 20:29:17Z shuston $ @@ -56,7 +56,7 @@ class ACE_Dev_Poll_Reactor; // --------------------------------------------------------------------- -/* +/** * @class ACE_Dev_Poll_Reactor_Notify * * @brief Event handler used for unblocking the ACE_Dev_Poll_Reactor @@ -73,7 +73,7 @@ public: /// Constructor ACE_Dev_Poll_Reactor_Notify (void); - /* + /** * @name Initialization and Termination Methods * * Methods called when initializing and terminating this event @@ -84,7 +84,7 @@ public: int disable_notify = 0); virtual int close (void); - /* + /** * Called by a thread when it wants to unblock the Reactor_Impl. * This wakes up the Reactor_Impl if currently blocked. Pass over * both the Event_Handler and the mask to allow the caller to @@ -100,7 +100,7 @@ public: /// Unimplemented method required by pure virtual method in abstract /// base class. - /* + /** * This method's interface is not very compatibile with this * Reactor's design. It's not clear why this method is pure virtual * either. @@ -129,7 +129,7 @@ public: /// unblock us. virtual int handle_input (ACE_HANDLE handle); - /* + /** * Set the maximum number of times that the handle_input method * will iterate and dispatch the ACE_Event_Handlers that are * passed in via the notify queue before breaking out of the event @@ -140,7 +140,7 @@ public: */ virtual void max_notify_iterations (int); - /* + /** * Get the maximum number of times that the handle_input method * will iterate and dispatch the ACE_Event_Handlers that are * passed in via the notify queue before breaking out of its event @@ -148,7 +148,7 @@ public: */ virtual int max_notify_iterations (void); - /* + /** * Purge any notifications pending in this reactor for the specified * ACE_Event_Handler object. Returns the number of notifications * purged. Returns -1 on error. @@ -170,21 +170,21 @@ public: protected: - /* + /** * Keep a back pointer to the ACE_Dev_Poll_Reactor. If this value * if NULL then the ACE_Dev_Poll_Reactor has been initialized with * disable_notify_pipe. */ ACE_Dev_Poll_Reactor *dp_reactor_; - /* + /** * Contains the ACE_HANDLE the ACE_Dev_Poll_Reactor is listening * on, as well as the ACE_HANDLE that threads wanting the attention * of the ACE_Dev_Poll_Reactor will write to. */ ACE_Pipe notification_pipe_; - /* + /** * Keeps track of the maximum number of times that the * ACE_Dev_Poll_Reactor_Notify::handle_input method will iterate and * dispatch the ACE_Event_Handlers that are passed in via the @@ -194,7 +194,7 @@ protected: int max_notify_iterations_; #if defined (ACE_HAS_REACTOR_NOTIFICATION_QUEUE) - /* + /** * @brief A user-space queue to store the notifications. * * The notification pipe has OS-specific size restrictions. That @@ -211,7 +211,7 @@ protected: // --------------------------------------------------------------------- -/* +/** * @class ACE_Dev_Poll_Reactor * * @brief A `/dev/poll' or `/dev/epoll' based Reactor implemenatation. @@ -255,7 +255,7 @@ typedef ACE_Reactor_Token_T ACE_Dev_Poll_Reactor_Token; class ACE_Export ACE_Dev_Poll_Reactor : public ACE_Reactor_Impl { - /* + /** * @struct Event_Tuple * * @brief Struct that collects event registration information for a handle. @@ -297,7 +297,7 @@ class ACE_Export ACE_Dev_Poll_Reactor : public ACE_Reactor_Impl // --------------------------------------------------------------------- - /* + /** * @class Handler_Repository * * @internal @@ -327,7 +327,7 @@ class ACE_Export ACE_Dev_Poll_Reactor : public ACE_Reactor_Impl /// Close down the repository. int close (void); - /* + /** * @name Repository Manipulation Operations * * Methods used to search and modify the handler repository. @@ -354,7 +354,7 @@ class ACE_Export ACE_Dev_Poll_Reactor : public ACE_Reactor_Impl //@} - /* + /** * @name Sanity Checking * * Methods used to prevent "out-of-range" errors when indexing the @@ -395,7 +395,7 @@ class ACE_Export ACE_Dev_Poll_Reactor : public ACE_Reactor_Impl int max_size_; /// The underlying array of event handlers. - /* + /** * The array of event handlers is directly indexed directly using * an @c ACE_HANDLE value. This is Unix-specific. */ @@ -406,7 +406,7 @@ class ACE_Export ACE_Dev_Poll_Reactor : public ACE_Reactor_Impl public: /// Initialize @c ACE_Dev_Poll_Reactor with the default size. - /* + /** * The default size for the @c ACE_Dev_Poll_Reactor is the maximum * number of open file descriptors for the process. */ @@ -418,7 +418,7 @@ public: int s_queue = ACE_DEV_POLL_TOKEN::FIFO); /// Initialize ACE_Dev_Poll_Reactor with size @a size. - /* + /** * @note On Unix platforms, the @a size parameter should be as large * as the maximum number of file descriptors allowed for a * given process. This is necessary since a file descriptor @@ -449,7 +449,7 @@ public: int disable_notify_pipe = 0, ACE_Reactor_Notify * = 0); - /* + /** * @param handle allows the reactor to check if the caller is * valid. * @@ -472,7 +472,7 @@ public: virtual int close (void); // = Event loop drivers. - /* + /** * Returns non-zero if there are I/O events "ready" for dispatching, * but does not actually dispatch the event handlers. By default, * don't block while checking this, i.e., "poll". @@ -483,7 +483,7 @@ public: virtual int work_pending ( const ACE_Time_Value &max_wait_time = ACE_Time_Value::zero); - /* + /** * This event loop driver blocks for up to @a max_wait_time before * returning. It will return earlier if events occur. Note that * @a max_wait_time can be 0, in which case this method blocks @@ -511,7 +511,7 @@ public: virtual int handle_events (ACE_Time_Value *max_wait_time = 0); virtual int alertable_handle_events (ACE_Time_Value *max_wait_time = 0); - /* + /** * This method is just like the one above, except the * @a max_wait_time value is a reference and can therefore never be * @c NULL. @@ -524,7 +524,7 @@ public: // = Event handling control. - /* + /** * @return The status of Reactor. If this function returns 0, the * reactor is actively handling events. If it returns * non-zero, @c handle_events() and @@ -532,7 +532,7 @@ public: */ virtual int deactivated (void); - /* + /** * Control whether the Reactor will handle any more incoming events * or not. If @a do_stop == 1, the Reactor will be disabled. By * default, a reactor is in active state and can be @@ -553,7 +553,7 @@ public: ACE_Event_Handler *event_handler, ACE_Reactor_Mask mask); - /* + /** * Register an @a event_handler that will be notified when * @a event_handle is signaled. @a mask specifies the network * events that the @a event_handler is interested in. @@ -569,7 +569,7 @@ public: ACE_Event_Handler *event_handler, ACE_Reactor_Mask mask); - /* + /** * Register @a new_sh to handle the signal @a signum using the * @a new_disp. Returns the @a old_sh that was previously * registered (if any), along with the @a old_disp of the signal @@ -588,7 +588,7 @@ public: ACE_Sig_Action *new_disp = 0); /// Removes @a event_handler. - /* + /** * @note The I/O handle will be obtained using @c get_handle() * method of @a event_handler . If @a mask == * @c ACE_Event_Handler::DONT_CALL then the @c handle_close() @@ -597,7 +597,7 @@ public: virtual int remove_handler (ACE_Event_Handler *event_handler, ACE_Reactor_Mask mask); - /* + /** * Removes @a handle. If @a mask == ACE_Event_Handler::DONT_CALL * then the method of the associated * is not invoked. @@ -605,7 +605,7 @@ public: virtual int remove_handler (ACE_HANDLE handle, ACE_Reactor_Mask mask); - /* + /** * Removes all handles in @a handle_set. If @a mask == * ACE_Event_Handler::DONT_CALL then the method of * the associated s is not invoked. @@ -613,7 +613,7 @@ public: virtual int remove_handler (const ACE_Handle_Set &handle_set, ACE_Reactor_Mask mask); - /* + /** * Remove the ACE_Event_Handler currently associated with @a signum. * Install the new disposition (if given) and return the previous * disposition (if desired by the caller). Returns 0 on success and @@ -666,7 +666,7 @@ public: // = Timer management. - /* + /** * Schedule an ACE_Event_Handler that will expire after an amount * of time. The return value of this method, a timer_id value, * uniquely identifies the event_handler in the ACE_Reactor's @@ -690,7 +690,7 @@ public: const ACE_Time_Value &delay, const ACE_Time_Value &interval = ACE_Time_Value::zero); - /* + /** * Resets the interval of the timer represented by @a timer_id to * @a interval, which is specified in relative time to the current * . If @a interval is equal to @@ -705,7 +705,7 @@ public: virtual int cancel_timer (ACE_Event_Handler *event_handler, int dont_call_handle_close = 1); - /* + /** * Cancel the single event handler that matches the @a timer_id value * (which was returned from the schedule method). If @a arg is * non-NULL then it will be set to point to the ``magic cookie'' @@ -740,7 +740,7 @@ public: // = Notification methods. - /* + /** * Notify @a event_handler of @a mask event. The ACE_Time_Value * indicates how long to blocking trying to notify. If @a timeout == * 0, the caller will block until action is possible, else will wait @@ -750,7 +750,7 @@ public: ACE_Reactor_Mask mask = ACE_Event_Handler::EXCEPT_MASK, ACE_Time_Value * = 0); - /* + /** * Set the maximum number of times that ACE_Reactor_Impl will * iterate and dispatch the ACE_Event_Handlers that are passed in * via the notify queue before breaking out of its @@ -762,7 +762,7 @@ public: */ virtual void max_notify_iterations (int); - /* + /** * Get the maximum number of times that the ACE_Reactor_Impl will * iterate and dispatch the ACE_Event_Handlers that are passed in * via the notify queue before breaking out of its @@ -770,7 +770,7 @@ public: */ virtual int max_notify_iterations (void); - /* + /** * Purge any notifications pending in this reactor for the specified * ACE_Event_Handler object. Returns the number of notifications * purged. Returns -1 on error. @@ -778,13 +778,13 @@ public: virtual int purge_pending_notifications (ACE_Event_Handler * = 0, ACE_Reactor_Mask = ACE_Event_Handler::ALL_EVENTS_MASK); - /* + /** * Return the Event_Handler associated with @a handle. Return 0 if * @a handle is not registered. */ virtual ACE_Event_Handler *find_handler (ACE_HANDLE handle); - /* + /** * Check to see if @a handle is associated with a valid Event_Handler * bound to @a mask. Return the @a event_handler associated with this * @c handler if @a event_handler != 0. @@ -793,7 +793,7 @@ public: ACE_Reactor_Mask mask, ACE_Event_Handler **event_handler = 0); - /* + /** * Check to see if @a signum is associated with a valid Event_Handler * bound to a signal. Return the @a event_handler associated with * this @c handler if @a event_handler != 0. @@ -816,7 +816,7 @@ public: virtual void wakeup_all_threads (void); /// Transfers ownership of Reactor_Impl to the new_owner. - /* + /** * @note There is no need to set the owner of the event loop for the * ACE_Dev_Poll_Reactor. Multiple threads may invoke the * event loop simulataneously. As such, this method is a @@ -825,7 +825,7 @@ public: virtual int owner (ACE_thread_t new_owner, ACE_thread_t *old_owner = 0); /// Return the ID of the "owner" thread. - /* + /** * @note There is no need to set the owner of the event loop for the * ACE_Dev_Poll_Reactor. Multiple threads may invoke the * event loop simulataneously. As such, this method is a @@ -837,7 +837,7 @@ public: virtual bool restart (void); /// Set a new value for restart and return the original value. - /* + /** * @param r If zero, then the event loop will not be automatically * restarted if the underlying poll is interrupted via the * INTR (interrupt) signal. @@ -847,18 +847,18 @@ public: virtual bool restart (bool r); /// Set position of the owner thread. - /* + /** * @note This is currently a no-op. */ virtual void requeue_position (int); /// Get position of the owner thread. - /* + /** * @note This is currently a no-op. */ virtual int requeue_position (void); - /* + /** * @name Low-level wait_set mask manipulation methods * * Low-level methods to manipulate the event/reactor mask associated @@ -871,7 +871,7 @@ public: /// GET/SET/ADD/CLR the dispatch mask "bit" bound with the /// event_handler and mask. - /* + /** * @return Old mask on success, -1 on error. */ virtual int mask_ops (ACE_Event_Handler *event_handler, @@ -880,7 +880,7 @@ public: /// GET/SET/ADD/CLR the dispatch MASK "bit" bound with the handle /// and mask. - /* + /** * @return Old mask on success, -1 on error. */ virtual int mask_ops (ACE_HANDLE handle, @@ -889,7 +889,7 @@ public: //@} - /* + /** * @name Low-level ready_set mask manipulation methods * * These methods are unimplemented. @@ -920,7 +920,7 @@ protected: class Token_Guard; /// Non-locking version of wait_pending(). - /* + /** * Returns non-zero if there are I/O events "ready" for dispatching, * but does not actually dispatch the event handlers. By default, * don't block while checking this, i.e., "poll". @@ -932,7 +932,7 @@ protected: /// Poll for events and return the number of event handlers that /// were dispatched. - /* + /** * This is a helper method called by all handle_events() methods. */ int handle_events_i (ACE_Time_Value *max_wait_time, Token_Guard &guard); @@ -942,7 +942,7 @@ protected: int (ACE_Event_Handler::*callback)(ACE_HANDLE), ACE_HANDLE handle); - /* + /** * Dispatch ACE_Event_Handlers for time events, I/O events, and * signal events. Returns the total number of ACE_Event_Handlers * that were dispatched or -1 if something goes wrong. @@ -984,7 +984,7 @@ protected: /// GET/SET/ADD/CLR the dispatch MASK "bit" bound with the handle /// and mask. This internal helper method acquires no lock. - /* + /** * @return Old mask on success, -1 on error. */ int mask_ops_i (ACE_HANDLE handle, @@ -1001,7 +1001,7 @@ protected: /// The file descriptor associated with the open `/dev/poll' or /// `/dev/epoll' device. - /* + /** * All interactions with the `/dev/poll' or `/dev/epoll' device are * done through this file descriptor. */ @@ -1036,7 +1036,7 @@ protected: struct pollfd *start_pfds_; /// The last element in the pollfd array plus one. - /* + /** * The loop that dispatches IO events stops when this->start_pfds == * this->end_pfds_. */ @@ -1080,7 +1080,7 @@ protected: /// Flag that determines if signals are masked during event /// dispatching. - /* + /** * If 0 then the Reactor will not mask the signals during the event * dispatching. This is useful for applications that do not * register any signal handlers and want to reduce the overhead @@ -1095,7 +1095,7 @@ protected: protected: - /* + /** * @class Token_Guard * * @brief A helper class that helps grabbing, releasing and waiting @@ -1151,7 +1151,7 @@ protected: }; -/* +/** * @class ACE_Dev_Poll_Handler_Guard * * @brief Class used to make event handler reference count @@ -1167,7 +1167,7 @@ class ACE_Dev_Poll_Handler_Guard public: /// Constructor - /* + /** * The constructor checks to see if @a eh is a reference-counted handler and * remember that for later. If @a eh is reference counted, its reference * count is incremented unless @a do_incr is false. @@ -1178,7 +1178,7 @@ public: ACE_Dev_Poll_Handler_Guard (ACE_Event_Handler *eh, bool do_incr = true); /// Destructor - /* + /** * The destructor decrements the reference count on the event * handler corresponding to the given handle. */ diff --git a/dep/ACE_wrappers/ace/Dirent.h b/dep/ACE_wrappers/ace/Dirent.h index 9d3bc6549..7735fb1f2 100644 --- a/dep/ACE_wrappers/ace/Dirent.h +++ b/dep/ACE_wrappers/ace/Dirent.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Dirent.h * * $Id: Dirent.h 91064 2010-07-12 10:11:24Z johnnyw $ @@ -27,7 +27,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_Dirent * * @brief Define a portable C++ directory-entry iterator based on the POSIX API. @@ -53,7 +53,7 @@ public: void close (void); // = Iterator methods. - /* + /** * Returns a pointer to a structure representing the directory entry * at the current position in the directory stream to which dirp * refers, and positions the directory stream at the next entry, @@ -72,7 +72,7 @@ public: */ ACE_DIRENT *read (void); - /* + /** * Has the equivalent functionality as @c read() except that an * @a entry and @a result buffer must be supplied by the caller to * store the result. @@ -85,7 +85,7 @@ public: /// stream. long tell (void); - /* + /** * Sets the position of the next @c read() operation on the * directory stream. The new position reverts to the position * associated with the directory stream at the time the @c tell() @@ -99,7 +99,7 @@ public: */ void seek (long loc); - /* + /** * Resets the position of the directory stream to the beginning of * the directory. It also causes the directory stream to refer to * the current state of the corresponding directory, as a call to diff --git a/dep/ACE_wrappers/ace/Dirent_Selector.h b/dep/ACE_wrappers/ace/Dirent_Selector.h index 0f8840751..20673c473 100644 --- a/dep/ACE_wrappers/ace/Dirent_Selector.h +++ b/dep/ACE_wrappers/ace/Dirent_Selector.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Dirent_Selector.h * * $Id: Dirent_Selector.h 80826 2008-03-04 14:51:23Z wotte $ @@ -27,7 +27,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_Dirent_Selector * * @brief Define a portable C++ directory-entry iterator based on the diff --git a/dep/ACE_wrappers/ace/Dump.h b/dep/ACE_wrappers/ace/Dump.h index 058410b35..4ccd64adb 100644 --- a/dep/ACE_wrappers/ace/Dump.h +++ b/dep/ACE_wrappers/ace/Dump.h @@ -1,7 +1,7 @@ /* -*- C++ -*- */ //============================================================================= -/* +/** * @file Dump.h * * $Id: Dump.h 80826 2008-03-04 14:51:23Z wotte $ @@ -60,7 +60,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_Dumpable * * @brief Base class that defines a uniform interface for all object @@ -86,7 +86,7 @@ private: const void *this_; }; -/* +/** * @class ACE_Dumpable_Ptr * * @brief A smart pointer stored in the in-memory object database @@ -105,7 +105,7 @@ private: const ACE_Dumpable *dumper_; }; -/* +/** * @class ACE_ODB * * @brief This is the object database (ODB) that keeps track of all diff --git a/dep/ACE_wrappers/ace/Dump_T.h b/dep/ACE_wrappers/ace/Dump_T.h index 9b5c4ca54..69d86718b 100644 --- a/dep/ACE_wrappers/ace/Dump_T.h +++ b/dep/ACE_wrappers/ace/Dump_T.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Dump_T.h * * $Id: Dump_T.h 91626 2010-09-07 10:59:20Z johnnyw $ @@ -23,7 +23,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_Dumpable_Adapter * * @brief diff --git a/dep/ACE_wrappers/ace/Dynamic.h b/dep/ACE_wrappers/ace/Dynamic.h index 2bbed247a..70dfcd8d9 100644 --- a/dep/ACE_wrappers/ace/Dynamic.h +++ b/dep/ACE_wrappers/ace/Dynamic.h @@ -1,7 +1,7 @@ // -*- C++ -*- //========================================================================== -/* +/** * @file Dynamic.h * * $Id: Dynamic.h 80826 2008-03-04 14:51:23Z wotte $ @@ -23,7 +23,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_Dynamic * * @brief Checks to see if an object was dynamically allocated. @@ -41,7 +41,7 @@ public: /// Destructor. ~ACE_Dynamic (void); - /* + /** * Sets a flag that indicates that the object was dynamically * created. This method is usually called in operator new and then * checked and reset in the constructor. @@ -57,7 +57,7 @@ public: static ACE_Dynamic *instance (void); private: - /* + /** * Flag that indicates that the object was dynamically created. This * method is usually called in operator new and then checked and * reset in the constructor. diff --git a/dep/ACE_wrappers/ace/Dynamic_Message_Strategy.h b/dep/ACE_wrappers/ace/Dynamic_Message_Strategy.h index a6b265450..090ad3a8f 100644 --- a/dep/ACE_wrappers/ace/Dynamic_Message_Strategy.h +++ b/dep/ACE_wrappers/ace/Dynamic_Message_Strategy.h @@ -1,7 +1,7 @@ // -*- C++ -*- //========================================================================== -/* +/** * @file Dynamic_Message_Strategy.h * * $Id: Dynamic_Message_Strategy.h 80826 2008-03-04 14:51:23Z wotte $ @@ -26,7 +26,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_Dynamic_Message_Strategy * * @brief An abstract base class which provides dynamic priority @@ -114,7 +114,7 @@ protected: /// This is a bit mask with all ones in the static bit field. unsigned long static_bit_field_mask_; - /* + /** * This is a left shift value to make room for static bit field: * this value should be the logarithm base 2 of * (static_bit_field_mask_ + 1). @@ -137,7 +137,7 @@ protected: ACE_Time_Value pending_shift_; }; -/* +/** * @class ACE_Deadline_Message_Strategy * * @brief Deadline based message priority strategy. @@ -171,7 +171,7 @@ public: virtual void dump (void) const; }; -/* +/** * @class ACE_Laxity_Message_Strategy * * @brief Laxity based message priority strategy. diff --git a/dep/ACE_wrappers/ace/Dynamic_Service.h b/dep/ACE_wrappers/ace/Dynamic_Service.h index 50749aea0..b90095c76 100644 --- a/dep/ACE_wrappers/ace/Dynamic_Service.h +++ b/dep/ACE_wrappers/ace/Dynamic_Service.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Dynamic_Service.h * * $Id: Dynamic_Service.h 80826 2008-03-04 14:51:23Z wotte $ @@ -29,7 +29,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL class ACE_Service_Object; -/* +/** * @class ACE_Dynamic_Service * * @brief Provides a general interface to retrieve arbitrary objects diff --git a/dep/ACE_wrappers/ace/Dynamic_Service_Base.h b/dep/ACE_wrappers/ace/Dynamic_Service_Base.h index 2a8874ac2..31fdadaa1 100644 --- a/dep/ACE_wrappers/ace/Dynamic_Service_Base.h +++ b/dep/ACE_wrappers/ace/Dynamic_Service_Base.h @@ -1,7 +1,7 @@ /* -*- C++ -*- */ //============================================================================= -/* +/** * @file Dynamic_Service_Base.h * * $Id: Dynamic_Service_Base.h 89454 2010-03-11 09:35:25Z johnnyw $ @@ -27,7 +27,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL class ACE_Service_Gestalt; class ACE_Service_Type; -/* +/** * @class ACE_Dynamic_Service_Base * * @brief Base class for all ACE_Dynamic_Service instantiations. diff --git a/dep/ACE_wrappers/ace/Dynamic_Service_Dependency.h b/dep/ACE_wrappers/ace/Dynamic_Service_Dependency.h index b0358d17f..0f187d003 100644 --- a/dep/ACE_wrappers/ace/Dynamic_Service_Dependency.h +++ b/dep/ACE_wrappers/ace/Dynamic_Service_Dependency.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Dynamic_Service_Dependency.h * * $Id: Dynamic_Service_Dependency.h 80826 2008-03-04 14:51:23Z wotte $ @@ -26,7 +26,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_Dynamic_Service_Dependency * * @brief Provides a way to declare dependency on specific service, diff --git a/dep/ACE_wrappers/ace/ETCL/ETCL_Constraint.h b/dep/ACE_wrappers/ace/ETCL/ETCL_Constraint.h index 0f8140a6f..b2258978a 100644 --- a/dep/ACE_wrappers/ace/ETCL/ETCL_Constraint.h +++ b/dep/ACE_wrappers/ace/ETCL/ETCL_Constraint.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file ETCL_Constraint.h * * $Id: ETCL_Constraint.h 81620 2008-05-06 12:39:57Z parsons $ diff --git a/dep/ACE_wrappers/ace/ETCL/ETCL_Constraint_Visitor.cpp b/dep/ACE_wrappers/ace/ETCL/ETCL_Constraint_Visitor.cpp index 78ef4364a..66dbd8d09 100644 --- a/dep/ACE_wrappers/ace/ETCL/ETCL_Constraint_Visitor.cpp +++ b/dep/ACE_wrappers/ace/ETCL/ETCL_Constraint_Visitor.cpp @@ -1,6 +1,6 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file ETCL_Constraint_Visitor.cpp * * $Id: ETCL_Constraint_Visitor.cpp 81653 2008-05-08 21:08:49Z parsons $ diff --git a/dep/ACE_wrappers/ace/ETCL/ETCL_Constraint_Visitor.h b/dep/ACE_wrappers/ace/ETCL/ETCL_Constraint_Visitor.h index 2a982a96a..2337f60e8 100644 --- a/dep/ACE_wrappers/ace/ETCL/ETCL_Constraint_Visitor.h +++ b/dep/ACE_wrappers/ace/ETCL/ETCL_Constraint_Visitor.h @@ -1,6 +1,6 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file ETCL_Constraint_Visitor.h * * $Id: ETCL_Constraint_Visitor.h 81653 2008-05-08 21:08:49Z parsons $ diff --git a/dep/ACE_wrappers/ace/ETCL/ETCL_Interpreter.h b/dep/ACE_wrappers/ace/ETCL/ETCL_Interpreter.h index cbe8fb07d..8553c9b33 100644 --- a/dep/ACE_wrappers/ace/ETCL/ETCL_Interpreter.h +++ b/dep/ACE_wrappers/ace/ETCL/ETCL_Interpreter.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file ETCL_Interpreter.h * * $Id: ETCL_Interpreter.h 82434 2008-07-28 11:40:36Z johnnyw $ @@ -35,7 +35,7 @@ ACE_END_VERSIONED_NAMESPACE_DECL ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ETCL_Interpreter * * @brief ETCL_Interpreter is the superclass for all ETCL interpreters. @@ -76,7 +76,7 @@ extern int yylex (void); #undef YY_INPUT #define YY_INPUT(b, r, ms) (r = Lex_String_Input::copy_into(b, ms)) -/* +/** * @class Lex_String_Input * * @brief Have Lex read from a string and not from stdin. Essentially, diff --git a/dep/ACE_wrappers/ace/Encoding_Converter.h b/dep/ACE_wrappers/ace/Encoding_Converter.h index 1cd1994ec..34d22fa29 100644 --- a/dep/ACE_wrappers/ace/Encoding_Converter.h +++ b/dep/ACE_wrappers/ace/Encoding_Converter.h @@ -1,7 +1,7 @@ // -*- C++ -*- //========================================================================= -/* +/** * @file Encoding_Converter.h * * $Id: Encoding_Converter.h 80826 2008-03-04 14:51:23Z wotte $ diff --git a/dep/ACE_wrappers/ace/Encoding_Converter_Factory.h b/dep/ACE_wrappers/ace/Encoding_Converter_Factory.h index ce30b4c47..1441c690b 100644 --- a/dep/ACE_wrappers/ace/Encoding_Converter_Factory.h +++ b/dep/ACE_wrappers/ace/Encoding_Converter_Factory.h @@ -1,7 +1,7 @@ // -*- C++ -*- //========================================================================= -/* +/** * @file Encoding_Converter_Factory.h * * $Id: Encoding_Converter_Factory.h 80826 2008-03-04 14:51:23Z wotte $ diff --git a/dep/ACE_wrappers/ace/Env_Value_T.h b/dep/ACE_wrappers/ace/Env_Value_T.h index bb77918cc..c8b459b26 100644 --- a/dep/ACE_wrappers/ace/Env_Value_T.h +++ b/dep/ACE_wrappers/ace/Env_Value_T.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Env_Value_T.h * * $Id: Env_Value_T.h 91626 2010-09-07 10:59:20Z johnnyw $ @@ -30,7 +30,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_Env_Value * * @brief Environment Variable Value @@ -42,7 +42,7 @@ template class ACE_Env_Value : private ACE_Copy_Disabled { public: - /* + /** * Default constructor which isn't bound to a specific environment * variable name or a default value. Before being useful it must * 'd. diff --git a/dep/ACE_wrappers/ace/Event.h b/dep/ACE_wrappers/ace/Event.h index ed7dab86f..887b504d8 100644 --- a/dep/ACE_wrappers/ace/Event.h +++ b/dep/ACE_wrappers/ace/Event.h @@ -1,7 +1,7 @@ // -*- C++ -*- //========================================================================== -/* +/** * @file Event.h * * $Id: Event.h 80826 2008-03-04 14:51:23Z wotte $ @@ -26,7 +26,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_Event * * @brief A wrapper around the Win32 event locking mechanism. @@ -50,7 +50,7 @@ public: /// Implicitly destroy the event variable. ~ACE_Event (void); - /* + /** * Explicitly destroy the event variable. Note that only one thread * should call this method since it doesn't protect against race * conditions. @@ -60,7 +60,7 @@ public: /// Underlying handle to event. ACE_event_t handle (void) const; - /* + /** * Set the underlying handle to event. Note that this method assumes * ownership of the and will close it down in . If * you want the to stay open when is called make @@ -70,7 +70,7 @@ public: */ void handle (ACE_event_t new_handle); - /* + /** * if MANUAL reset * sleep till the event becomes signaled * event remains signaled after wait() completes. @@ -86,7 +86,7 @@ public: int wait (const ACE_Time_Value *abstime, int use_absolute_time = 1); - /* + /** * if MANUAL reset * wake up all waiting threads * set to signaled state @@ -97,7 +97,7 @@ public: */ int signal (void); - /* + /** * if MANUAL reset * wakeup all waiting threads and * reset event diff --git a/dep/ACE_wrappers/ace/Event_Handler.h b/dep/ACE_wrappers/ace/Event_Handler.h index 8509d1188..fe5d1de74 100644 --- a/dep/ACE_wrappers/ace/Event_Handler.h +++ b/dep/ACE_wrappers/ace/Event_Handler.h @@ -1,7 +1,7 @@ /* -*- C++ -*- */ //========================================================================== -/* +/** * @file Event_Handler.h * * $Id: Event_Handler.h 92345 2010-10-24 12:39:33Z johnnyw $ @@ -35,7 +35,7 @@ class ACE_Process; typedef unsigned long ACE_Reactor_Mask; -/* +/** * @class ACE_Event_Handler * * @brief @@ -113,7 +113,7 @@ public: /// Called when an exceptional events occur (e.g., SIGURG). virtual int handle_exception (ACE_HANDLE fd = ACE_INVALID_HANDLE); - /* + /** * Called when timer expires. @a current_time represents the current * time that the Event_Handler was selected for timeout * dispatching and @a act is the asynchronous completion token that @@ -147,7 +147,7 @@ public: ACE_APPLICATION_RESUMES_HANDLER }; - /* + /** * Called to figure out whether the handler needs to resumed by the * reactor or the application can take care of it. The default * value of 0 would be returned which would allow the reactor to @@ -173,7 +173,7 @@ public: /// Get only the reactor's timer related interface. virtual ACE_Reactor_Timer_Interface *reactor_timer_interface (void) const; - /* + /** * Used to read from non-socket ACE_HANDLEs in our own thread to * work around Win32 limitations that don't allow us to 'able on * Win32. @@ -203,7 +203,7 @@ public: typedef long Reference_Count; /// Increment reference count on the handler. - /* + /** * This method is called when the handler is registered with the * Reactor and when the Reactor makes an upcall on the handler. * Reference count is 1 when the handler is created. @@ -213,7 +213,7 @@ public: virtual Reference_Count add_reference (void); /// Decrement reference count on the handler. - /* + /** * This method is called when the handler is removed from the * Reactor and when an upcall made on the handler by the Reactor * completes. Handler is deleted when the reference count reaches @@ -223,7 +223,7 @@ public: */ virtual Reference_Count remove_reference (void); - /* + /** * @class Policy * * @brief Base class for all handler policies. @@ -237,7 +237,7 @@ public: virtual ~Policy (void); }; - /* + /** * @class Reference_Counting_Policy * * @brief @@ -306,7 +306,7 @@ private: Reference_Counting_Policy reference_counting_policy_; }; -/* +/** * @class ACE_Event_Handler_var * * @brief Auto pointer like class for Event Handlers. @@ -355,7 +355,7 @@ private: ACE_Event_Handler *ptr_; }; -/* +/** * @class ACE_Notification_Buffer * * @brief Simple wrapper for passing s and diff --git a/dep/ACE_wrappers/ace/Event_Handler_T.h b/dep/ACE_wrappers/ace/Event_Handler_T.h index d256acf6a..61ea28a17 100644 --- a/dep/ACE_wrappers/ace/Event_Handler_T.h +++ b/dep/ACE_wrappers/ace/Event_Handler_T.h @@ -1,7 +1,7 @@ /* -*- C++ -*- */ //============================================================================= -/* +/** * @file Event_Handler_T.h * * $Id: Event_Handler_T.h 91626 2010-09-07 10:59:20Z johnnyw $ @@ -22,7 +22,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_Event_Handler_T * * @brief Enable a class that doesn't inherit from the diff --git a/dep/ACE_wrappers/ace/FIFO.h b/dep/ACE_wrappers/ace/FIFO.h index 8823a9e40..f4836368d 100644 --- a/dep/ACE_wrappers/ace/FIFO.h +++ b/dep/ACE_wrappers/ace/FIFO.h @@ -1,7 +1,7 @@ // -*- C++ -*- //========================================================================== -/* +/** * @file FIFO.h * * $Id: FIFO.h 91574 2010-08-30 16:52:24Z shuston $ @@ -26,7 +26,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_FIFO * * @brief Abstract base class for UNIX FIFOs @@ -39,7 +39,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL class ACE_Export ACE_FIFO : public ACE_IPC_SAP { public: - /* + /** * Open up the named pipe (FIFO) on the @a rendezvous point in accordance * with the @a flags. * @@ -70,7 +70,7 @@ public: ACE_ALLOC_HOOK_DECLARE; protected: - /* + /** * Protected constructors ensure this class cannot be used directly. * User code must use ACE_FIFO_Send and/or ACE_FIFO_Recv. */ diff --git a/dep/ACE_wrappers/ace/FIFO_Recv.h b/dep/ACE_wrappers/ace/FIFO_Recv.h index 337c323cc..2b6b2f25c 100644 --- a/dep/ACE_wrappers/ace/FIFO_Recv.h +++ b/dep/ACE_wrappers/ace/FIFO_Recv.h @@ -1,7 +1,7 @@ // -*- C++ -*- //========================================================================== -/* +/** * @file FIFO_Recv.h * * $Id: FIFO_Recv.h 91574 2010-08-30 16:52:24Z shuston $ @@ -27,7 +27,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_FIFO_Recv * * @brief Receiver side of the bytestream C++ wrapper for UNIX diff --git a/dep/ACE_wrappers/ace/FIFO_Recv_Msg.h b/dep/ACE_wrappers/ace/FIFO_Recv_Msg.h index 40f5f1eef..6b691e97f 100644 --- a/dep/ACE_wrappers/ace/FIFO_Recv_Msg.h +++ b/dep/ACE_wrappers/ace/FIFO_Recv_Msg.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file FIFO_Recv_Msg.h * * $Id: FIFO_Recv_Msg.h 84480 2009-02-16 18:58:16Z johnnyw $ @@ -26,7 +26,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL // Forward decls class ACE_Str_Buf; -/* +/** * @class ACE_FIFO_Recv_Msg * * @brief Receiver side for the record oriented C++ wrapper for UNIX FIFOs. @@ -64,7 +64,7 @@ public: LPSECURITY_ATTRIBUTES sa = 0); /// Receive a message based on attributes in an ACE_Str_Buf. - /* + /** * @param msg Reference to an ACE_Str_Buf whose @c buf member points * to the memory to receive the data and @c maxlen member * contains the maximum number of bytes to receive. @@ -90,7 +90,7 @@ public: ssize_t recv (ACE_Str_Buf &msg); /// Receive a message based on buffer pointer and maximum size. - /* + /** * @param buf Pointer to the memory to receive the data. * @param len The maximum number of bytes to receive. * diff --git a/dep/ACE_wrappers/ace/FIFO_Send.h b/dep/ACE_wrappers/ace/FIFO_Send.h index 9e7892fca..c6bf60023 100644 --- a/dep/ACE_wrappers/ace/FIFO_Send.h +++ b/dep/ACE_wrappers/ace/FIFO_Send.h @@ -1,7 +1,7 @@ // -*- C++ -*- //========================================================================== -/* +/** * @file FIFO_Send.h * * $Id: FIFO_Send.h 91574 2010-08-30 16:52:24Z shuston $ @@ -27,7 +27,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_FIFO_Send * * @brief Sender side for the bytestream C++ wrapper for UNIX FIFOs diff --git a/dep/ACE_wrappers/ace/FIFO_Send_Msg.h b/dep/ACE_wrappers/ace/FIFO_Send_Msg.h index 6a14a92fd..434ae1081 100644 --- a/dep/ACE_wrappers/ace/FIFO_Send_Msg.h +++ b/dep/ACE_wrappers/ace/FIFO_Send_Msg.h @@ -1,7 +1,7 @@ /* -*- C++ -*- */ //============================================================================= -/* +/** * @file FIFO_Send_Msg.h * * $Id: FIFO_Send_Msg.h 84480 2009-02-16 18:58:16Z johnnyw $ @@ -30,7 +30,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL // Forward Decls class ACE_Str_Buf; -/* +/** * @class ACE_FIFO_Send_Msg * * @brief Sender side for the Record oriented C++ wrapper for UNIX diff --git a/dep/ACE_wrappers/ace/FILE.h b/dep/ACE_wrappers/ace/FILE.h index 032091396..b0cf71264 100644 --- a/dep/ACE_wrappers/ace/FILE.h +++ b/dep/ACE_wrappers/ace/FILE.h @@ -1,7 +1,7 @@ /* -*- C++ -*- */ //============================================================================= -/* +/** * @file FILE.h * * $Id: FILE.h 91685 2010-09-09 09:35:14Z johnnyw $ @@ -24,7 +24,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_FILE_Info * * @brief Abstracts basic OS FILE information. @@ -42,7 +42,7 @@ public: ACE_OFF_T size_; }; -/* +/** * @class ACE_FILE * * @brief Defines the core methods of the ACE_FILE abstraction. @@ -70,7 +70,7 @@ public: /// Set filesize to length byte. int truncate (ACE_OFF_T length); - /* + /** * Sets the file pointer as follows: * o If @ whence is @c SEEK_SET, the pointer is set to @a offset * bytes. @@ -87,7 +87,7 @@ public: /// Return an offset for the file handle. ACE_OFF_T tell (void); - /* + /** * Disable signal @a signum * This is here to prevent Win32 from * disabling SPIPE using socket calls diff --git a/dep/ACE_wrappers/ace/FILE_Addr.h b/dep/ACE_wrappers/ace/FILE_Addr.h index 7c76d857b..432275b96 100644 --- a/dep/ACE_wrappers/ace/FILE_Addr.h +++ b/dep/ACE_wrappers/ace/FILE_Addr.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file FILE_Addr.h * * $Id: FILE_Addr.h 80826 2008-03-04 14:51:23Z wotte $ @@ -25,7 +25,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_FILE_Addr * * @brief Defines the FILE address family address format. diff --git a/dep/ACE_wrappers/ace/FILE_Connector.h b/dep/ACE_wrappers/ace/FILE_Connector.h index 63f32aaf3..624ab3d6a 100644 --- a/dep/ACE_wrappers/ace/FILE_Connector.h +++ b/dep/ACE_wrappers/ace/FILE_Connector.h @@ -1,7 +1,7 @@ /* -*- C++ -*- */ //============================================================================= -/* +/** * @file FILE_Connector.h * * $Id: FILE_Connector.h 82723 2008-09-16 09:35:44Z johnnyw $ @@ -24,7 +24,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_FILE_Connector * * @brief Defines an active connection factory for the ACE_FILE wrappers. @@ -43,7 +43,7 @@ public: /// Default constructor. ACE_FILE_Connector (void); - /* + /** * Actively ``connect'' and produce a @a new_io ACE_FILE_IO object * if things go well. The @a remote_sap is the file that we are * trying to create/open. If it's the default value of @@ -65,7 +65,7 @@ public: int flags = O_RDWR | O_CREAT, int perms = ACE_DEFAULT_FILE_PERMS); - /* + /** * Actively ``connect'' and produce a @a new_io object * if things go well. The @a remote_sap is the file that we are * trying to create/open. If it's the default value of diff --git a/dep/ACE_wrappers/ace/FILE_IO.h b/dep/ACE_wrappers/ace/FILE_IO.h index b2de69692..4540db830 100644 --- a/dep/ACE_wrappers/ace/FILE_IO.h +++ b/dep/ACE_wrappers/ace/FILE_IO.h @@ -1,7 +1,7 @@ /* -*- C++ -*- */ //============================================================================= -/* +/** * @file FILE_IO.h * * $Id: FILE_IO.h 92298 2010-10-21 11:15:17Z johnnyw $ @@ -36,7 +36,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL class ACE_Message_Block; class ACE_Time_Value; -/* +/** * @class ACE_FILE_IO * * @brief Read/Write operations on Files @@ -100,7 +100,7 @@ public: /// Recv iovecs via <::readv>. ssize_t recv (iovec iov[], int n) const; - /* + /** * Send N char *ptrs and int lengths. Note that the char *'s * precede the ints (basically, an varargs version of writev). The * count N is the *total* number of trailing arguments, *not* a @@ -108,7 +108,7 @@ public: */ ssize_t send (size_t n, ...) const; - /* + /** * This is an interface to ::readv, that doesn't use the struct * iovec explicitly. The ... can be passed as an arbitrary number * of (char *ptr, int len) tuples. However, the count N is the @@ -131,7 +131,7 @@ public: ssize_t sendv (const iovec iov[], int n) const; - /* + /** * Allows a client to read from a file without having to provide a * buffer to read. This method determines how much data is in the * file, allocates a buffer of this size, reads in the data, and diff --git a/dep/ACE_wrappers/ace/File_Lock.h b/dep/ACE_wrappers/ace/File_Lock.h index 05c4a2d65..4cd58fcd1 100644 --- a/dep/ACE_wrappers/ace/File_Lock.h +++ b/dep/ACE_wrappers/ace/File_Lock.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file File_Lock.h * * $Id: File_Lock.h 91064 2010-07-12 10:11:24Z johnnyw $ @@ -24,7 +24,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_File_Lock * * @brief A wrapper around the UNIX file locking mechanism. @@ -35,7 +35,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL class ACE_Export ACE_File_Lock { public: - /* + /** * Set the of the File_Lock to @a handle. Note that this * constructor assumes ownership of the @a handle and will close it * down in . If you want the @a handle to stay open when @@ -67,14 +67,14 @@ public: /// . If @a unlink_file is true then we unlink the file. int remove (bool unlink_file = true); - /* + /** * Note, for interface uniformity with other synchronization * wrappers we include the acquire() method. This is implemented as * a write-lock to be on the safe-side... */ int acquire (short whence = 0, ACE_OFF_T start = 0, ACE_OFF_T len = 1); - /* + /** * Note, for interface uniformity with other synchronization * wrappers we include the method. This is implemented * as a write-lock to be on the safe-side... Returns -1 on failure. @@ -90,14 +90,14 @@ public: /// writer hold the lock. int acquire_write (short whence = 0, ACE_OFF_T start = 0, ACE_OFF_T len = 1); - /* + /** * Conditionally acquire a write lock (i.e., won't block). Returns * -1 on failure. If we "failed" because someone else already had * the lock, @c errno is set to @c EBUSY. */ int tryacquire_write (short whence = 0, ACE_OFF_T start = 0, ACE_OFF_T len = 1); - /* + /** * Conditionally upgrade to a write lock (i.e., won't block). Returns * -1 on failure. If we "failed" because someone else already had * the lock, @c errno is set to @c EBUSY. @@ -106,14 +106,14 @@ public: ACE_OFF_T start = 0, ACE_OFF_T len = 1); - /* + /** * Acquire a read lock, but block if a writer hold the lock. * Returns -1 on failure. If we "failed" because someone else * already had the lock, @c errno is set to @c EBUSY. */ int acquire_read (short whence = 0, ACE_OFF_T start = 0, ACE_OFF_T len = 1); - /* + /** * Conditionally acquire a read lock (i.e., won't block). Returns * -1 on failure. If we "failed" because someone else already had * the lock, @c errno is set to @c EBUSY. @@ -123,7 +123,7 @@ public: /// Get underlying ACE_HANDLE for the file. ACE_HANDLE get_handle (void) const; - /* + /** * Set underlying ACE_HANDLE. Note that this method assumes * ownership of the @a handle and will close it down in . If * you want the @a handle to stay open when is called make diff --git a/dep/ACE_wrappers/ace/Filecache.h b/dep/ACE_wrappers/ace/Filecache.h index 7afd92068..9165a70fc 100644 --- a/dep/ACE_wrappers/ace/Filecache.h +++ b/dep/ACE_wrappers/ace/Filecache.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Filecache.h * * $Id: Filecache.h 91066 2010-07-12 11:05:04Z johnnyw $ @@ -38,7 +38,7 @@ enum ACE_Filecache_Flag class ACE_Filecache_Object; -/* +/** * @class ACE_Filecache_Handle * * @brief @@ -96,7 +96,7 @@ public: ACE_Filecache_Handle (const ACE_TCHAR *filename, ACE_Filecache_Flag mapit = ACE_MAPIT); - /* + /** * Create new entry, and acquire it. Presence of SIZE assumes the * file is being opened for writing. If SIZE is zero, assumes the * file is to be removed from the cache. @@ -155,7 +155,7 @@ typedef ACE_Hash_Map_Manager_Ex ACE_Filecache_Hash_Entry; -/* +/** * @class ACE_Filecache * * @brief @@ -230,7 +230,7 @@ private: ACE_SYNCH_RW_MUTEX file_lock_[ACE_DEFAULT_VIRTUAL_FILESYSTEM_TABLE_SIZE]; }; -/* +/** * @class ACE_Filecache_Object * * @brief diff --git a/dep/ACE_wrappers/ace/FlReactor/FlReactor.h b/dep/ACE_wrappers/ace/FlReactor/FlReactor.h index a4a03c4bd..6f67de88c 100644 --- a/dep/ACE_wrappers/ace/FlReactor/FlReactor.h +++ b/dep/ACE_wrappers/ace/FlReactor/FlReactor.h @@ -1,7 +1,7 @@ /* -*- C++ -*- */ //============================================================================= -/* +/** * @file FlReactor.h * * $Id: FlReactor.h 82723 2008-09-16 09:35:44Z johnnyw $ @@ -30,7 +30,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_FlReactor * * @brief A Reactor implementation that uses the Fast-Light (FL) toolkit diff --git a/dep/ACE_wrappers/ace/Flag_Manip.h b/dep/ACE_wrappers/ace/Flag_Manip.h index 7aeaceb01..0457dcb4d 100644 --- a/dep/ACE_wrappers/ace/Flag_Manip.h +++ b/dep/ACE_wrappers/ace/Flag_Manip.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Flag_Manip.h * * $Id: Flag_Manip.h 80826 2008-03-04 14:51:23Z wotte $ diff --git a/dep/ACE_wrappers/ace/FoxReactor/FoxReactor.h b/dep/ACE_wrappers/ace/FoxReactor/FoxReactor.h index dfb544eff..7fe1d9625 100644 --- a/dep/ACE_wrappers/ace/FoxReactor/FoxReactor.h +++ b/dep/ACE_wrappers/ace/FoxReactor/FoxReactor.h @@ -1,7 +1,7 @@ /* -*- C-*- */ //============================================================================= -/* +/** * @file FoxReactor.h * * $Id: FoxReactor.h 88996 2010-02-15 09:36:07Z johnnyw $ @@ -30,7 +30,7 @@ #include -/* +/** * @class ACE_FoxReactor * * @brief A Reactor implementation that uses the FOX toolkit (www.fox-toolkit.org) diff --git a/dep/ACE_wrappers/ace/Framework_Component.h b/dep/ACE_wrappers/ace/Framework_Component.h index d90e2bbc6..51330af86 100644 --- a/dep/ACE_wrappers/ace/Framework_Component.h +++ b/dep/ACE_wrappers/ace/Framework_Component.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Framework_Component.h * * $Id: Framework_Component.h 92208 2010-10-13 06:20:39Z johnnyw $ @@ -52,7 +52,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_Framework_Component * * @brief Base class that defines a uniform interface for all managed @@ -86,7 +86,7 @@ private: const ACE_TCHAR *name_; }; -/* +/** * @class ACE_Framework_Repository * * @brief Contains all framework components used by an application. diff --git a/dep/ACE_wrappers/ace/Framework_Component_T.h b/dep/ACE_wrappers/ace/Framework_Component_T.h index 33cacd935..a3deaf8fc 100644 --- a/dep/ACE_wrappers/ace/Framework_Component_T.h +++ b/dep/ACE_wrappers/ace/Framework_Component_T.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Framework_Component_T.h * * $Id: Framework_Component_T.h 92208 2010-10-13 06:20:39Z johnnyw $ @@ -21,7 +21,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_Framework_Component_T * * @brief This class inherits the interface of the abstract diff --git a/dep/ACE_wrappers/ace/Free_List.h b/dep/ACE_wrappers/ace/Free_List.h index 697acbff7..24495d03b 100644 --- a/dep/ACE_wrappers/ace/Free_List.h +++ b/dep/ACE_wrappers/ace/Free_List.h @@ -1,7 +1,7 @@ /* -*- C++ -*- */ //============================================================================= -/* +/** * @file Free_List.h * * $Id: Free_List.h 92298 2010-10-21 11:15:17Z johnnyw $ @@ -26,7 +26,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_Free_List * * @brief Implements a free list. @@ -55,7 +55,7 @@ public: virtual void resize (size_t newsize) = 0; }; -/* +/** * @class ACE_Locked_Free_List * * @brief Implements a free list. @@ -70,7 +70,7 @@ class ACE_Locked_Free_List : public ACE_Free_List { public: // = Initialization and termination. - /* + /** * Constructor takes a @a mode (i.e., ACE_FREE_LIST_WITH_POOL or * ACE_PURE_FREE_LIST), a count of the number of nodes to * @a prealloc, a low and high water mark (@a lwm and @a hwm) that diff --git a/dep/ACE_wrappers/ace/Functor.cpp b/dep/ACE_wrappers/ace/Functor.cpp index b31aee256..4f12670e8 100644 --- a/dep/ACE_wrappers/ace/Functor.cpp +++ b/dep/ACE_wrappers/ace/Functor.cpp @@ -1,6 +1,6 @@ //============================================================================= -/* +/** * @file Functor.cpp * * $Id: Functor.cpp 91286 2010-08-05 09:04:31Z johnnyw $ diff --git a/dep/ACE_wrappers/ace/Functor.h b/dep/ACE_wrappers/ace/Functor.h index 61759c717..cb01630e2 100644 --- a/dep/ACE_wrappers/ace/Functor.h +++ b/dep/ACE_wrappers/ace/Functor.h @@ -1,7 +1,7 @@ // -*- C++ -*- //========================================================================== -/* +/** * @file Functor.h * * $Id: Functor.h 92069 2010-09-28 11:38:59Z johnnyw $ @@ -47,7 +47,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL // GOF Command Pattern Classes and Template Specializations // ////////////////////////////////////////////////////////////// -/* +/** * @class ACE_Command_Base * * @brief Defines an abstract class that allows us to invoke commands @@ -67,7 +67,7 @@ public: /// Virtual destructor. virtual ~ACE_Command_Base (void); - /* + /** * Invokes the method encapsulated by the command, passing along the * passed argument (if any). Users of classes derived from this * class must ensure that the resulting invocation can tolerate a @@ -88,7 +88,7 @@ template class ACE_Hash; template class ACE_Equal_To; template class ACE_Less_Than; -/* +/** * @brief Function object for hashing a char */ template<> @@ -99,7 +99,7 @@ public: unsigned long operator () (char t) const; }; -/* +/** * @brief Function object for hashing a signed char */ template<> @@ -110,7 +110,7 @@ public: unsigned long operator () (signed char t) const; }; -/* +/** * @brief Function object for hashing an unsigned char */ template<> @@ -121,7 +121,7 @@ public: unsigned long operator () (unsigned char t) const; }; -/* +/** * @brief Function object for hashing a short number */ template<> @@ -132,7 +132,7 @@ public: unsigned long operator () (short t) const; }; -/* +/** * @brief Function object for hashing an unsigned short number */ template<> @@ -143,7 +143,7 @@ public: unsigned long operator () (unsigned short t) const; }; -/* +/** * @brief Function object for hashing an int number */ template<> @@ -154,7 +154,7 @@ public: unsigned long operator () (int t) const; }; -/* +/** * @brief Function object for hashing an unsigned int number */ template<> @@ -165,7 +165,7 @@ public: unsigned long operator () (unsigned int t) const; }; -/* +/** * @brief Function object for hashing a long number */ template<> @@ -176,7 +176,7 @@ public: unsigned long operator () (long t) const; }; -/* +/** * @brief Function object for hashing an unsigned long number */ template<> @@ -188,7 +188,7 @@ public: }; #if !defined (ACE_LACKS_LONGLONG_T) && (ACE_SIZEOF_LONG < 8) -/* +/** * @brief Function object for hashing a signed 64-bit number */ template<> @@ -203,7 +203,7 @@ public: // We can do this even if ACE_LACKS_UNSIGNEDLONGLONG_T because there's an // emulation for it in ACE_U_LongLong. #if (ACE_SIZEOF_LONG < 8) -/* +/** * @brief Function object for hashing an unsigned 64-bit number */ template<> @@ -215,7 +215,7 @@ public: }; #endif /* ACE_SIZEOF_LONG < 8 */ -/* +/** * @brief Function object for hashing a const string */ template<> @@ -226,7 +226,7 @@ public: unsigned long operator () (const char *t) const; }; -/* +/** * @brief Function object for hashing a string */ template<> @@ -237,7 +237,7 @@ public: unsigned long operator () (const char *t) const; }; -/* +/** * @brief Function object for hashing a void * */ template<> @@ -247,7 +247,7 @@ public: unsigned long operator () (const void *) const; }; -/* +/** * @brief Function object for determining whether two const strings are equal. */ template<> @@ -259,7 +259,7 @@ public: const char *rhs) const; }; -/* +/** * @brief Function object for determining whether two non-const * strings are equal. */ @@ -272,7 +272,7 @@ public: const char *rhs) const; }; -/* +/** * @brief Function object for determining whether two unsigned * 16 bit ints are equal. */ @@ -285,7 +285,7 @@ public: const ACE_UINT16 rhs) const; }; -/* +/** * @brief Function object for determining whether two * 16 bit ints are equal. */ @@ -298,7 +298,7 @@ public: const ACE_INT16 rhs) const; }; -/* +/** * @brief Function object for determining whether two unsigned * 32 bit ints are equal. */ @@ -311,7 +311,7 @@ public: const ACE_UINT32 rhs) const; }; -/* +/** * @brief Function object for determining whether two * 32 bit ints are equal. */ @@ -324,7 +324,7 @@ public: const ACE_INT32 rhs) const; }; -/* +/** * @brief Function object for determining whether two unsigned * 64 bit ints are equal. */ @@ -337,7 +337,7 @@ public: const ACE_UINT64 rhs) const; }; -/* +/** * @brief Function object for determining whether the first const string * is less than the second const string. */ @@ -350,7 +350,7 @@ public: const char *rhs) const; }; -/* +/** * @brief Function object for determining whether the first string * is less than the second string. */ @@ -366,7 +366,7 @@ public: #if defined (ACE_HAS_WCHAR) # if ! defined (ACE_LACKS_NATIVE_WCHAR_T) -/* +/** * @brief Function object for hashing a wchar_t */ template<> @@ -377,7 +377,7 @@ public: unsigned long operator () (wchar_t t) const; }; # endif /* ACE_LACKS_NATIVE_WCHAR_T */ -/* +/** * @brief Function object for hashing a const string */ template<> @@ -388,7 +388,7 @@ public: unsigned long operator () (const wchar_t *t) const; }; -/* +/** * @brief Function object for hashing a string */ template<> @@ -399,7 +399,7 @@ public: unsigned long operator () (const wchar_t *t) const; }; -/* +/** * @brief Function object for determining whether two const strings are equal. */ template<> @@ -411,7 +411,7 @@ public: const wchar_t *rhs) const; }; -/* +/** * @brief Function object for determining whether two non-const * strings are equal. */ @@ -424,7 +424,7 @@ public: const wchar_t *rhs) const; }; -/* +/** * @brief Function object for determining whether the first const string * is less than the second const string. */ @@ -437,7 +437,7 @@ public: const wchar_t *rhs) const; }; -/* +/** * @brief Function object for determining whether the first string * is less than the second string. */ diff --git a/dep/ACE_wrappers/ace/Functor.inl b/dep/ACE_wrappers/ace/Functor.inl index 3df266fce..46fb00217 100644 --- a/dep/ACE_wrappers/ace/Functor.inl +++ b/dep/ACE_wrappers/ace/Functor.inl @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Functor.inl * * $Id: Functor.inl 92069 2010-09-28 11:38:59Z johnnyw $ diff --git a/dep/ACE_wrappers/ace/Functor_String.h b/dep/ACE_wrappers/ace/Functor_String.h index bf5f8dfc1..2adf561a6 100644 --- a/dep/ACE_wrappers/ace/Functor_String.h +++ b/dep/ACE_wrappers/ace/Functor_String.h @@ -1,7 +1,7 @@ // -*- C++ -*- //========================================================================== -/* +/** * @file Functor_String.h * * $Id: Functor_String.h 86698 2009-09-13 15:58:17Z johnnyw $ @@ -39,7 +39,7 @@ template class ACE_Hash; template class ACE_Equal_To; template class ACE_Less_Than; -/* +/** * @brief Function object for determining whether two ACE_CStrings are * equal. */ @@ -52,7 +52,7 @@ public: }; -/* +/** * @brief Function object for hashing a ACE_CString */ template<> @@ -64,7 +64,7 @@ public: }; -/* +/** * @brief Function object for determining whether the first const string * is less than the second const string. */ @@ -80,7 +80,7 @@ public: #if defined (ACE_USES_WCHAR) -/* +/** * @brief Function object for determining whether two ACE_WStrings are * equal. */ @@ -93,7 +93,7 @@ public: }; -/* +/** * @brief Function object for hashing a ACE_WString */ template<> @@ -104,7 +104,7 @@ public: unsigned long operator () (const ACE_WString &lhs) const; }; -/* +/** * @brief Function object for determining whether the first const wstring * is less than the second const wstring. */ diff --git a/dep/ACE_wrappers/ace/Functor_T.h b/dep/ACE_wrappers/ace/Functor_T.h index 4f7d2f548..ff087d201 100644 --- a/dep/ACE_wrappers/ace/Functor_T.h +++ b/dep/ACE_wrappers/ace/Functor_T.h @@ -1,7 +1,7 @@ /* -*- C++ -*- */ //============================================================================= -/* +/** * @file Functor_T.h * * $Id: Functor_T.h 91396 2010-08-19 12:37:24Z johnnyw $ @@ -44,7 +44,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL // GOF Command Pattern Templates // /////////////////////////////////// -/* +/** * @class ACE_Command_Callback * * @brief @@ -83,7 +83,7 @@ private: // STL-style Functor Templates // ///////////////////////////////// -/* +/** * @class ACE_Hash * * @brief Function object for hashing @@ -96,7 +96,7 @@ public: unsigned long operator () (const TYPE &t) const; }; -/* +/** * @class ACE_Pointer_Hash * * @brief @@ -110,7 +110,7 @@ public: unsigned long operator () (TYPE t) const; }; -/* +/** * @class ACE_Equal_To * * @brief @@ -126,7 +126,7 @@ public: const TYPE &rhs) const; }; -/* +/** * @class ACE_Less_Than * * @brief diff --git a/dep/ACE_wrappers/ace/Future.h b/dep/ACE_wrappers/ace/Future.h index 05d6dcd79..0246263f1 100644 --- a/dep/ACE_wrappers/ace/Future.h +++ b/dep/ACE_wrappers/ace/Future.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Future.h * * $Id: Future.h 91626 2010-09-07 10:59:20Z johnnyw $ @@ -39,7 +39,7 @@ template class ACE_Future_Observer; template class ACE_Future_Rep; template class ACE_Future; -/* +/** * @class ACE_Future_Holder * * @brief Implementation of object that holds an ACE_Future. @@ -60,7 +60,7 @@ protected: ACE_Future_Holder (void); }; -/* +/** * @class ACE_Future_Observer * * @brief ACE_Future_Observer @@ -89,7 +89,7 @@ protected: ACE_Future_Observer (void); }; -/* +/** * @class ACE_Future_Rep * * @internal @@ -107,7 +107,7 @@ class ACE_Future_Rep private: friend class ACE_Future; - /* + /** * Set the result value. The specified @a caller represents the * future that invoked this method, which is used to notify * the list of future observers. Returns 0 for success, -1 on error. @@ -122,7 +122,7 @@ private: int get (T &value, ACE_Time_Value *tv) const; - /* + /** * Attaches the specified observer to a subject (i.e., the ACE_Future_Rep). * The update method of the specified subject will be invoked with a copy of * the written-to ACE_Future as input when the result gets set. @@ -133,7 +133,7 @@ private: int attach (ACE_Future_Observer *observer, ACE_Future &caller); - /* + /** * Detaches the specified observer from a subject (i.e., the ACE_Future_Rep). * The update method of the specified subject will not be invoked when the * ACE_Future_Reps result gets set. Returns 1 if the specified observer was @@ -144,7 +144,7 @@ private: */ int detach (ACE_Future_Observer *observer); - /* + /** * Type conversion. will block forever until the result is * available. Note that this method is going away in a subsequent * release since it doesn't distinguish between failure results and @@ -173,7 +173,7 @@ private: /// Create a ACE_Future_Rep and initialize the reference count. static ACE_Future_Rep *create (void); - /* + /** * Increase the reference count and return argument. Uses the * attribute "value_ready_mutex_" to synchronize reference count * updating. @@ -182,7 +182,7 @@ private: */ static ACE_Future_Rep *attach (ACE_Future_Rep *&rep); - /* + /** * Decreases the reference count and deletes rep if there are no * more references to rep. * @@ -190,7 +190,7 @@ private: */ static void detach (ACE_Future_Rep *&rep); - /* + /** * Decreases the rep's reference count and deletes rep if there * are no more references to rep. Then assigns new_rep to rep. * @@ -228,7 +228,7 @@ protected: }; -/* +/** * @class ACE_Future * * @brief This class implements a ``single write, multiple read'' @@ -262,7 +262,7 @@ public: /// client does not want to wait for the value to be produced. int cancel (const T &r); - /* + /** * Cancel an ACE_Future. Put the future into its initial * state. Returns 0 on succes and -1 on failure. It is now possible * to reuse the ACE_Future. But remember, the ACE_Future @@ -270,7 +270,7 @@ public: */ int cancel (void); - /* + /** * Equality operator that returns @c true if both ACE_Future objects * point to the same ACE_Future_Rep object. * @@ -282,7 +282,7 @@ public: /// Inequality operator, which is the opposite of equality. bool operator != (const ACE_Future &r) const; - /* + /** * Make the result available. Is used by the server thread to give * the result to all waiting clients. Returns 0 for success, -1 on failure. * This function only has an effect the first time it is called for @@ -292,7 +292,7 @@ public: */ int set (const T &r); - /* + /** * Wait to get the object's value. * * @param value Receives the value of this ACE_Future when it is set. @@ -306,7 +306,7 @@ public: */ int get (T &value, ACE_Time_Value *tv = 0) const; - /* + /** * @deprecated Note that this method is going away in a subsequent * release since it doesn't distinguish between failure * results and success results (exceptions should be @@ -321,7 +321,7 @@ public: /// Check if the result is available. int ready (void) const; - /* + /** * Attaches the specified observer to a subject (this ACE_Future). * The update method of the specified subject will be invoked with a copy of * the associated ACE_Future as input when the result gets set. If the @@ -336,7 +336,7 @@ public: */ int attach (ACE_Future_Observer *observer); - /* + /** * Detaches the specified observer from a subject (this ACE_Future). * The update method of the specified subject will not be invoked when the * ACE_Future_Rep result gets set. @@ -352,7 +352,7 @@ public: /// Dump the state of an object. void dump (void) const; - /* + /** * Get the underlying ACE_Future_Rep pointer. Note that this method should * rarely, if ever, be used and that modifying the underlying * ACE_Future_Rep should be done with extreme caution. diff --git a/dep/ACE_wrappers/ace/Future_Set.h b/dep/ACE_wrappers/ace/Future_Set.h index 3d4e92076..d85152420 100644 --- a/dep/ACE_wrappers/ace/Future_Set.h +++ b/dep/ACE_wrappers/ace/Future_Set.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Future_Set.h * * $Id: Future_Set.h 91626 2010-09-07 10:59:20Z johnnyw $ @@ -28,7 +28,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_Future_Set * * @brief This class implements a mechanism that allows the values of @@ -53,7 +53,7 @@ public: /// Destructor. ~ACE_Future_Set (void); - /* + /** * Return 1 if their are no ACE_Future objects left on its queue and * 0 otherwise. * @@ -65,7 +65,7 @@ public: */ int is_empty (void) const; - /* + /** * Enqueus the given ACE_Future into this objects queue when it is * readable. * @@ -74,7 +74,7 @@ public: */ int insert (ACE_Future &future); - /* + /** * Wait up to @a tv time to get the @a value. Note that @a tv must be * specified in absolute time rather than relative time.); get the * next ACE_Future that is readable. If @a tv = 0, the will block diff --git a/dep/ACE_wrappers/ace/Get_Opt.h b/dep/ACE_wrappers/ace/Get_Opt.h index 70f33c2dc..1c30096ea 100644 --- a/dep/ACE_wrappers/ace/Get_Opt.h +++ b/dep/ACE_wrappers/ace/Get_Opt.h @@ -1,7 +1,7 @@ // -*- C++ -*- //========================================================================== -/* +/** * @file Get_Opt.h * * $Id: Get_Opt.h 86367 2009-08-05 09:41:11Z johnnyw $ @@ -33,7 +33,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL * of ACE_Get_Opt. */ -/* +/** * @class ACE_Get_Opt * * @brief Iterator for parsing command-line arguments. @@ -47,7 +47,7 @@ public: /// Mutually exclusive ordering values. enum { - /* + /** * REQUIRE_ORDER means that processing stops and @c EOF is * returned as soon as a non-option argument is found. @c opt_ind() * will return the index of the next @a argv element so the program @@ -55,7 +55,7 @@ public: */ REQUIRE_ORDER = 1, - /* + /** * PERMUTE_ARGS means the @a argv elements are reordered dynamically * (permuted) so that all options appear first. When the elements are * permuted, the order of the options and the following arguments are @@ -65,7 +65,7 @@ public: */ PERMUTE_ARGS = 2, - /* + /** * RETURN_IN_ORDER means each @a argv element is processed in the * order is it seen. If the element is not recognized as an option, '1' * is returned and @c opt_arg() refers to the @a argv element found. @@ -88,7 +88,7 @@ public: ARG_OPTIONAL = 2 }; - /* + /** * Constructor initializes the command line to be parsed. All information * for parsing must be supplied to this constructor. * @@ -200,7 +200,7 @@ public: /// Default dtor. ~ACE_Get_Opt (void); - /* + /** * Scan elements of @a argv (whose length is @a argc) for short option * characters given in @a optstring or long options (with no short * option equivalents). @@ -238,14 +238,14 @@ public: */ int operator () (void); - /* + /** * For communication from @c operator() to the caller. When * @c operator() finds an option that takes an argument, the argument * value is returned from this method, otherwise it returns 0. */ ACE_TCHAR *opt_arg (void) const; - /* + /** * Returns the most recently matched option character. Especially * useful when operator() returns ':' for an unspecified argument * that's required, since this allows the caller to learn what option @@ -253,7 +253,7 @@ public: */ int opt_opt (void); - /* + /** * Index in @a argv of the next element to be scanned. This is used * for communication to and from the caller and for communication * between successive calls to @c operator(). On entry to @@ -268,7 +268,7 @@ public: int &opt_ind (void); /// Adds a long option with no corresponding short option. - /* + /** * If the @a name option is seen, @c operator() returns 0. * * @param name The long option to add. @@ -282,7 +282,7 @@ public: OPTION_ARG_MODE has_arg = NO_ARG); /// Adds a long option with a corresponding short option. - /* + /** * @param name The long option to add. * @param short_option A character, the short option that corresponds * to @a name. @@ -330,7 +330,7 @@ public: */ /// Holds the @a argc count. - /* + /** * @deprecated This is public for backwards compatibility only. * It will be made private in a release of ACE past 5.3. Do not * write code that relies on this member being public; use the @@ -339,7 +339,7 @@ public: int argc_; /// Holds the @a argv pointer. - /* + /** * @deprecated This is public for backwards compatibility only. * It will be made private in a release of ACE past 5.3. Do not * write code that relies on this member being public; use the @@ -348,7 +348,7 @@ public: ACE_TCHAR **argv_; /// Index in @c argv_ of the next element to be scanned. - /* + /** * @deprecated This is public for backwards compatibility only. * It will be made private in a release of ACE past 5.3. Do not * write code that relies on this member being public; use the @@ -358,7 +358,7 @@ public: /// Callers store zero here to inhibit the error message for /// unrecognized options. - /* + /** * @deprecated This is public for backwards compatibility only. * It will be made private in a release of ACE past 5.3. Do not * write code that relies on this member being public; use the @@ -368,7 +368,7 @@ public: /// Points to the option argument when one is found on last call to /// @c operator(). - /* + /** * @deprecated This is public for backwards compatibility only. * It will be made private in a release of ACE past 5.3. Do not * write code that relies on this member being public; use the @@ -377,7 +377,7 @@ public: ACE_TCHAR *optarg; private: - /* + /** * @class ACE_Get_Opt_Long_Option This class is for internal use * in the ACE_Get_Opt class, and is inaccessible to users. */ @@ -450,7 +450,7 @@ private: /// is handy to have in cases where the option passed was invalid. ACE_TString *last_option_; - /* + /** * The next char to be scanned in the option-element in which the * last option character we returned was found. This allows us to * pick up the scan where we left off * diff --git a/dep/ACE_wrappers/ace/Global_Macros.h b/dep/ACE_wrappers/ace/Global_Macros.h index 7fc121fe0..bce0544e1 100644 --- a/dep/ACE_wrappers/ace/Global_Macros.h +++ b/dep/ACE_wrappers/ace/Global_Macros.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Global_Macros.h * * $Id: Global_Macros.h 91685 2010-09-09 09:35:14Z johnnyw $ @@ -494,7 +494,7 @@ typedef void (*ACE_Service_Object_Exterminator)(void *); //@{ /// Declare a the data structure required to register a statically /// linked service into the service configurator. -/* +/** * The macro should be used in the header file where the service is * declared, its only argument is usually the name of the class that * implements the service. @@ -507,7 +507,7 @@ extern ACE_Static_Svc_Descriptor ace_svc_desc_##SERVICE_CLASS ; /// As ACE_STATIC_SVC_DECLARE, but using an export macro for NT /// compilers. -/* +/** * NT compilers require the use of explicit directives to export and * import symbols from a DLL. If you need to define a service in a * dynamic library you should use this version instead. @@ -528,7 +528,7 @@ extern EXPORT_NAME##_Export ACE_Static_Svc_Descriptor ace_svc_desc_##SERVICE_CLA /// Define the data structure used to register a statically linked /// service into the Service Configurator. -/* +/** * The service configurator requires several arguments to build and * control an statically linked service, including its name, the * factory function used to construct the service, and some flags. @@ -560,7 +560,7 @@ extern EXPORT_NAME##_Export ACE_Static_Svc_Descriptor ace_svc_desc_##SERVICE_CLA ACE_Static_Svc_Descriptor ace_svc_desc_##SERVICE_CLASS = { NAME, TYPE, FN, FLAGS, ACTIVE }; /// Automatically register a service with the service configurator -/* +/** * In some applications the services must be automatically registered * with the service configurator, before main() starts. * The ACE_STATIC_SVC_REQUIRE macro defines a class whose constructor @@ -626,7 +626,7 @@ static ACE_Static_Svc_##SERVICE_CLASS ace_static_svc_##SERVICE_CLASS; /// Declare the factory method used to create dynamically loadable /// services. -/* +/** * Once the service implementation is dynamically loaded the Service * Configurator uses a factory method to create the object. * This macro declares such a factory function with the proper @@ -646,7 +646,7 @@ ACE_MAKE_SVC_CONFIG_FACTORY_NAME(ACE_VERSIONED_NAMESPACE_NAME,SERVICE_CLASS) (AC /// Define the factory method (and destructor) for a dynamically /// loadable service. -/* +/** * Use with arguments matching ACE_FACTORY_DECLARE. * Normally used in the .cpp file that defines the service * implementation. @@ -696,7 +696,7 @@ ACE_MAKE_SVC_CONFIG_FACTORY_NAME(ACE_VERSIONED_NAMESPACE_NAME,SERVICE_CLASS) (AC } #endif -/* +/** * For service classes scoped within namespaces, use this macro in * place of ACE_FACTORY_DEFINE. The third argument in this case is * the fully scoped name of the class as it is to be diff --git a/dep/ACE_wrappers/ace/Guard_T.h b/dep/ACE_wrappers/ace/Guard_T.h index edb772598..5120d3f7a 100644 --- a/dep/ACE_wrappers/ace/Guard_T.h +++ b/dep/ACE_wrappers/ace/Guard_T.h @@ -1,7 +1,7 @@ // -*- C++ -*- //========================================================================== -/* +/** * @file Guard_T.h * * $Id: Guard_T.h 91626 2010-09-07 10:59:20Z johnnyw $ @@ -29,7 +29,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_Guard * * @brief This data structure is meant to be used within a method or @@ -132,7 +132,7 @@ private: ACE_UNIMPLEMENTED_FUNC (ACE_Guard (const ACE_Guard &)) }; -/* +/** * @class ACE_Write_Guard * * @brief This class is similar to class ACE_Guard, though it @@ -178,7 +178,7 @@ public: // Declare the dynamic allocation hooks. }; -/* +/** * @class ACE_Read_Guard * * @brief This class is similar to class ACE_Guard, though it @@ -234,7 +234,7 @@ public: /* ACE platform supports some form of threading and thread-specific storage. */ -/* +/** * @class ACE_TSS_Guard * * @brief This data structure is meant to be used within a method or @@ -295,7 +295,7 @@ private: // FUZZ: enable check_for_ACE_Guard }; -/* +/** * @class ACE_TSS_Write_Guard * * @brief This class is similar to class ACE_TSS_Guard, though it @@ -340,7 +340,7 @@ private: // FUZZ: enable check_for_ACE_Guard }; -/* +/** * @class ACE_TSS_Read_Guard * * @brief This class is similar to class , though it diff --git a/dep/ACE_wrappers/ace/Handle_Gobbler.h b/dep/ACE_wrappers/ace/Handle_Gobbler.h index df69df8de..9d6890a03 100644 --- a/dep/ACE_wrappers/ace/Handle_Gobbler.h +++ b/dep/ACE_wrappers/ace/Handle_Gobbler.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Handle_Gobbler.h * * $Id: Handle_Gobbler.h 80826 2008-03-04 14:51:23Z wotte $ @@ -24,7 +24,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_Handle_Gobbler * * @brief This class gobbles up handles. @@ -40,7 +40,7 @@ public: /// Destructor. Cleans up any remaining handles. inline ~ACE_Handle_Gobbler (void); - /* + /** * Handles are opened continously until the process runs out of * them, and then handles are closed * (freed) thereby making them usable in the future. diff --git a/dep/ACE_wrappers/ace/Handle_Ops.h b/dep/ACE_wrappers/ace/Handle_Ops.h index 70aedd859..c615380f8 100644 --- a/dep/ACE_wrappers/ace/Handle_Ops.h +++ b/dep/ACE_wrappers/ace/Handle_Ops.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Handle_Ops.h * * $Id: Handle_Ops.h 80826 2008-03-04 14:51:23Z wotte $ @@ -30,7 +30,7 @@ class ACE_Time_Value; // = Operations on HANDLEs. namespace ACE { - /* + /** * Wait up to @a timeout amount of time to actively open a device. * This method doesn't perform the @c connect, it just does the * timed wait. diff --git a/dep/ACE_wrappers/ace/Handle_Set.h b/dep/ACE_wrappers/ace/Handle_Set.h index 8232d9e7e..0de5c98ea 100644 --- a/dep/ACE_wrappers/ace/Handle_Set.h +++ b/dep/ACE_wrappers/ace/Handle_Set.h @@ -1,7 +1,7 @@ /* -*- C++ -*- */ //============================================================================= -/* +/** * @file Handle_Set.h * * $Id: Handle_Set.h 92298 2010-10-21 11:15:17Z johnnyw $ @@ -36,7 +36,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_Handle_Set * * @brief C++ wrapper facade for the socket @c fd_set abstraction. @@ -62,7 +62,7 @@ public: /// Constructor, initializes the bitmask to all 0s. ACE_Handle_Set (void); - /* + /** * Constructor, initializes the handle set from a given mask. */ ACE_Handle_Set (const fd_set &mask); @@ -71,7 +71,7 @@ public: /// Initialize the bitmask to all 0s and reset the associated fields. void reset (void); - /* + /** * Checks whether @a handle is enabled. No range checking is * performed so @a handle must be less than * @c ACE_DEFAULT_SELECT_REACTOR_SIZE. @@ -92,7 +92,7 @@ public: /// Returns the number of the large bit. ACE_HANDLE max_set (void) const; - /* + /** * Rescan the underlying @c fd_set up to handle @a max to find the new * (highest bit set) and (how many bits set) values. * This is useful for evaluating the changes after the handle set has @@ -162,7 +162,7 @@ private: static const char nbits_[NBITS]; }; -/* +/** * @class ACE_Handle_Set_Iterator * * @brief Iterator for the ACE_Handle_Set abstraction. @@ -180,7 +180,7 @@ public: /// that we maintain. void reset_state (void); - /* + /** * "Next" operator. Returns the next unseen ACE_HANDLE in the * up to ). When all the * handles have been seen returns . Advances diff --git a/dep/ACE_wrappers/ace/Hash_Cache_Map_Manager_T.h b/dep/ACE_wrappers/ace/Hash_Cache_Map_Manager_T.h index e90ac9c1e..0bc64a5a9 100644 --- a/dep/ACE_wrappers/ace/Hash_Cache_Map_Manager_T.h +++ b/dep/ACE_wrappers/ace/Hash_Cache_Map_Manager_T.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Hash_Cache_Map_Manager_T.h * * $Id: Hash_Cache_Map_Manager_T.h 92097 2010-09-30 05:41:49Z msmit $ @@ -42,7 +42,7 @@ class ACE_Allocator; // For linkers that cant grok long names. #define ACE_Hash_Cache_Map_Manager AHCMM - /* + /** * @class ACE_Hash_Cache_Map_Manager * * @brief Defines a abstraction which will purge entries from a map. @@ -66,7 +66,7 @@ class ACE_Hash_Cache_Map_Manager : public ACE_CACHE_MAP_MANAGER { public: - /* + /** * The actual value mapped to the key in the map. The * are used by the strategy and is transparent to the user of this * class. @@ -87,7 +87,7 @@ class ACE_Hash_Cache_Map_Manager : public ACE_CACHE_MAP_MANAGER /// resources. ~ACE_Hash_Cache_Map_Manager (void); - /* + /** * Associate @a key with @a value. If @a key is already in the * MAP then the ENTRY is not changed. Returns 0 if a new entry is * bound successfully, returns 1 if an attempt is made to bind an @@ -96,7 +96,7 @@ class ACE_Hash_Cache_Map_Manager : public ACE_CACHE_MAP_MANAGER int bind (const KEY &key, const VALUE &value); - /* + /** * Same as a normal bind, except the cache entry is also passed back * to the caller. The entry in this case will either be the newly * created entry, or the existing one. @@ -116,7 +116,7 @@ class ACE_Hash_Cache_Map_Manager : public ACE_CACHE_MAP_MANAGER int find (const KEY &key, CACHE_ENTRY *&entry); - /* + /** * Reassociate the @a key with @a value. If the @a key already exists * in the cache then returns 1, on a new bind returns 0 and returns * -1 in case of any failures. @@ -124,7 +124,7 @@ class ACE_Hash_Cache_Map_Manager : public ACE_CACHE_MAP_MANAGER int rebind (const KEY &key, const VALUE &value); - /* + /** * Reassociate @a key with @a value, storing the old value into the * "out" parameter @a old_value. The function fails if @a key is not * in the cache for caches that do not allow user specified keys. @@ -135,7 +135,7 @@ class ACE_Hash_Cache_Map_Manager : public ACE_CACHE_MAP_MANAGER const VALUE &value, VALUE &old_value); - /* + /** * Reassociate @a key with @a value, storing the old key and value * into the "out" parameters @a old_key and @a old_value. The * function fails if @a key is not in the cache for caches that do not @@ -148,7 +148,7 @@ class ACE_Hash_Cache_Map_Manager : public ACE_CACHE_MAP_MANAGER KEY &old_key, VALUE &old_value); - /* + /** * Same as a normal rebind, except the cache entry is also passed back * to the caller. The entry in this case will either be the newly * created entry, or the existing one. @@ -157,7 +157,7 @@ class ACE_Hash_Cache_Map_Manager : public ACE_CACHE_MAP_MANAGER const VALUE &value, CACHE_ENTRY *&entry); - /* + /** * Associate @a key with @a value if and only if @a key is not in the * cache. If @a key is already in the cache, then the @a value parameter * is overwritten with the existing value in the cache. Returns 0 if a @@ -168,7 +168,7 @@ class ACE_Hash_Cache_Map_Manager : public ACE_CACHE_MAP_MANAGER int trybind (const KEY &key, VALUE &value); - /* + /** * Same as a normal trybind, except the cache entry is also passed * back to the caller. The entry in this case will either be the * newly created entry, or the existing one. diff --git a/dep/ACE_wrappers/ace/Hash_Map_Manager.h b/dep/ACE_wrappers/ace/Hash_Map_Manager.h index 6ff14d502..d6c0c4b8a 100644 --- a/dep/ACE_wrappers/ace/Hash_Map_Manager.h +++ b/dep/ACE_wrappers/ace/Hash_Map_Manager.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Hash_Map_Manager.h * * $Id: Hash_Map_Manager.h 80826 2008-03-04 14:51:23Z wotte $ diff --git a/dep/ACE_wrappers/ace/Hash_Map_Manager_T.cpp b/dep/ACE_wrappers/ace/Hash_Map_Manager_T.cpp index 92203dd1d..457d7d903 100644 --- a/dep/ACE_wrappers/ace/Hash_Map_Manager_T.cpp +++ b/dep/ACE_wrappers/ace/Hash_Map_Manager_T.cpp @@ -1,6 +1,6 @@ //============================================================================= -/* +/** * @file Hash_Map_Manager_T.cpp * * $Id: Hash_Map_Manager_T.cpp 84477 2009-02-16 13:30:38Z johnnyw $ diff --git a/dep/ACE_wrappers/ace/Hash_Map_Manager_T.h b/dep/ACE_wrappers/ace/Hash_Map_Manager_T.h index ecb7543e6..6b754341a 100644 --- a/dep/ACE_wrappers/ace/Hash_Map_Manager_T.h +++ b/dep/ACE_wrappers/ace/Hash_Map_Manager_T.h @@ -1,7 +1,7 @@ // // -*- C++ -*- //============================================================================= -/* +/** * @file Hash_Map_Manager_T.h * * $Id: Hash_Map_Manager_T.h 91626 2010-09-07 10:59:20Z johnnyw $ @@ -27,7 +27,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_Hash_Map_Entry * * @brief Define an entry in the hash table. @@ -111,7 +111,7 @@ class ACE_Hash_Map_Bucket_Iterator; // Forward decl. class ACE_Allocator; -/* +/** * @class ACE_Hash_Map_Manager_Ex * * @brief Define a map abstraction that efficiently associates @@ -178,7 +178,7 @@ public: // = Initialization and termination methods. - /* + /** * Initialize an ACE_Hash_Map_Manager_Ex with a default number of elements. * * @param table_alloc is a pointer to a memory allocator used for @@ -193,7 +193,7 @@ public: ACE_Hash_Map_Manager_Ex (ACE_Allocator *table_alloc = 0, ACE_Allocator *entry_alloc = 0); - /* + /** * Initialize an ACE_Hash_Map_Manager_Ex with @a size elements. * * @param table_alloc is a pointer to a memory allocator used for @@ -209,7 +209,7 @@ public: ACE_Allocator *table_alloc = 0, ACE_Allocator *entry_alloc = 0); - /* + /** * Initialize an ACE_Hash_Map_Manager_Ex with @a size elements. * @param table_alloc is a pointer to a memory allocator used for * table_, so it should supply size*sizeof (ACE_Hash_Map_Entry). @@ -236,7 +236,7 @@ public: /// Cleanup the ACE_Hash_Map_Manager_Ex. ~ACE_Hash_Map_Manager_Ex (void); - /* + /** * Associate @a item with @a int_id. If @a item is already in the * map then the map is not changed. * @@ -247,7 +247,7 @@ public: int bind (const EXT_ID &item, const INT_ID &int_id); - /* + /** * Same as a normal bind, except the map entry is also passed back * to the caller. The entry in this case will either be the newly * created entry, or the existing one. @@ -256,7 +256,7 @@ public: const INT_ID &int_id, ACE_Hash_Map_Entry *&entry); - /* + /** * Associate @a ext_id with @a int_id if and only if @a ext_id is not * in the map. If @a ext_id is already in the map then the @a int_id * parameter is assigned the existing value in the map. Returns 0 @@ -266,7 +266,7 @@ public: int trybind (const EXT_ID &ext_id, INT_ID &int_id); - /* + /** * Same as a normal trybind, except the map entry is also passed * back to the caller. The entry in this case will either be the * newly created entry, or the existing one. @@ -275,7 +275,7 @@ public: INT_ID &int_id, ACE_Hash_Map_Entry *&entry); - /* + /** * Reassociate @a ext_id with @a int_id. If @a ext_id is not in the * map then behaves just like . Returns 0 if a new entry is * bound successfully, returns 1 if an existing entry was rebound, @@ -284,7 +284,7 @@ public: int rebind (const EXT_ID &ext_id, const INT_ID &int_id); - /* + /** * Same as a normal rebind, except the map entry is also passed back * to the caller. The entry in this case will either be the newly * created entry, or the existing one. @@ -293,7 +293,7 @@ public: const INT_ID &int_id, ACE_Hash_Map_Entry *&entry); - /* + /** * Associate @a ext_id with @a int_id. If @a ext_id is not in the map * then behaves just like . Otherwise, store the old value of * @a int_id into the "out" parameter and rebind the new parameters. @@ -304,7 +304,7 @@ public: const INT_ID &int_id, INT_ID &old_int_id); - /* + /** * Same as a normal rebind, except the map entry is also passed back * to the caller. The entry in this case will either be the newly * created entry, or the existing one. @@ -314,7 +314,7 @@ public: INT_ID &old_int_id, ACE_Hash_Map_Entry *&entry); - /* + /** * Associate @a ext_id with @a int_id. If @a ext_id is not in the map * then behaves just like . Otherwise, store the old values * of @a ext_id and @a int_id into the "out" parameters and rebind the @@ -329,7 +329,7 @@ public: EXT_ID &old_ext_id, INT_ID &old_int_id); - /* + /** * Same as a normal rebind, except the map entry is also passed back * to the caller. The entry in this case will either be the newly * created entry, or the existing one. @@ -355,12 +355,12 @@ public: /// Locate @a ext_id and pass out an iterator that points to its /// corresponding value. - /* + /** * @param pos @a pos will be set to @c end() if not found. */ void find (EXT_ID const & ext_id, iterator & pos) const; - /* + /** * Unbind (remove) the @a ext_id from the map. Don't return the * @a int_id to the caller (this is useful for collections where the * @a int_ids are *not* dynamically allocated...) @@ -374,7 +374,7 @@ public: INT_ID &int_id); /// Remove entry from map. - /* + /** * This unbind operation is fast relative to those that accept an * external ID parameter since no map lookup is performed. * @@ -384,7 +384,7 @@ public: int unbind (ACE_Hash_Map_Entry *entry); /// Remove entry from map pointed to by @c iterator @a pos. - /* + /** * This unbind operation is fast relative to those that accept an * external ID parameter since no map lookup is performed. * @@ -401,7 +401,7 @@ public: /// linked lists of ACE_Hash_Map_Entry objects in the hash table. size_t total_size (void) const; - /* + /** * Returns a reference to the underlying . This makes it * possible to acquire the lock explicitly, which can be useful in * some cases if you instantiate the ACE_Atomic_Op with an @@ -516,7 +516,7 @@ protected: /// Performs unbind. Must be called with locks held. int unbind_i (ACE_Hash_Map_Entry *entry); - /* + /** * Resize the map. Must be called with locks held. * @note This method should never be called more than once or else all the * hashing will get screwed up as the size will change. @@ -560,7 +560,7 @@ protected: ACE_Hash_Map_Entry *table (void); private: - /* + /** * Array of ACE_Hash_Map_Entry *s, each of which points to an * ACE_Hash_Map_Entry that serves as the beginning of a linked * list of s that hash to that bucket. @@ -580,7 +580,7 @@ private: ACE_UNIMPLEMENTED_FUNC (ACE_Hash_Map_Manager_Ex (const ACE_Hash_Map_Manager_Ex &)) }; -/* +/** * @class ACE_Hash_Map_Iterator_Base_Ex * * @brief Base iterator for the ACE_Hash_Map_Manager_Ex @@ -604,7 +604,7 @@ public: // = Initialization method. /// Contructor. - /* + /** * If @a head != @c false, the iterator constructed is positioned * at the head of the map. It is positioned at the end otherwise. * @par @@ -618,7 +618,7 @@ public: bool head); /// Contructor. - /* + /** * This constructor positions the iterator to the given @a entry. */ ACE_Hash_Map_Iterator_Base_Ex ( @@ -679,7 +679,7 @@ protected: ACE_Hash_Map_Entry *next_; }; -/* +/** * @class ACE_Hash_Map_Const_Iterator_Base_Ex * * @brief Base const iterator for the ACE_Hash_Map_Manager_Ex @@ -756,7 +756,7 @@ protected: ACE_Hash_Map_Entry *next_; }; -/* +/** * @class ACE_Hash_Map_Iterator_Ex * * @brief Forward iterator for the ACE_Hash_Map_Manager_Ex. @@ -788,7 +788,7 @@ public: int tail = 0); /// Contructor. - /* + /** * This constructor positions the iterator to the given @a entry. */ ACE_Hash_Map_Iterator_Ex ( @@ -826,7 +826,7 @@ public: ACE_ALLOC_HOOK_DECLARE; }; -/* +/** * @class ACE_Hash_Map_Const_Iterator_Ex * * @brief Const forward iterator for the ACE_Hash_Map_Manager_Ex. @@ -883,7 +883,7 @@ public: ACE_ALLOC_HOOK_DECLARE; }; -/* +/** * @class ACE_Hash_Map_Bucket_Iterator * * @brief Forward iterator for the ACE_Hash_Map_Manager_Ex which @@ -970,7 +970,7 @@ protected: ACE_Hash_Map_Entry *next_; }; -/* +/** * @class ACE_Hash_Map_Reverse_Iterator_Ex * * @brief Reverse iterator for the ACE_Hash_Map_Manager_Ex. @@ -1027,7 +1027,7 @@ public: ACE_ALLOC_HOOK_DECLARE; }; -/* +/** * @class ACE_Hash_Map_Const_Reverse_Iterator_Ex * * @brief Const reverse iterator for the ACE_Hash_Map_Manager_Ex. @@ -1084,7 +1084,7 @@ public: ACE_ALLOC_HOOK_DECLARE; }; -/* +/** * @class ACE_Hash_Map_Manager * * @brief Wrapper for backward compatibility. @@ -1129,7 +1129,7 @@ class ACE_Hash_Map_Manager : public ACE_Hash_Map_Manager_Ex). @@ -1143,7 +1143,7 @@ public: ACE_Hash_Map_Manager (ACE_Allocator *table_alloc = 0, ACE_Allocator *entry_alloc = 0); - /* + /** * Initialize a @c Hash_Map_Manager with @c size elements. * @param table_alloc is a pointer to a memory allocator used for * table_, so it should supply size*sizeof (ACE_Hash_Map_Entry). @@ -1164,7 +1164,7 @@ public: u_long hash (const EXT_ID &ext_id); }; -/* +/** * @class ACE_Hash_Map_Iterator * * @brief Wrapper for backward compatibility. @@ -1205,7 +1205,7 @@ public: operator= (const ACE_Hash_Map_Iterator_Ex, ACE_Equal_To, ACE_LOCK> &base); }; -/* +/** * @class ACE_Hash_Map_Const_Iterator * * @brief Wrapper for backward compatibility. @@ -1247,7 +1247,7 @@ public: operator= (const ACE_Hash_Map_Const_Iterator_Ex, ACE_Equal_To, ACE_LOCK> &base); }; -/* +/** * @class ACE_Hash_Map_Reverse_Iterator * * @brief Wrapper for backward compatibility. diff --git a/dep/ACE_wrappers/ace/Hash_Map_With_Allocator_T.h b/dep/ACE_wrappers/ace/Hash_Map_With_Allocator_T.h index 7d30089f6..bdfba00fb 100644 --- a/dep/ACE_wrappers/ace/Hash_Map_With_Allocator_T.h +++ b/dep/ACE_wrappers/ace/Hash_Map_With_Allocator_T.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Hash_Map_With_Allocator_T.h * * $Id: Hash_Map_With_Allocator_T.h 91743 2010-09-13 18:24:51Z johnnyw $ @@ -24,7 +24,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_Hash_Map_With_Allocator * * @brief This class is a thin wrapper around ACE_Hash_Map_Manager, diff --git a/dep/ACE_wrappers/ace/Hash_Multi_Map_Manager_T.cpp b/dep/ACE_wrappers/ace/Hash_Multi_Map_Manager_T.cpp index a70a5bddb..db79e0187 100644 --- a/dep/ACE_wrappers/ace/Hash_Multi_Map_Manager_T.cpp +++ b/dep/ACE_wrappers/ace/Hash_Multi_Map_Manager_T.cpp @@ -1,6 +1,6 @@ //============================================================================= -/* +/** * @file Hash_Multi_Map_Manager_T.cpp * * $Id: Hash_Multi_Map_Manager_T.cpp 91688 2010-09-09 11:21:50Z johnnyw $ diff --git a/dep/ACE_wrappers/ace/Hash_Multi_Map_Manager_T.h b/dep/ACE_wrappers/ace/Hash_Multi_Map_Manager_T.h index a20b9200e..ddbb093bf 100644 --- a/dep/ACE_wrappers/ace/Hash_Multi_Map_Manager_T.h +++ b/dep/ACE_wrappers/ace/Hash_Multi_Map_Manager_T.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Hash_Multi_Map_Manager_T.h * * $Id: Hash_Multi_Map_Manager_T.h 91693 2010-09-09 12:57:54Z johnnyw $ @@ -40,7 +40,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_Hash_Multi_Map_Entry * * @brief Define an entry in the hash table. @@ -120,7 +120,7 @@ class ACE_Hash_Multi_Map_Bucket_Iterator; // Forward decl. class ACE_Allocator; -/* +/** * @class ACE_Hash_Multi_Map_Manager * * @brief Define a multi-map abstraction that efficiently associates the keys @@ -171,7 +171,7 @@ public: // = Initialization and termination methods. - /* + /** * Initialize a @c Hash_Multi_Map_Manager with default size elements. * @param table_alloc is a pointer to a memory allocator used for * table_, so it should supply size*sizeof ( @@ -187,7 +187,7 @@ public: ACE_Hash_Multi_Map_Manager (ACE_Allocator *table_alloc = 0, ACE_Allocator *entry_alloc = 0); - /* + /** * Initialize a @c Hash_Multi_Map_Manager with @a size elements. * @param size is the number of elements in a Hash_Multi_Map_Manager. * @param table_alloc is a pointer to a memory allocator used for @@ -205,7 +205,7 @@ public: ACE_Allocator *table_alloc = 0, ACE_Allocator *entry_alloc = 0); - /* + /** * Initialize a @c Hash_Multi_Map_Manager with @a size elements. * @param size is the number of elements in a Hash_Multi_Map_Manager. * @param table_alloc is a pointer to a memory allocator used for @@ -235,7 +235,7 @@ public: /// Cleanup the Hash_Multi_Map_Manager. ~ACE_Hash_Multi_Map_Manager (void); - /* + /** * Associate @a ext_id with @a int_id. If @a ext_id and @a int_id is already * in the map then the @c ACE_Hash_Multi_Map_Entry is not changed. Returns 0 if * a new entry is bound successfully, returns 1 if an attempt is made @@ -244,7 +244,7 @@ public: int bind (const EXT_ID &ext_id, const INT_ID &int_id); - /* + /** * Same as a normal bind, except the map entry is also passed back * to the caller. The entry in this case will either be the newly * created entry, or the existing one. @@ -253,7 +253,7 @@ public: const INT_ID &int_id, ACE_Hash_Multi_Map_Entry *&entry); - /* + /** * Associate @a ext_id with @a int_id_set. If @a ext_id is already in the * map then the @c ACE_Hash_Multi_Map_Entry is not changed. Returns 0 if a * new entry is bound successfully, returns 1 if an attempt is made @@ -262,7 +262,7 @@ public: int bind (const EXT_ID &ext_id, const ACE_Unbounded_Set &int_id_set); - /* + /** * Same as a normal bind, except the map entry is also passed back * to the caller. The entry in this case will either be the newly * created entry, or the existing one. @@ -271,7 +271,7 @@ public: const ACE_Unbounded_Set &int_id_set, ACE_Hash_Multi_Map_Entry *&entry); - /* + /** * Associate @a ext_id with @a int_id_set if and only if @a ext_id is * not in the map. If @a ext_id is already in the map then the @a int_id_set * parameter is assigned the existing value in the map. Returns 0 @@ -281,7 +281,7 @@ public: int trybind (const EXT_ID &ext_id, ACE_Unbounded_Set &int_id_set); - /* + /** * Same as a normal trybind, except the map entry is also passed * back to the caller. The entry in this case will either be the * newly created entry, or the existing one. @@ -290,7 +290,7 @@ public: ACE_Unbounded_Set &int_id_set, ACE_Hash_Multi_Map_Entry *&entry); - /* + /** * Reassociate @a ext_id with @a int_id_set. If @a ext_id is not in * the map then behaves just like bind. Returns 0 if a new entry is * bound successfully, returns 1 if an existing entry was rebound, @@ -299,7 +299,7 @@ public: int rebind (const EXT_ID &ext_id, const ACE_Unbounded_Set &int_id_set); - /* + /** * Same as a normal rebind, except the map entry is also passed back * to the caller. The entry in this case will either be the newly * created entry, or the existing one. @@ -308,7 +308,7 @@ public: const ACE_Unbounded_Set &int_id_set, ACE_Hash_Multi_Map_Entry *&entry); - /* + /** * Associate @a ext_id with @a int_id_set. If @a ext_id is not in the map * then behaves just like bind. Otherwise, store the old value of * @a int_id_set into the "out" parameter and rebind the new parameters. @@ -319,7 +319,7 @@ public: const ACE_Unbounded_Set &int_id_set, ACE_Unbounded_Set &old_int_id_set); - /* + /** * Same as a normal rebind, except the map entry is also passed back * to the caller. The entry in this case will either be the newly * created entry, or the existing one. @@ -329,7 +329,7 @@ public: ACE_Unbounded_Set &old_int_id_set, ACE_Hash_Multi_Map_Entry *&entry); - /* + /** * Associate @a ext_id with @a int_id_set. If @a ext_id is not in the map * then behaves just like bind. Otherwise, store the old values * of @a ext_id and @a int_id_set into the "out" parameters and rebind the @@ -344,7 +344,7 @@ public: EXT_ID &old_ext_id, ACE_Unbounded_Set &old_int_id_set); - /* + /** * Same as a normal rebind, except the map entry is also passed back * to the caller. The entry in this case will either be the newly * created entry, or the existing one. @@ -373,7 +373,7 @@ public: int find (const EXT_ID &ext_id, ACE_Hash_Multi_Map_Entry *&entry) const; - /* + /** * Unbind (remove) the @a ext_id from the map. Don't return the * int_id to the caller (this is useful for collections where the * int_ids are *not* dynamically allocated...) @@ -403,7 +403,7 @@ public: /// linked lists of @c ACE_Hash_Multi_Map_Entry objects in the hash table. size_t total_size (void) const; - /* + /** * Returns a reference to the underlying @c ACE_LOCK. This makes it * possible to acquire the lock explicitly, which can be useful in * some cases if you instantiate the @c ACE_Atomic_Op with an @@ -532,7 +532,7 @@ protected: /// Performs unbind. Must be called with locks held. int unbind_i (ACE_Hash_Multi_Map_Entry *entry); - /* + /** * Resize the map. Must be called with locks held. * @note This method should never be called more than once or else all the * hashing will get screwed up as the size will change. @@ -580,7 +580,7 @@ protected: size_t cur_size (void) const; private: - /* + /** * Array of the pointers to @c ACE_Hash_Multi_Map_Entry objects, each of * which points to an @c ACE_Hash_Multi_Map_Entry that serves as the * beginning of a linked list of @c EXT_ID that hash to that bucket. @@ -600,7 +600,7 @@ private: ACE_UNIMPLEMENTED_FUNC (ACE_Hash_Multi_Map_Manager (const ACE_Hash_Multi_Map_Manager &)) }; -/* +/** * @class ACE_Hash_Multi_Map_Iterator_Base * * @brief Base iterator for the @c ACE_Hash_Multi_Map_Manager @@ -667,7 +667,7 @@ protected: ACE_Hash_Multi_Map_Entry *next_; }; -/* +/** * @class ACE_Hash_Multi_Map_Const_Iterator_Base * * @brief Base const iterator for the @c ACE_Hash_Multi_Map_Manager @@ -734,7 +734,7 @@ protected: ACE_Hash_Multi_Map_Entry *next_; }; -/* +/** * @class ACE_Hash_Multi_Map_Iterator * * @brief Forward iterator for the @c ACE_Hash_Multi_Map_Manager. @@ -780,7 +780,7 @@ public: ACE_ALLOC_HOOK_DECLARE; }; -/* +/** * @class ACE_Hash_Multi_Map_Const_Iterator * * @brief Const forward iterator for the @c ACE_Hash_Multi_Map_Manager. @@ -826,7 +826,7 @@ public: ACE_ALLOC_HOOK_DECLARE; }; -/* +/** * @class ACE_Hash_Multi_Map_Bucket_Iterator * * @brief Forward iterator for the @c ACE_Hash_Multi_Map_Manager which @@ -902,7 +902,7 @@ protected: ACE_Hash_Multi_Map_Entry *next_; }; -/* +/** * @class ACE_Hash_Multi_Map_Reverse_Iterator * * @brief Reverse iterator for the @c ACE_Hash_Multi_Map_Manager. diff --git a/dep/ACE_wrappers/ace/Hashable.h b/dep/ACE_wrappers/ace/Hashable.h index 6d07f8c55..83f26ffee 100644 --- a/dep/ACE_wrappers/ace/Hashable.h +++ b/dep/ACE_wrappers/ace/Hashable.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Hashable.h * * $Id: Hashable.h 80826 2008-03-04 14:51:23Z wotte $ @@ -23,7 +23,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_Hashable * * @brief ACE_Hashable diff --git a/dep/ACE_wrappers/ace/High_Res_Timer.h b/dep/ACE_wrappers/ace/High_Res_Timer.h index 086ce9f71..3716597e5 100644 --- a/dep/ACE_wrappers/ace/High_Res_Timer.h +++ b/dep/ACE_wrappers/ace/High_Res_Timer.h @@ -1,7 +1,7 @@ // -*- C++ -*- //========================================================================== -/* +/** * @file High_Res_Timer.h * * $Id: High_Res_Timer.h 89483 2010-03-15 09:48:01Z johnnyw $ @@ -26,7 +26,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_High_Res_Timer * * @brief A high resolution timer class wrapper that encapsulates @@ -102,7 +102,7 @@ class ACE_Export ACE_High_Res_Timer public: // = Initialization method. - /* + /** * global_scale_factor_ is set to @a gsf. All High_Res_Timers use * global_scale_factor_. This allows applications to set the scale * factor just once for all High_Res_Timers. Check @@ -124,7 +124,7 @@ public: # define ACE_HR_SCALE_CONVERSION (ACE_ONE_SECOND_IN_USECS) #endif /* ACE_HR_SCALE_CONVERSION */ - /* + /** * Sets the global_scale_factor to the value in the @a env * environment variable. Returns 0 on success, -1 on failure. * @note If @a env points to string "0" (value zero), this call will fail. @@ -134,7 +134,7 @@ public: static int get_env_global_scale_factor (const ACE_TCHAR *env = ACE_TEXT ("ACE_SCALE_FACTOR")); - /* + /** * Set (and return, for info) the global scale factor by sleeping * for @a usec and counting the number of intervening clock cycles. * Average over @a iterations of @a usec each. On some platforms, @@ -164,7 +164,7 @@ public: void stop (const ACE_OS::ACE_HRTimer_Op = ACE_OS::ACE_HRTIMER_GETTIME); /// Set @a tv to the number of microseconds elapsed. - /* + /** * Could overflow within hours on windows with emulated 64 bit int's * and a fast counter. VC++ and Borland normaly use __int64 and * so normaly don't have this problem. @@ -172,7 +172,7 @@ public: void elapsed_time (ACE_Time_Value &tv) const; /// Set @a nanoseconds to the number of nanoseconds elapsed. - /* + /** * Will overflow when measuring more than 194 day's. */ void elapsed_time (ACE_hrtime_t &nanoseconds) const; @@ -184,7 +184,7 @@ public: #endif /* ACE_HAS_POSIX_TIME */ /// Sets @a usecs to the elapsed (stop - start) time in microseconds. - /* + /** * Will overflow on windows when measuring more than appox. 2^^54 ticks. * Is still more than 48 days with a 4 Ghz counter. */ @@ -221,7 +221,7 @@ public: /// Declare the dynamic allocation hooks. ACE_ALLOC_HOOK_DECLARE; - /* + /** * Get the current "time" as the high resolution counter at this time. * This is intended to be useful for supplying to a ACE_Timer_Queue * as the gettimeofday function, thereby basing the timer calculations @@ -229,7 +229,7 @@ public: */ static ACE_Time_Value gettimeofday_hr (void); - /* + /** * @deprecated THIS FUNCTION IS DEPRECATED. PLEASE USE * INSTEAD! Calls * passing . This function can be used to parameterize @@ -250,7 +250,7 @@ public: const ACE_hrtime_t hrt); #if defined (linux) - /* + /** * This is used to find out the Mhz of the machine for the scale * factor. If there are any problems getting it, we just return 1 * (the default). @@ -259,7 +259,7 @@ public: #endif /* defined (linux) */ private: - /* + /** * For internal use: gets the high-resolution time using * . Except on platforms that require that the * be set, such as ACE_WIN32, uses the @@ -291,7 +291,7 @@ private: /// global_scale_factor_ == microseconds. static ACE_UINT32 global_scale_factor_; - /* + /** * Indicates the status of the global scale factor, * 0 = hasn't been set * 1 = been set diff --git a/dep/ACE_wrappers/ace/ICMP_Socket.h b/dep/ACE_wrappers/ace/ICMP_Socket.h index 150374240..251ec307a 100644 --- a/dep/ACE_wrappers/ace/ICMP_Socket.h +++ b/dep/ACE_wrappers/ace/ICMP_Socket.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file ICMP_Socket.h * * $Id: ICMP_Socket.h 80826 2008-03-04 14:51:23Z wotte $ @@ -30,7 +30,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_ICMP_Socket * * @brief An abstract class that forms the basis for usage of the ICMP @@ -41,7 +41,7 @@ class ACE_Export ACE_ICMP_Socket : public ACE_SOCK public: // = Initialization methods. - /* + /** * @name Data transfer routines. * * Data transfer routines. diff --git a/dep/ACE_wrappers/ace/INET_Addr.h b/dep/ACE_wrappers/ace/INET_Addr.h index 1daca3070..fcd26d0de 100644 --- a/dep/ACE_wrappers/ace/INET_Addr.h +++ b/dep/ACE_wrappers/ace/INET_Addr.h @@ -1,7 +1,7 @@ /* -*- C++ -*- */ //============================================================================= -/* +/** * @file INET_Addr.h * * $Id: INET_Addr.h 91626 2010-09-07 10:59:20Z johnnyw $ @@ -24,7 +24,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_INET_Addr * * @brief Defines a C++ wrapper facade for the Internet domain address @@ -52,7 +52,7 @@ public: const char host_name[], int address_family = AF_UNSPEC); - /* + /** * Initializes an ACE_INET_Addr from the @a address, which can be * "ip-number:port-number" (e.g., "tango.cs.wustl.edu:1234" or * "128.252.166.57:1234"). If there is no ':' in the @a address it @@ -62,7 +62,7 @@ public: explicit ACE_INET_Addr (const char address[], int address_family = AF_UNSPEC); - /* + /** * Creates an ACE_INET_Addr from a @a port_number and an Internet * @a ip_addr. This method assumes that @a port_number and @a ip_addr * are in host byte order. If you have addressing information in @@ -77,7 +77,7 @@ public: const char host_name[], const char protocol[] = "tcp"); - /* + /** * Uses getservbyname() to create an ACE_INET_Addr from a * @a port_name, an Internet @a ip_addr, and the @a protocol. This * method assumes that @a ip_addr is in host byte order. @@ -113,7 +113,7 @@ public: /// Initializes from another ACE_INET_Addr. int set (const ACE_INET_Addr &); - /* + /** * Initializes an ACE_INET_Addr from a @a port_number and the * remote @a host_name. If @a encode is non-zero then @a port_number is * converted into network byte order, otherwise it is assumed to be @@ -127,7 +127,7 @@ public: int encode = 1, int address_family = AF_UNSPEC); - /* + /** * Initializes an ACE_INET_Addr from a @a port_number and an Internet * @a ip_addr. If @a encode is non-zero then the port number and IP address * are converted into network byte order, otherwise they are assumed to be @@ -147,7 +147,7 @@ public: const char host_name[], const char protocol[] = "tcp"); - /* + /** * Uses getservbyname() to initialize an ACE_INET_Addr from a * @a port_name, an @a ip_addr, and the @a protocol. This assumes that * @a ip_addr is already in network byte order. @@ -156,7 +156,7 @@ public: ACE_UINT32 ip_addr, const char protocol[] = "tcp"); - /* + /** * Initializes an ACE_INET_Addr from the @a addr, which can be * "ip-number:port-number" (e.g., "tango.cs.wustl.edu:1234" or * "128.252.166.57:1234"). If there is no ':' in the @a address it @@ -196,7 +196,7 @@ public: /// Set a pointer to the address. virtual void set_addr (void *, int len, int map); - /* + /** * Transform the current ACE_INET_Addr address into string format. * If @a ipaddr_format is ttrue this produces "ip-number:port-number" * (e.g., "128.252.166.57:1234"), whereas if @a ipaddr_format is false @@ -208,7 +208,7 @@ public: size_t size, int ipaddr_format = 1) const; - /* + /** * Initializes an ACE_INET_Addr from the @a address, which can be * "ip-addr:port-number" (e.g., "tango.cs.wustl.edu:1234"), * "ip-addr:port-name" (e.g., "tango.cs.wustl.edu:telnet"), @@ -226,7 +226,7 @@ public: */ #endif /* ACE_HAS_WCHAR */ - /* + /** * Sets the port number without affecting the host name. If * @a encode is enabled then @a port_number is converted into network * byte order, otherwise it is assumed to be in network byte order @@ -235,7 +235,7 @@ public: void set_port_number (u_short, int encode = 1); - /* + /** * Sets the address without affecting the port number. If * @a encode is enabled then @a ip_addr is converted into network * byte order, otherwise it is assumed to be in network byte order @@ -251,7 +251,7 @@ public: int map = 0); #if (defined (__linux__) || defined (ACE_WIN32)) && defined (ACE_HAS_IPV6) - /* + /** * Sets the interface that should be used for this address. This only has * an effect when the address is link local, otherwise it does nothing. */ @@ -261,7 +261,7 @@ public: /// Return the port number, converting it into host byte-order. u_short get_port_number (void) const; - /* + /** * Return the character representation of the name of the host, * storing it in the @a hostname (which is assumed to be * @a hostnamelen bytes long). This version is reentrant. If @@ -276,7 +276,7 @@ public: size_t hostnamelen) const; #endif /* ACE_HAS_WCHAR */ - /* + /** * Return the character representation of the hostname. This * version is non-reentrant since it returns a pointer to a static * data area. You should therefore either (1) do a "deep copy" of @@ -286,14 +286,14 @@ public: */ const char *get_host_name (void) const; - /* + /** * Return the "dotted decimal" Internet address representation of * the hostname storing it in the @a addr (which is assumed to be * @a addr_size bytes long). This version is reentrant. */ const char *get_host_addr (char *addr, int addr_size) const; - /* + /** * Return the "dotted decimal" Internet address representation of * the hostname. This version is non-reentrant since it returns a * pointer to a static data area. You should therefore either @@ -327,7 +327,7 @@ public: bool is_ipv4_compat_ipv6 (void) const; #endif /* ACE_HAS_IPV6 */ - /* + /** * Returns @c true if @c this is less than @a rhs. In this context, * "less than" is defined in terms of IP address and TCP port * number. This operator makes it possible to use @c ACE_INET_Addrs diff --git a/dep/ACE_wrappers/ace/IOStream.h b/dep/ACE_wrappers/ace/IOStream.h index 460949546..de154cd1b 100644 --- a/dep/ACE_wrappers/ace/IOStream.h +++ b/dep/ACE_wrappers/ace/IOStream.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file IOStream.h * * $Id: IOStream.h 92102 2010-09-30 08:14:15Z johnnyw $ @@ -99,7 +99,7 @@ ACE_END_VERSIONED_NAMESPACE_DECL ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_Streambuf * * @brief Create your custom streambuf by providing and ACE_*_Stream @@ -155,7 +155,7 @@ class ACE_Export ACE_Streambuf : public streambuf { public: - /* + /** * If the default allocation strategey were used the common buffer * would be deleted when the object destructs. Since we are * providing separate read/write buffers, it is up to us to manage @@ -166,7 +166,7 @@ public: /// Get the current Time_Value pointer and provide a new one. ACE_Time_Value *recv_timeout (ACE_Time_Value *tv = 0); - /* + /** * Use this to allocate a new/different buffer for put operations. * If you do not provide a buffer pointer, one will be allocated. * That is the preferred method. If you do provide a buffer, the @@ -183,7 +183,7 @@ public: /// pbase + put_avail = pptr u_int put_avail (void); - /* + /** * Use this to allocate a new/different buffer for get operations. * If you do not provide a buffer pointer, one will be allocated. * That is the preferred method. If you do provide a buffer, the @@ -263,7 +263,7 @@ protected: ACE_Time_Value recv_timeout_value_; ACE_Time_Value *recv_timeout_; - /* + /** * syncin is called when the input needs to be synced with the * source file. In a filebuf, this results in the system * call being used. We can't do that on socket-like connections, so @@ -282,14 +282,14 @@ protected: /// because it gets used sometimes in different context. int flushbuf (void); - /* + /** * fillbuf is called in a couple of places. This is the worker of * underflow. It will attempt to fill the read buffer from the * peer. */ int fillbuf (void); - /* + /** * Used by fillbuf and others to get exactly one byte from the peer. * recv_n is used to be sure we block until something is available. * It is virtual because we really need to override it for @@ -297,7 +297,7 @@ protected: */ virtual int get_one_byte (void); - /* + /** * Stream connections and "unconnected connections" (ie -- * datagrams) need to work just a little differently. We derive * custom Streambuf objects for them and provide these functions at diff --git a/dep/ACE_wrappers/ace/IOStream_T.h b/dep/ACE_wrappers/ace/IOStream_T.h index 3b59b354f..286f1a714 100644 --- a/dep/ACE_wrappers/ace/IOStream_T.h +++ b/dep/ACE_wrappers/ace/IOStream_T.h @@ -1,7 +1,7 @@ /* -*- C++ -*- */ //============================================================================= -/* +/** * @file IOStream_T.h * * $Id: IOStream_T.h 80826 2008-03-04 14:51:23Z wotte $ @@ -45,7 +45,7 @@ template class ACE_Streambuf_T : public ACE_Streambuf { public: - /* + /** * We will be given a STREAM by the iostream object which creates * us. See the ACE_IOStream template for how that works. Like * other streambuf objects, we can be input-only, output-only or @@ -78,7 +78,7 @@ protected: STREAM *peer_; }; -/* +/** * @class ACE_IOStream * * @brief A template adapter for creating an iostream-like object using @@ -115,7 +115,7 @@ public: ACE_IOStream (STREAM &stream, u_int streambuf_size = ACE_STREAMBUF_SIZE); - /* + /** * The default constructor. This will initiailze your STREAM and * then setup the iostream baseclass to use a custom streambuf based * on STREAM. @@ -130,7 +130,7 @@ public: /// function. virtual int close (void); - /* + /** * Returns 1 if we're at the end of the , i.e., if the * connection has closed down or an error has occurred, else 0. * Under the covers, calls the streambuf's @a timeout function @@ -141,7 +141,7 @@ public: int eof (void) const; # if defined (ACE_HAS_STRING_CLASS) - /* + /** * A simple string operator. The base has them for char* * but that isn't always the best thing for a . If we don't * provide our own here, we may not get what we want. @@ -240,7 +240,7 @@ private: ACE_UNIMPLEMENTED_FUNC (ssize_t recv_n (...)) }; -/* +/** * @class ACE_SOCK_Dgram_SC * * @brief "Dgram_SC" is short for "Datagram Self-Contained." diff --git a/dep/ACE_wrappers/ace/IO_Cntl_Msg.h b/dep/ACE_wrappers/ace/IO_Cntl_Msg.h index b72af6ba8..1b20f53d4 100644 --- a/dep/ACE_wrappers/ace/IO_Cntl_Msg.h +++ b/dep/ACE_wrappers/ace/IO_Cntl_Msg.h @@ -1,7 +1,7 @@ // -*- C++ -*- //========================================================================== -/* +/** * @file IO_Cntl_Msg.h * * $Id: IO_Cntl_Msg.h 80826 2008-03-04 14:51:23Z wotte $ @@ -25,7 +25,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_IO_Cntl_Msg * * @brief Data format for IOCTL messages diff --git a/dep/ACE_wrappers/ace/IO_SAP.h b/dep/ACE_wrappers/ace/IO_SAP.h index c53ee9905..b460c2346 100644 --- a/dep/ACE_wrappers/ace/IO_SAP.h +++ b/dep/ACE_wrappers/ace/IO_SAP.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file IO_SAP.h * * $Id: IO_SAP.h 80826 2008-03-04 14:51:23Z wotte $ @@ -25,7 +25,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_IO_SAP * * @brief Defines the methods for the base class of the ACE_IO_SAP @@ -48,14 +48,14 @@ public: // = Common I/O handle options related to files. - /* + /** * Enable asynchronous I/O (ACE_SIGIO), urgent data (ACE_SIGURG), * non-blocking I/O (ACE_NONBLOCK), or close-on-exec (ACE_CLOEXEC), * which is passed as the @a value. */ int enable (int value) const; - /* + /** * Disable asynchronous I/O (ACE_SIGIO), urgent data (ACE_SIGURG), * non-blocking I/O (ACE_NONBLOCK), or close-on-exec (ACE_CLOEXEC), * which is passed as the @a value. diff --git a/dep/ACE_wrappers/ace/IPC_SAP.h b/dep/ACE_wrappers/ace/IPC_SAP.h index 22d5e20e4..43a2125c5 100644 --- a/dep/ACE_wrappers/ace/IPC_SAP.h +++ b/dep/ACE_wrappers/ace/IPC_SAP.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file IPC_SAP.h * * $Id: IPC_SAP.h 80826 2008-03-04 14:51:23Z wotte $ @@ -23,7 +23,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_IPC_SAP * * @brief Defines the member functions for the base class of the @@ -38,14 +38,14 @@ public: // = Common I/O handle options related to sockets. - /* + /** * Enable asynchronous I/O (ACE_SIGIO), urgent data (ACE_SIGURG), * non-blocking I/O (ACE_NONBLOCK), or close-on-exec (ACE_CLOEXEC), * which is passed as the @a value. */ int enable (int value) const; - /* + /** * Disable asynchronous I/O (ACE_SIGIO), urgent data (ACE_SIGURG), * non-blocking I/O (ACE_NONBLOCK), or close-on-exec (ACE_CLOEXEC), * which is passed as the @a value. @@ -71,7 +71,7 @@ protected: ACE_IPC_SAP (void); /// Protected destructor. - /* + /** * Not a virtual destructor. Protected destructor to prevent * operator delete() from being called through a base class * ACE_IPC_SAP pointer/reference. diff --git a/dep/ACE_wrappers/ace/If_Then_Else.h b/dep/ACE_wrappers/ace/If_Then_Else.h index 0397cb085..eca1d9dd8 100644 --- a/dep/ACE_wrappers/ace/If_Then_Else.h +++ b/dep/ACE_wrappers/ace/If_Then_Else.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file If_Then_Else.h * * @c ACE::If_Then_Else traits template based on the @c IfThenElse @@ -24,7 +24,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL namespace ACE { - /* + /** * @struct If_Then_Else * * @brief Compile-time selection of type based on a boolean value. @@ -54,7 +54,7 @@ namespace ACE template struct If_Then_Else; - /* + /** * @struct If_Then_Else * * @brief Select of type @a Ta if boolean value is @c true. @@ -68,7 +68,7 @@ namespace ACE typedef Ta result_type; }; - /* + /** * @struct If_Then_Else * * @brief Select of type @a Tb if boolean value is @c false. diff --git a/dep/ACE_wrappers/ace/Init_ACE.h b/dep/ACE_wrappers/ace/Init_ACE.h index 4bc3374fc..2bbaafc3e 100644 --- a/dep/ACE_wrappers/ace/Init_ACE.h +++ b/dep/ACE_wrappers/ace/Init_ACE.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Init_ACE.h * * $Id: Init_ACE.h 88794 2010-02-01 19:15:36Z schmidt $ @@ -30,7 +30,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL namespace ACE { - /* + /** * This method initializes the ACE library services and initializes * ACE's internal resources. Applications should not instantiate * ACE classes or call methods on objects of these classes until @a @@ -41,7 +41,7 @@ namespace ACE */ extern ACE_Export int init (void); - /* + /** * Finalize the ACE library services and releases ACE's internal * resources. In general, do not instantiate ACE classes or call * methods on objects of these classes after @a ACE::fini() has been @@ -55,7 +55,7 @@ namespace ACE // private: // Used internally, so not exported. - /* + /** * Counter to match / calls. must increment it; * must decrement it. then does nothing until it * reaches 0. diff --git a/dep/ACE_wrappers/ace/Intrusive_Auto_Ptr.h b/dep/ACE_wrappers/ace/Intrusive_Auto_Ptr.h index 660727de5..9c6ad3482 100644 --- a/dep/ACE_wrappers/ace/Intrusive_Auto_Ptr.h +++ b/dep/ACE_wrappers/ace/Intrusive_Auto_Ptr.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Intrusive_Auto_Ptr.h * * $Id: Intrusive_Auto_Ptr.h 81388 2008-04-23 14:02:05Z johnnyw $ @@ -29,7 +29,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL // Forward decl. template class ACE_Intrusive_Auto_Ptr; -/* +/** * @class ACE_Intrusive_Auto_Ptr * * @brief This class implements support for a reference counted @@ -123,7 +123,7 @@ protected: /// Equality operator that returns @c true if both /// ACE_Intrusive_Auto_Ptr objects point to the same underlying /// representation. It does not compare the actual pointers. - /* + /** * @note It also returns @c true if both objects have just been * instantiated and not used yet. */ diff --git a/dep/ACE_wrappers/ace/Intrusive_Auto_Ptr.inl b/dep/ACE_wrappers/ace/Intrusive_Auto_Ptr.inl index 80db64f7b..4feb83db7 100644 --- a/dep/ACE_wrappers/ace/Intrusive_Auto_Ptr.inl +++ b/dep/ACE_wrappers/ace/Intrusive_Auto_Ptr.inl @@ -108,7 +108,7 @@ ACE_Intrusive_Auto_Ptr::ACE_Intrusive_Auto_Ptr (const ACE_Intrusive_Auto_Ptr< /// Equality operator that returns @c true if both /// ACE_Intrusive_Auto_Ptr objects point to the same underlying /// representation. It does not compare the actual pointers. - /* + /** * @note It also returns @c true if both objects have just been * instantiated and not used yet. */ diff --git a/dep/ACE_wrappers/ace/Intrusive_List.h b/dep/ACE_wrappers/ace/Intrusive_List.h index 3c9e79e1e..b5f32f683 100644 --- a/dep/ACE_wrappers/ace/Intrusive_List.h +++ b/dep/ACE_wrappers/ace/Intrusive_List.h @@ -1,7 +1,7 @@ /* -*- C++ -*- */ //============================================================================= -/* +/** * @file Intrusive_List.h * * $Id: Intrusive_List.h 91688 2010-09-09 11:21:50Z johnnyw $ @@ -22,7 +22,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_Intrusive_List * * @brief Implement an intrusive double linked list @@ -90,7 +90,7 @@ public: T *tail (void) const; /// Remove a element from the list - /* + /** * Verify that the element is still in the list before removing it. */ void remove (T *node); @@ -99,7 +99,7 @@ public: void swap(ACE_Intrusive_List & rhs); /// Remove a element from the list without checking - /* + /** * No attempts are performed to check if T* really belongs to the * list. The effects of removing an invalid element are unspecified */ diff --git a/dep/ACE_wrappers/ace/Intrusive_List_Node.h b/dep/ACE_wrappers/ace/Intrusive_List_Node.h index d91df2143..dcfbd89e7 100644 --- a/dep/ACE_wrappers/ace/Intrusive_List_Node.h +++ b/dep/ACE_wrappers/ace/Intrusive_List_Node.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Intrusive_List_Node.h * * $Id: Intrusive_List_Node.h 83968 2008-12-04 08:11:41Z johnnyw $ @@ -22,7 +22,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_Intrusive_List_Node * * @brief Implement the requirements for ACE_Intrusive_List @@ -54,7 +54,7 @@ public: protected: /// Constructor - /* + /** * The constructor is protected, because only derived classes should * be instantiated. */ diff --git a/dep/ACE_wrappers/ace/LOCK_SOCK_Acceptor.h b/dep/ACE_wrappers/ace/LOCK_SOCK_Acceptor.h index 22eb7b5fb..6eff834eb 100644 --- a/dep/ACE_wrappers/ace/LOCK_SOCK_Acceptor.h +++ b/dep/ACE_wrappers/ace/LOCK_SOCK_Acceptor.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file LOCK_SOCK_Acceptor.h * * $Id: LOCK_SOCK_Acceptor.h 82723 2008-09-16 09:35:44Z johnnyw $ @@ -23,7 +23,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_LOCK_SOCK_Acceptor * * @brief Specialize ACE_SOCK_Acceptor to lock around ; diff --git a/dep/ACE_wrappers/ace/LSOCK.h b/dep/ACE_wrappers/ace/LSOCK.h index 816f7ebb4..7cf7abc47 100644 --- a/dep/ACE_wrappers/ace/LSOCK.h +++ b/dep/ACE_wrappers/ace/LSOCK.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file LSOCK.h * * $Id: LSOCK.h 80826 2008-03-04 14:51:23Z wotte $ @@ -28,7 +28,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_LSOCK * * @brief Create a Local ACE_SOCK, which is used for passing file diff --git a/dep/ACE_wrappers/ace/LSOCK_Acceptor.h b/dep/ACE_wrappers/ace/LSOCK_Acceptor.h index cf5f7e938..b10c55c5d 100644 --- a/dep/ACE_wrappers/ace/LSOCK_Acceptor.h +++ b/dep/ACE_wrappers/ace/LSOCK_Acceptor.h @@ -1,7 +1,7 @@ /* -*- C++ -*- */ //============================================================================= -/* +/** * @file LSOCK_Acceptor.h * * $Id: LSOCK_Acceptor.h 82723 2008-09-16 09:35:44Z johnnyw $ @@ -32,7 +32,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL // Forward decl. class ACE_Reactor; -/* +/** * @class ACE_LSOCK_Acceptor * * @brief Defines the format and interface for the acceptor side of the diff --git a/dep/ACE_wrappers/ace/LSOCK_CODgram.h b/dep/ACE_wrappers/ace/LSOCK_CODgram.h index 407695f70..c2858a8ed 100644 --- a/dep/ACE_wrappers/ace/LSOCK_CODgram.h +++ b/dep/ACE_wrappers/ace/LSOCK_CODgram.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file LSOCK_CODgram.h * * $Id: LSOCK_CODgram.h 84419 2009-02-11 22:28:11Z shuston $ @@ -29,7 +29,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_LSOCK_CODgram * * @brief Defines a fully specified (sometimes called "connected") UNIX-domain @@ -52,11 +52,11 @@ public: /// Default constructor; requires a call to open() prior to communication. ACE_LSOCK_CODgram (void); - /* + /** * @name Initialization methods */ //@{ - /* + /** * Initialize a fully-specified datagram socket. * * @param remote_sap Remote/peer address. This should be an ACE_UNIX_Addr @@ -73,7 +73,7 @@ public: int protocol_family = PF_UNIX, int protocol = 0); - /* + /** * Initialize a fully-specified datagram socket. * * @retval 0 if no error. diff --git a/dep/ACE_wrappers/ace/LSOCK_Connector.h b/dep/ACE_wrappers/ace/LSOCK_Connector.h index 36ed90b5e..03d0fd0a5 100644 --- a/dep/ACE_wrappers/ace/LSOCK_Connector.h +++ b/dep/ACE_wrappers/ace/LSOCK_Connector.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file LSOCK_Connector.h * * $Id: LSOCK_Connector.h 80826 2008-03-04 14:51:23Z wotte $ @@ -28,7 +28,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_LSOCK_Connector * * @brief Defines the format and interface for the connector side of @@ -41,7 +41,7 @@ public: /// Default constructor. ACE_LSOCK_Connector (void); - /* + /** * Actively connect and produce a @a new_stream if things go well. * All arguments are relayed to the ACE_SOCK_Connector constructor * for handling. @@ -55,7 +55,7 @@ public: int flags = 0, int perms = 0); - /* + /** * Actively connect and produce a @a new_stream if things go well. * The @c ACE_SOCK_Connector::connect() method is called to perform * the actual connection attempt. diff --git a/dep/ACE_wrappers/ace/LSOCK_Dgram.h b/dep/ACE_wrappers/ace/LSOCK_Dgram.h index 126b06411..e21a3ce9e 100644 --- a/dep/ACE_wrappers/ace/LSOCK_Dgram.h +++ b/dep/ACE_wrappers/ace/LSOCK_Dgram.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file LSOCK_Dgram.h * * $Id: LSOCK_Dgram.h 80826 2008-03-04 14:51:23Z wotte $ @@ -28,7 +28,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_LSOCK_Dgram * * @brief Create a Local ACE_SOCK datagram. diff --git a/dep/ACE_wrappers/ace/LSOCK_Stream.h b/dep/ACE_wrappers/ace/LSOCK_Stream.h index 3271baebf..bdaed30a3 100644 --- a/dep/ACE_wrappers/ace/LSOCK_Stream.h +++ b/dep/ACE_wrappers/ace/LSOCK_Stream.h @@ -1,7 +1,7 @@ /* -*- C++ -*- */ //============================================================================= -/* +/** * @file LSOCK_Stream.h * * $Id: LSOCK_Stream.h 92140 2010-10-04 12:37:52Z johnnyw $ @@ -29,7 +29,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_LSOCK_Stream * * @brief Create a Local ACE_SOCK stream. diff --git a/dep/ACE_wrappers/ace/Lib_Find.cpp b/dep/ACE_wrappers/ace/Lib_Find.cpp index 06efba6be..c5a0610f0 100644 --- a/dep/ACE_wrappers/ace/Lib_Find.cpp +++ b/dep/ACE_wrappers/ace/Lib_Find.cpp @@ -26,7 +26,7 @@ extern "C" int LIB$FIND_IMAGE_SYMBOL(...); -/* +/** * @internal * * Implements a class to register symbols and addresses for use with DLL diff --git a/dep/ACE_wrappers/ace/Lib_Find.h b/dep/ACE_wrappers/ace/Lib_Find.h index 84d328076..133b83ffb 100644 --- a/dep/ACE_wrappers/ace/Lib_Find.h +++ b/dep/ACE_wrappers/ace/Lib_Find.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Lib_Find.h * * All the static function calls needed to search and open shared @@ -28,7 +28,7 @@ namespace ACE { // = Methods for searching and opening shared libraries. - /* + /** * Finds the file @a filename either using an absolute path or using * a relative path in conjunction with ACE_LD_SEARCH_PATH (e.g., * $LD_LIBRARY_PATH on UNIX or the directories scaned by Win32 API @@ -42,7 +42,7 @@ namespace ACE ACE_TCHAR pathname[], size_t maxpathnamelen); - /* + /** * Uses @c ldfind to locate and open the appropriate @a filename and * returns a pointer to the file, else it returns a NULL * pointer. @a type specifies how the file should be open. @@ -50,7 +50,7 @@ namespace ACE extern ACE_Export FILE *ldopen (const ACE_TCHAR *filename, const ACE_TCHAR *type); - /* + /** * Transforms @a entry_point into a form that can be located in a * dynamic library using . For example, with Win32/Borland * extern "C" functions which use the default calling convention @@ -61,7 +61,7 @@ namespace ACE #if defined (ACE_OPENVMS) - /* + /** * Registers an @a entry_point and its address for later retrieval * through the ACE::ldsymbol () method. * For use in cases where the OS compiler encodes long symbolnames. @@ -69,7 +69,7 @@ namespace ACE extern ACE_Export void ldregister (const ACE_TCHAR *entry_point, void* entry_addr); - /* + /** * Looks up an @a entry_point address either from previously registered * symbols or through ACE_OS::dlsym (). * Returns 0 in case the entry_point is not found, otherwise nonzero. @@ -79,7 +79,7 @@ namespace ACE const ACE_TCHAR *entry_point); #endif - /* + /** * Returns the temporary directory including the trailing slash in * @a buffer. Returns -1 for an error or if the buffer_len is not * long enough. @@ -100,7 +100,7 @@ namespace ACE /// the number of replacements made. extern ACE_Export size_t strrepl (char *s, char search, char replace); - /* + /** * Splits string into pieces separated by the string . * is an opaque cookie handed back by the call to store * its state for the next invocation, thus making it re-entrant. diff --git a/dep/ACE_wrappers/ace/Local_Memory_Pool.h b/dep/ACE_wrappers/ace/Local_Memory_Pool.h index 34724f5ca..4216a97a7 100644 --- a/dep/ACE_wrappers/ace/Local_Memory_Pool.h +++ b/dep/ACE_wrappers/ace/Local_Memory_Pool.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Local_Memory_Pool.h * * $Id: Local_Memory_Pool.h 80826 2008-03-04 14:51:23Z wotte $ @@ -26,7 +26,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_Local_Memory_Pool_Options * * @brief Helper class for Local Memory Pool constructor options. @@ -38,7 +38,7 @@ class ACE_Export ACE_Local_Memory_Pool_Options { }; -/* +/** * @class ACE_Local_Memory_Pool * * @brief Make a memory pool that is based on C++ new/delete. This is @@ -69,7 +69,7 @@ public: /// Instruct the memory pool to release all of its resources. virtual int release (int destroy = 1); - /* + /** * Sync @a len bytes of the memory region to the backing store * starting at base_addr_>. If @a len == -1 then sync the * whole region. @@ -80,7 +80,7 @@ public: /// starting at @a add_. virtual int sync (void *addr, size_t len, int flags = MS_SYNC); - /* + /** * Change the protection of the pages of the mapped region to @a prot * starting at base_addr_> up to @a len bytes. If @a len == -1 * then change protection of all pages in the mapped region. @@ -92,7 +92,7 @@ public: virtual int protect (void *addr, size_t len, int prot = PROT_RDWR); #if defined (ACE_WIN32) - /* + /** * Win32 Structural exception selector. The return value decides * how to handle memory pool related structural exceptions. Returns * 1, 0, or , -1. @@ -100,7 +100,7 @@ public: virtual int seh_selector (void *); #endif /* ACE_WIN32 */ - /* + /** * Try to extend the virtual address space so that @a addr is now * covered by the address mapping. Always returns 0 since we can't * remap a local memory pool. diff --git a/dep/ACE_wrappers/ace/Local_Name_Space.h b/dep/ACE_wrappers/ace/Local_Name_Space.h index 9a7ee0a97..c9606d02b 100644 --- a/dep/ACE_wrappers/ace/Local_Name_Space.h +++ b/dep/ACE_wrappers/ace/Local_Name_Space.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Local_Name_Space.h * * $Id: Local_Name_Space.h 80826 2008-03-04 14:51:23Z wotte $ @@ -27,7 +27,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL class ACE_NS_WString; -/* +/** * @class ACE_NS_String * * @brief This class and ACE_NS_Internal are used as Adapters to work @@ -90,7 +90,7 @@ private: bool delete_rep_; }; -/* +/** * @class ACE_NS_Internal * * @brief This class and ACE_NS_String are used as Adapters to work diff --git a/dep/ACE_wrappers/ace/Local_Name_Space_T.h b/dep/ACE_wrappers/ace/Local_Name_Space_T.h index a0cc7e89c..56b445b4d 100644 --- a/dep/ACE_wrappers/ace/Local_Name_Space_T.h +++ b/dep/ACE_wrappers/ace/Local_Name_Space_T.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Local_Name_Space_T.h * * $Id: Local_Name_Space_T.h 91688 2010-09-09 11:21:50Z johnnyw $ @@ -42,7 +42,7 @@ ACE_END_VERSIONED_NAMESPACE_DECL ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_Name_Space_Map * * @brief This class serves as a Proxy that ensures our process always @@ -87,7 +87,7 @@ public: int close (ALLOCATOR *alloc); }; -/* +/** * @class ACE_Local_Name_Space * * @brief Maintaining accesses Local Name Server Database. Allows to @@ -108,7 +108,7 @@ public: /// "Do-nothing" constructor. ACE_Local_Name_Space (void); - /* + /** * Specifies the scope of this namespace, opens and memory-maps the * associated file (if accessible) or contacts the dedicated name * server process for NET_LOCAL namespace. @@ -116,7 +116,7 @@ public: ACE_Local_Name_Space (ACE_Naming_Context::Context_Scope_Type scope_in, ACE_Name_Options *name_options); - /* + /** * Specifies the scope of this namespace, opens and memory-maps the * associated file (if accessible) or contacts the dedicated name * server process for NET_LOCAL namespace. @@ -132,7 +132,7 @@ public: const ACE_NS_WString &value, const char *type = ""); - /* + /** * Overwrite the value or type of an existing name in a * ACE_Local_Name_Space or bind a new name to the context, if it * didn't exist yet. (Wide charcter strings interface). @@ -176,7 +176,7 @@ public: virtual int list_types_i (ACE_WSTRING_SET &set, const ACE_NS_WString &pattern); - /* + /** * Get a set of names matching a specified pattern (wchars). Matching * means the names must begin with the pattern string. Returns the * complete binding associated each pattern match. @@ -186,7 +186,7 @@ public: virtual int list_name_entries_i (ACE_BINDING_SET &set, const ACE_NS_WString &pattern); - /* + /** * Get a set of values matching a specified pattern (wchars). Matching * means the values must begin with the pattern string. Returns the * complete binding associated each pattern match. @@ -196,7 +196,7 @@ public: virtual int list_value_entries_i (ACE_BINDING_SET &set, const ACE_NS_WString &pattern); - /* + /** * Get a set of types matching a specified pattern (wchars). Matching * means the types must begin with the pattern string. Returns the * complete binding associated each pattern match. diff --git a/dep/ACE_wrappers/ace/Local_Tokens.h b/dep/ACE_wrappers/ace/Local_Tokens.h index f3361acae..a55537036 100644 --- a/dep/ACE_wrappers/ace/Local_Tokens.h +++ b/dep/ACE_wrappers/ace/Local_Tokens.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Local_Tokens.h * * $Id: Local_Tokens.h 91626 2010-09-07 10:59:20Z johnnyw $ @@ -70,7 +70,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL // 1. -/* +/** * @class ACE_TOKEN_CONST * * @brief Not a public interface. @@ -99,7 +99,7 @@ namespace ACE_TOKEN_CONST class ACE_Token_Proxy; // 3.. -/* +/** * @class ACE_TPQ_Entry * * @brief Token Proxy Queue entry. Used in the ACE_Token_Proxy_Queue @@ -204,7 +204,7 @@ typedef ACE_TPQ_Entry ACE_TPQ_ENTRY; typedef ACE_TSS ACE_TPQ_ENTRY; #endif /* ACE_NO_TSS_TOKENS */ -/* +/** * @class ACE_TSS_TPQ_Entry * * @brief ACE_TSS_TPQ_Entry @@ -256,7 +256,7 @@ private: class ACE_Token_Proxy_Queue; // c.. -/* +/** * @class ACE_TPQ_Iterator * * @brief Iterates through ACE_Token_Proxy_Queues. @@ -289,7 +289,7 @@ private: }; // 4.. -/* +/** * @class ACE_Token_Proxy_Queue * * @brief Token waiter list. @@ -314,7 +314,7 @@ public: /// Destructor. ~ACE_Token_Proxy_Queue (void); - /* + /** * Enqueue a proxy, nesting level, client_id, and a magic cookie at * the given position in the list. If the position is -1, we * enqueue at the end of the list (I think). @@ -352,7 +352,7 @@ protected: }; // 5.. -/* +/** * @class ACE_Tokens * * @brief Abstract representation of ACE tokens. @@ -438,14 +438,14 @@ public: /// Dump the state of the class. void dump (void) const; - /* + /** * These are the Token types supported by the library at ship time. * There is no restriction on the number of Token types added by * "3rd parties." These are only necessary for the Token Server. */ enum TOKEN_TYPES { MUTEX, RWLOCK }; - /* + /** * Provides a manual RTTI mechanism. This method is used only by * ACE_Token_Request so that the type of a token can be sent to a * remote Token Server. @@ -482,7 +482,7 @@ protected: class ACE_Local_Mutex; // 6.. -/* +/** * @class ACE_Mutex_Token * * @brief Class that acquires, renews, and releases a process-local @@ -511,7 +511,7 @@ public: // that multiple proxies (e.g. ACE_Local_Mutex) can use the same // token. - /* + /** * Returns 0 on success, -1 on failure with as * the reason. If errnum == EWOULDBLOCK, and notify == 1, * has been called on the current @@ -525,7 +525,7 @@ public: /// Same as acquire, but fails if would block virtual int tryacquire (ACE_TPQ_Entry *caller); - /* + /** * An optimized method that efficiently reacquires the token if no * other threads are waiting. This is useful for situations where * you don't want to degrade the quality of service if there are @@ -548,7 +548,7 @@ public: virtual int renew (ACE_TPQ_Entry *caller, int requeue_position); - /* + /** * Relinquish the token. If there are any waiters then the next one * in line gets it. If the caller is not the owner, caller is * removed from the waiter list. @@ -577,7 +577,7 @@ private: }; // 12.. -/* +/** * @class ACE_RW_Token * * @brief Class that acquires, renews, and releases a process-local @@ -606,7 +606,7 @@ public: // that multiple proxies (e.g. ACE_Local_Mutex) can use the same // token. - /* + /** * Returns 0 on success, -1 on failure with as * the reason. If errnum == EWOULDBLOCK, and notify == 1, * has been called on the current @@ -620,7 +620,7 @@ public: /// Same as acquire except fails on would block virtual int tryacquire (ACE_TPQ_Entry *caller); - /* + /** * An optimized method that efficiently reacquires the token if no * other threads are waiting. This is useful for situations where * you don't want to degrade the quality of service if there are @@ -643,7 +643,7 @@ public: virtual int renew (ACE_TPQ_Entry *caller, int requeue_position); - /* + /** * Relinquish the token. If there are any waiters then the next one * in line gets it. If the caller is not the owner, caller is * removed from the waiter list. @@ -681,7 +681,7 @@ protected: }; // a.. -/* +/** * @class ACE_Token_Name * * @brief Allows Token_Manger to identify tokens. @@ -725,7 +725,7 @@ private: }; // 7.. -/* +/** * @class ACE_Token_Proxy * * @brief Abstract representation of ACE tokens. @@ -763,7 +763,7 @@ public: /// Destructor. virtual ~ACE_Token_Proxy (void); - /* + /** * Open the . * @param name The string uniquely identifying the token. * @param ignore_deadlock Can be 1 to disable deadlock notifications. @@ -831,14 +831,14 @@ public: /// thread-specific data. virtual const ACE_TCHAR *client_id (void) const; - /* + /** * Set the client_id for the calling thread. I strongly recommend * that this not be used unless you really know what you're doing. * I use this in the Token Server, and it caused many headaches. */ virtual void client_id (const ACE_TCHAR *client_id); - /* + /** * Return the name of the token. This is important for use within * the token servers (local and remote) as well as with token * collections. So, all derivations of ACE_Token_Proxy must be able to @@ -848,7 +848,7 @@ public: */ virtual const ACE_TCHAR *name (void) const; - /* + /** * This should really be called . This is called * by ACE_Token_xx's when another proxy enters the waiting list and * requests that the current token holder be notified. @@ -868,7 +868,7 @@ public: /// Dump the state of the class. void dump (void) const; - /* + /** * This method can be used be Tokens (e.g. Readers/Writer Tokens) to * distinguish between Proxy types. For instance a Reader proxy * should return a different type value than a Writer proxy. The @@ -903,7 +903,7 @@ protected: }; // 8.. -/* +/** * @class ACE_Null_Token * * @brief No op class for nonthreaded platform protocols. @@ -953,7 +953,7 @@ public: }; // 9.. -/* +/** * @class ACE_Local_Mutex * * @brief Class that acquires, renews, and releases a synchronization @@ -974,7 +974,7 @@ public: class ACE_Export ACE_Local_Mutex : public ACE_Token_Proxy { public: - /* + /** * Constructor. * @param token_name Uniquely id's the token. * @param ignore_deadlock Will allow deadlock to occur (useful for testing). @@ -999,7 +999,7 @@ protected: }; // *. -/* +/** * @class ACE_Local_RLock * * @brief Class that acquires, renews, and releases a readers lock that @@ -1028,7 +1028,7 @@ class ACE_Export ACE_Local_RLock : public ACE_Token_Proxy public: // = Initialization and termination. - /* + /** * Constructor. * @param token_name Uniquely id's the token. * @param ignore_deadlock Will allow deadlock to occur (useful for testing). @@ -1056,7 +1056,7 @@ protected: }; // *. -/* +/** * @class ACE_Local_WLock * * @brief Class that acquires, renews, and releases a writer lock that @@ -1085,7 +1085,7 @@ class ACE_Export ACE_Local_WLock : public ACE_Token_Proxy public: // = Initialization and termination. - /* + /** * Constructor. * @param token_name Uniquely id's the token. * @param ignore_deadlock Will allow deadlock to occur (useful for testing). diff --git a/dep/ACE_wrappers/ace/Lock.h b/dep/ACE_wrappers/ace/Lock.h index 7c6c44c46..36f99939b 100644 --- a/dep/ACE_wrappers/ace/Lock.h +++ b/dep/ACE_wrappers/ace/Lock.h @@ -1,7 +1,7 @@ // -*- C++ -*- //========================================================================== -/* +/** * @file Lock.h * * $Id: Lock.h 80826 2008-03-04 14:51:23Z wotte $ @@ -24,7 +24,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_Lock * * @brief This is the abstract base class that contains the uniform @@ -49,7 +49,7 @@ public: /// Noop virtual destructor virtual ~ACE_Lock (void); - /* + /** * Explicitly destroy the lock. Note that only one thread should * call this method since it doesn't protect against race * conditions. @@ -60,7 +60,7 @@ public: /// failure. virtual int acquire (void) = 0; - /* + /** * Conditionally acquire the lock (i.e., won't block). Returns -1 * on failure. If we "failed" because someone else already had the * lock, @c errno is set to @c EBUSY. @@ -70,21 +70,21 @@ public: /// Release the lock. Returns -1 on failure. virtual int release (void) = 0; - /* + /** * Block until the thread acquires a read lock. If the locking * mechanism doesn't support read locks then this just calls * . Returns -1 on failure. */ virtual int acquire_read (void) = 0; - /* + /** * Block until the thread acquires a write lock. If the locking * mechanism doesn't support read locks then this just calls * . Returns -1 on failure. */ virtual int acquire_write (void) = 0; - /* + /** * Conditionally acquire a read lock. If the locking mechanism * doesn't support read locks then this just calls . * Returns -1 on failure. If we "failed" because someone else @@ -92,7 +92,7 @@ public: */ virtual int tryacquire_read (void) = 0; - /* + /** * Conditionally acquire a write lock. If the locking mechanism * doesn't support read locks then this just calls . * Returns -1 on failure. If we "failed" because someone else @@ -100,7 +100,7 @@ public: */ virtual int tryacquire_write (void) = 0; - /* + /** * Conditionally try to upgrade a lock held for read to a write lock. * If the locking mechanism doesn't support read locks then this just * calls . Returns 0 on success, -1 on failure. @@ -108,7 +108,7 @@ public: virtual int tryacquire_write_upgrade (void) = 0; }; -/* +/** * @class ACE_Adaptive_Lock * * @brief An adaptive general locking class that defers the decision of @@ -141,7 +141,7 @@ public: void dump (void) const; protected: - /* + /** * Create and initialize create the actual lcok used in the class. * The default constructor simply set the to 0 (null). You * must overwrite this method for this class to work. diff --git a/dep/ACE_wrappers/ace/Lock_Adapter_T.h b/dep/ACE_wrappers/ace/Lock_Adapter_T.h index cb66c7b11..2fe38302e 100644 --- a/dep/ACE_wrappers/ace/Lock_Adapter_T.h +++ b/dep/ACE_wrappers/ace/Lock_Adapter_T.h @@ -1,7 +1,7 @@ // -*- C++ -*- //========================================================================== -/* +/** * @file Lock_Adapter_T.h * * $Id: Lock_Adapter_T.h 84481 2009-02-17 10:58:31Z johnnyw $ @@ -24,7 +24,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_Lock_Adapter * * @brief This is an adapter that allows applications to transparently @@ -64,14 +64,14 @@ public: /// Release the lock. virtual int release (void); - /* + /** * Block until the thread acquires a read lock. If the locking * mechanism doesn't support read locks then this just calls * . */ virtual int acquire_read (void); - /* + /** * Block until the thread acquires a write lock. If the locking * mechanism doesn't support read locks then this just calls * . @@ -86,7 +86,7 @@ public: /// doesn't support read locks then this just calls . virtual int tryacquire_write (void); - /* + /** * Conditionally try to upgrade a lock held for read to a write lock. * If the locking mechanism doesn't support read locks then this just * calls . Returns 0 on success, -1 on failure. diff --git a/dep/ACE_wrappers/ace/Log_Msg.cpp b/dep/ACE_wrappers/ace/Log_Msg.cpp index 8873295e7..3df89332a 100644 --- a/dep/ACE_wrappers/ace/Log_Msg.cpp +++ b/dep/ACE_wrappers/ace/Log_Msg.cpp @@ -109,7 +109,7 @@ public: /// deleted. int ACE_Log_Msg::instance_count_ = 0; -/* +/** * @class ACE_Log_Msg_Manager * * @brief Synchronize output operations. @@ -891,7 +891,7 @@ ACE_Log_Msg::open (const ACE_TCHAR *prog_name, return status; } -/* +/** * Valid Options (prefixed by '%', as in printf format strings) include: * 'A': print an ACE_timer_t value * 'a': exit the program at this point (var-argument is the exit status!) @@ -951,7 +951,7 @@ ACE_Log_Msg::log (ACE_Log_Priority log_priority, } #if defined (ACE_HAS_WCHAR) -/* +/** * Since this is the ANTI_TCHAR version, we need to convert * the format string over. */ @@ -2180,7 +2180,7 @@ ACE_Log_Msg::log (const ACE_TCHAR *format_str, } #if !defined (ACE_WIN32) -/* +/** * @class ACE_Log_Msg_Sig_Guard * * @brief For use only by ACE_Log_Msg. diff --git a/dep/ACE_wrappers/ace/Log_Msg.h b/dep/ACE_wrappers/ace/Log_Msg.h index 046b48b9f..28b00325d 100644 --- a/dep/ACE_wrappers/ace/Log_Msg.h +++ b/dep/ACE_wrappers/ace/Log_Msg.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Log_Msg.h * * $Id: Log_Msg.h 92298 2010-10-21 11:15:17Z johnnyw $ @@ -145,7 +145,7 @@ class ACE_Thread_Descriptor; class ACE_Log_Record; template class ACE_Atomic_Op; -/* +/** * @class ACE_Log_Msg * * @brief Provides a variable length argument message logging @@ -233,7 +233,7 @@ public: ~ACE_Log_Msg (void); /// Initialize the ACE logging facility. - /* + /** * Initialize the ACE logging facility. Supplies the program name * that is available to each logging message call. Default arguments * set up logging to STDERR only. @@ -257,17 +257,17 @@ public: // = Set/get the options flags. - /* + /** * Enable the bits in the logger's options flags. */ void set_flags (u_long f); - /* + /** * Disable the bits in the logger's options flags. */ void clr_flags (u_long f); - /* + /** * Return the bits in the logger's options flags. */ u_long flags (void); @@ -344,7 +344,7 @@ public: /// Update the ostream without overwriting the delete_ostream_ flag. void msg_ostream (ACE_OSTREAM_TYPE *); - /* + /** * delete_stream == true, forces Log_Msg.h to delete the stream in * its own ~dtor (assumes control of the stream) * use only with proper ostream (eg: fstream), not (cout, cerr) @@ -354,7 +354,7 @@ public: /// Get the ostream that is used to print error messages. ACE_OSTREAM_TYPE *msg_ostream (void) const; - /* + /** * Set a new callback object and return the existing callback to * allow "chaining". Note that ACE_Log_Msg_Callback objects are not * inherited when spawning a new thread, so you'll need to reset @@ -363,7 +363,7 @@ public: ACE_Log_Msg_Callback *msg_callback (ACE_Log_Msg_Callback *c); ACE_Log_Msg_Callback *msg_callback (void) const; - /* + /** * Set a new backend object and return the existing backend to * allow "chaining". Note that as opposed to ACE_Log_Msg_Callback, * ACE_Log_Msg_Backend is a per-process entity. @@ -397,7 +397,7 @@ public: /// Get the TSS thread descriptor. ACE_Thread_Descriptor *thr_desc (void) const; - /* + /** * Set the TSS thread descriptor. This method will call * td->acquire_release to block execution until this call * return. @@ -455,7 +455,7 @@ public: /// Set the name of the local host. void local_host (const ACE_TCHAR *); - /* + /** * Set the line number, file name, operational status, error number, * restart flag, ostream, and the callback object. This combines * all the other set methods into a single method. @@ -475,7 +475,7 @@ public: int op_status, int errnum); - /* + /** * Format a message to the thread-safe ACE logging mechanism. Valid * options (prefixed by '%', as in printf format strings) include: * - 'A': print an ACE_timer_t value (which could be either double @@ -532,7 +532,7 @@ public: ssize_t log (ACE_Log_Priority priority, const ACE_ANTI_TCHAR *format, ...); #endif /* ACE_HAS_WCHAR */ - /* + /** * An alternative logging mechanism that makes it possible to * integrate variable argument lists from other logging mechanisms * into the ACE mechanism. @@ -546,7 +546,7 @@ public: ssize_t log (ACE_Log_Record &log_record, int suppress_stderr = 0); - /* + /** * Method to log hex dump. This is useful for debugging. Calls * log() to do the actual print, but formats first to make the chars * printable. @@ -561,14 +561,14 @@ public: , ACE_SEH_EXCEPT_HANDLER selector = 0 , ACE_SEH_EXCEPT_HANDLER handler = 0 # endif /* ACE_HAS_WIN32_STRUCTURAL_EXCEPTIONS */ - /* + /** * Init hook, create a Log_Msg_Attribute object, initialize its * attributes from the TSS Log_Msg and save the object in the * @a attributes argument */ ); - /* + /** * Inherit hook, the @a attributes field is a ACE_OS_Log_Msg_Attributes * object, invoke the inherit_log_msg() method on it, then destroy * it and set the @a attribute argument to 0. @@ -630,7 +630,7 @@ private: /// Are we allowing tracing in this thread? bool tracing_enabled_; - /* + /** * If we're running in the context of an ACE_Thread_Manager this * will point to the thread descriptor adapter which holds the * thread descriptor of the thread. This can be used to repidly @@ -638,7 +638,7 @@ private: */ ACE_Thread_Descriptor *thr_desc_; - /* + /** * Keeps track of all the per-thread ACE_Log_Priority values that * are currently enabled. Default is for all logging priorities to * be disabled. @@ -652,7 +652,7 @@ private: // We only want one instance for the entire process! - /* + /** * Keeps track of all the per-process ACE_Log_Priority values that * are currently enabled. Default is for all logging priorities to * be enabled. @@ -675,13 +675,13 @@ private: /// Offset of msg_[]. static ptrdiff_t msg_off_; - /* + /** * Number of existing ACE_Log_Msg instances; when 0, delete program/host * names */ static int instance_count_; - /* + /** * Priority mask to use for each new instance */ static u_long default_priority_mask_; diff --git a/dep/ACE_wrappers/ace/Log_Msg_Backend.h b/dep/ACE_wrappers/ace/Log_Msg_Backend.h index eff6bcc9a..ba3dba1c9 100644 --- a/dep/ACE_wrappers/ace/Log_Msg_Backend.h +++ b/dep/ACE_wrappers/ace/Log_Msg_Backend.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Log_Msg_Backend.h * * $Id: Log_Msg_Backend.h 80826 2008-03-04 14:51:23Z wotte $ @@ -27,7 +27,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL class ACE_Log_Record; -/* +/** * @class ACE_Log_Msg_Backend * * @brief Defines the interface for ACE_Log_Msg back end processing. @@ -44,7 +44,7 @@ public: /// No-op virtual destructor. virtual ~ACE_Log_Msg_Backend (void); - /* + /** * Open the back end object. Perform any actions needed to prepare * the object for later logging operations. * @@ -57,7 +57,7 @@ public: */ virtual int open (const ACE_TCHAR *logger_key) = 0; - /* + /** * Reset the backend. If ACE_Log_Msg is reopened during execution, this * hook will be called. This method should perform any needed cleanup * activity (similar to close()) because this object won't be reopened @@ -71,7 +71,7 @@ public: /// Close the backend completely. virtual int close (void) = 0; - /* + /** * Process a log record. * * @param log_record The ACE_Log_Record to process. diff --git a/dep/ACE_wrappers/ace/Log_Msg_Callback.h b/dep/ACE_wrappers/ace/Log_Msg_Callback.h index b265e12b7..a67407459 100644 --- a/dep/ACE_wrappers/ace/Log_Msg_Callback.h +++ b/dep/ACE_wrappers/ace/Log_Msg_Callback.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Log_Msg_Callback.h * * $Id: Log_Msg_Callback.h 91064 2010-07-12 10:11:24Z johnnyw $ @@ -24,7 +24,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL class ACE_Log_Record; -/* +/** * @class ACE_Log_Msg_Callback * * @brief An interface class used to get logging callbacks. diff --git a/dep/ACE_wrappers/ace/Log_Msg_IPC.h b/dep/ACE_wrappers/ace/Log_Msg_IPC.h index ecc96647b..958eae276 100644 --- a/dep/ACE_wrappers/ace/Log_Msg_IPC.h +++ b/dep/ACE_wrappers/ace/Log_Msg_IPC.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Log_Msg_IPC.h * * $Id: Log_Msg_IPC.h 84536 2009-02-20 09:28:48Z johnnyw $ @@ -44,7 +44,7 @@ ACE_END_VERSIONED_NAMESPACE_DECL ACE_BEGIN_VERSIONED_NAMESPACE_DECL /// Defines the interfaces for ACE_Log_Msg backend. -/* +/** * Implement an ACE_Log_Msg_Backend that logs to a remote logging * process. */ @@ -60,7 +60,7 @@ public: /// Open a new connection virtual int open (const ACE_TCHAR *logger_key); - /* + /** * Reset the backend. When changing the logging destination the * backend may need to properly disconnect from the remote logging * daemon and reclaim some local resources. But we try to reduce diff --git a/dep/ACE_wrappers/ace/Log_Msg_NT_Event_Log.h b/dep/ACE_wrappers/ace/Log_Msg_NT_Event_Log.h index e50c27f48..777f8e97f 100644 --- a/dep/ACE_wrappers/ace/Log_Msg_NT_Event_Log.h +++ b/dep/ACE_wrappers/ace/Log_Msg_NT_Event_Log.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Log_Msg_NT_Event_Log.h * * $Id: Log_Msg_NT_Event_Log.h 80826 2008-03-04 14:51:23Z wotte $ @@ -26,7 +26,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_Log_Msg_NT_Event_Log * * @brief Implements an ACE_Log_Msg_Backend that logs to the WinNT system @@ -42,7 +42,7 @@ public: virtual ~ACE_Log_Msg_NT_Event_Log (void); /// Open a new event log. - /* + /** * Initialize the event logging facility. * @param logger_key The name of the calling program. This name is * used in the Source field of the event log. If diff --git a/dep/ACE_wrappers/ace/Log_Msg_UNIX_Syslog.h b/dep/ACE_wrappers/ace/Log_Msg_UNIX_Syslog.h index 1b892e48e..56d75029e 100644 --- a/dep/ACE_wrappers/ace/Log_Msg_UNIX_Syslog.h +++ b/dep/ACE_wrappers/ace/Log_Msg_UNIX_Syslog.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Log_Msg_UNIX_Syslog.h * * $Id: Log_Msg_UNIX_Syslog.h 90388 2010-06-02 15:27:59Z vzykov $ @@ -27,7 +27,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_Log_Msg_UNIX_Syslog * * @brief Implements an ACE_Log_Msg_Backend that logs messages to a UNIX @@ -43,7 +43,7 @@ public: virtual ~ACE_Log_Msg_UNIX_Syslog (void); /// Open a new event log. - /* + /** * Initialize the event logging facility. * @param logger_key The name of the calling program. This name is * used as the @c ident in the syslog entries. If diff --git a/dep/ACE_wrappers/ace/Log_Priority.h b/dep/ACE_wrappers/ace/Log_Priority.h index 5fdc3de36..3801ef398 100644 --- a/dep/ACE_wrappers/ace/Log_Priority.h +++ b/dep/ACE_wrappers/ace/Log_Priority.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Log_Priority.h * * $Id: Log_Priority.h 80826 2008-03-04 14:51:23Z wotte $ @@ -19,7 +19,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @enum ACE_Log_Priority * * @brief This data type indicates the relative priorities of the diff --git a/dep/ACE_wrappers/ace/Log_Record.h b/dep/ACE_wrappers/ace/Log_Record.h index ad7fd5f5e..fb2e9ddcc 100644 --- a/dep/ACE_wrappers/ace/Log_Record.h +++ b/dep/ACE_wrappers/ace/Log_Record.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Log_Record.h * * $Id: Log_Record.h 91764 2010-09-14 13:04:37Z johnnyw $ @@ -55,7 +55,7 @@ public: }; // = Initialization - /* + /** * Create a Log_Record and set its priority, time stamp, and * process id. */ @@ -93,7 +93,7 @@ public: u_long verbose_flag, ACE_TCHAR *verbose_msg); - /* + /** * Returns a character array with the string form of the * ACE_Log_Priority parameter. This is used for the verbose * printing format. @@ -109,7 +109,7 @@ public: /// Set the type of the Log_Record. void type (ACE_UINT32); - /* + /** * Get the priority of the Log_Record . This is computed * as the base 2 logarithm of (which must be a power of 2, * as defined by the enums in ACE_Log_Priority). @@ -162,7 +162,7 @@ private: /// Round up to the alignment restrictions. void round_up (void); - /* + /** * Total length of the logging record in bytes. This field *must* * come first in order for various IPC framing mechanisms to work * correctly. In addition, the field must be an ACE_INT32 in order diff --git a/dep/ACE_wrappers/ace/Logging_Strategy.h b/dep/ACE_wrappers/ace/Logging_Strategy.h index 61e40b09d..7792c1061 100644 --- a/dep/ACE_wrappers/ace/Logging_Strategy.h +++ b/dep/ACE_wrappers/ace/Logging_Strategy.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Logging_Strategy.h * * $Id: Logging_Strategy.h 91064 2010-07-12 10:11:24Z johnnyw $ @@ -27,7 +27,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_Logging_Strategy * * @brief @@ -92,7 +92,7 @@ public: /// Dynamic linking termination hook. virtual int fini (void); - /* + /** * Timeout handler which tests logfile size. If the current logfile * size exceeds @c max_size_, the current logfile is closed, saved to * logfile.old, and a new logfile is reopened. @@ -100,14 +100,14 @@ public: virtual int handle_timeout (const ACE_Time_Value& tv, const void* arg); - /* + /** * This function helps to cancel timer events for this logging strategy * in reactor during shutdown. */ virtual int handle_close (ACE_HANDLE, ACE_Reactor_Mask); - /* + /** * Reactor accessors. If reactor changes then we need remove this * event handler from previous reactor and scheduler for timer events * in a new one. @@ -116,7 +116,7 @@ public: virtual ACE_Reactor * reactor (void) const; - /* + /** * Parse arguments provided in svc.conf file. * @arg '-f' Pass in the flags (such as OSTREAM, STDERR, LOGGER, VERBOSE, * SILENT, VERBOSE_LITE) used to control logging. diff --git a/dep/ACE_wrappers/ace/MEM_Acceptor.h b/dep/ACE_wrappers/ace/MEM_Acceptor.h index 0ec42ad35..94ff5138d 100644 --- a/dep/ACE_wrappers/ace/MEM_Acceptor.h +++ b/dep/ACE_wrappers/ace/MEM_Acceptor.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file MEM_Acceptor.h * * $Id: MEM_Acceptor.h 91688 2010-09-09 11:21:50Z johnnyw $ @@ -36,7 +36,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL // Forward decl. class ACE_Reactor; -/* +/** * @class ACE_MEM_Acceptor * * @brief Defines the format and interface for the acceptor side of the @@ -67,7 +67,7 @@ public: int backlog = ACE_DEFAULT_BACKLOG, int protocol = 0); - /* + /** * Initialize a passive-mode BSD-style acceptor socket (no QoS). * @a local_sap is the address that we're going to listen for * connections on. If @a reuse_addr is 1 then we'll use the @@ -92,7 +92,7 @@ public: int in_blocking_mode, bool reset_new_handle) const; - /* + /** * Accessor/mutator of mmap filename prefix. By default, the * is not set and the mmap filename is * ${(TMP|TEMP)}//ACE_MEM_Acceptor_(port-number)_(&stream), @@ -104,7 +104,7 @@ public: const ACE_TCHAR *mmap_prefix (void) const; void mmap_prefix (const ACE_TCHAR *prefix); - /* + /** * Change the initial MMAP buffer size (in bytes) of the MEM_Stream * this MEM_Acceptor creates. */ diff --git a/dep/ACE_wrappers/ace/MEM_Addr.h b/dep/ACE_wrappers/ace/MEM_Addr.h index fa79033f3..35887b5cc 100644 --- a/dep/ACE_wrappers/ace/MEM_Addr.h +++ b/dep/ACE_wrappers/ace/MEM_Addr.h @@ -1,7 +1,7 @@ // -*- C++ -*- //========================================================================== -/* +/** * @file MEM_Addr.h * * $Id: MEM_Addr.h 80826 2008-03-04 14:51:23Z wotte $ @@ -27,7 +27,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_MEM_Addr * * @brief Defines a C++ wrapper facade for the shared memory transport @@ -62,7 +62,7 @@ public: // These methods are useful after the object has been constructed. - /* + /** * Initializes an ACE_MEM_Addr from a @a port_number. If @a encode * is enabled then @a port_number is converted into network byte order, * otherwise it is assumed to be in network byte order already and @@ -100,7 +100,7 @@ public: int get_host_name (ACE_TCHAR hostname[], size_t hostnamelen) const; - /* + /** * Return the character representation of the hostname (this version * is non-reentrant since it returns a pointer to a static data * area). diff --git a/dep/ACE_wrappers/ace/MEM_Connector.h b/dep/ACE_wrappers/ace/MEM_Connector.h index ba2944f3b..7301ac8fb 100644 --- a/dep/ACE_wrappers/ace/MEM_Connector.h +++ b/dep/ACE_wrappers/ace/MEM_Connector.h @@ -1,7 +1,7 @@ /* -*- C++ -*- */ //============================================================================= -/* +/** * @file MEM_Connector.h * * $Id: MEM_Connector.h 91688 2010-09-09 11:21:50Z johnnyw $ @@ -28,7 +28,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_MEM_Connector * * @brief Defines the format and interface for connecting to a peer @@ -41,7 +41,7 @@ public: /// Default constructor. ACE_MEM_Connector (void); - /* + /** * Actively connect to a peer, producing a connected @c ACE_MEM_Stream * object if the connection succeeds. * @@ -86,7 +86,7 @@ public: int flags = 0, int perms = 0); - /* + /** * Actively connect to a peer, producing a connected @c ACE_MEM_Stream * object if the connection succeeds. * diff --git a/dep/ACE_wrappers/ace/MEM_IO.h b/dep/ACE_wrappers/ace/MEM_IO.h index bd30cda61..8e3f79c0b 100644 --- a/dep/ACE_wrappers/ace/MEM_IO.h +++ b/dep/ACE_wrappers/ace/MEM_IO.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file MEM_IO.h * * $Id: MEM_IO.h 80826 2008-03-04 14:51:23Z wotte $ @@ -39,7 +39,7 @@ public: virtual ~ACE_Reactive_MEM_IO (void); - /* + /** * Initialize the MEM_SAP object. * * @a options is used to pass in the Malloc_Options to initialize @@ -49,7 +49,7 @@ public: const ACE_TCHAR *name, MALLOC_OPTIONS *options); - /* + /** * Fetch location of next available data into . * As this operation read the address of the data off the socket * using ACE::recv, @a timeout only applies to ACE::recv. @@ -58,7 +58,7 @@ public: int flags, const ACE_Time_Value *timeout); - /* + /** * Wait to to @a timeout amount of time to send @a buf. If * times out a -1 is returned with @c errno == ETIME. If it succeeds * the number of bytes sent is returned. */ @@ -66,7 +66,7 @@ public: int flags, const ACE_Time_Value *timeout); - /* + /** * Convert the buffer offset to absolute address to @a buf. * Return the size of valid information containing in the @a buf, * -1 if is not initialized. @@ -111,14 +111,14 @@ public: virtual ~ACE_MT_MEM_IO (void); - /* + /** * Initialize the MEM_SAP object. */ virtual int init (ACE_HANDLE handle, const ACE_TCHAR *name, MALLOC_OPTIONS *options); - /* + /** * Fetch location of next available data into . * As this operation read the address of the data off the socket * using ACE::recv, @a timeout only applies to ACE::recv. @@ -127,7 +127,7 @@ public: int flags, const ACE_Time_Value *timeout); - /* + /** * Wait to to @a timeout amount of time to send @a buf. If * times out a -1 is returned with @c errno == ETIME. If it succeeds * the number of bytes sent is returned. */ @@ -141,7 +141,7 @@ private: }; #endif /* ACE_WIN32 || !_ACE_USE_SV_SEM */ -/* +/** * @class ACE_MEM_IO * * @brief Defines the methods for the ACE shared memeory wrapper I/O @@ -183,14 +183,14 @@ public: MT } Signal_Strategy; - /* + /** * Initialize the MEM_SAP object. */ int init (const ACE_TCHAR *name, ACE_MEM_IO::Signal_Strategy type = ACE_MEM_IO::Reactive, ACE_MEM_SAP::MALLOC_OPTIONS *options = 0); - /* + /** * Finalizing the MEM_IO object. This method doesn't invoke * the method. */ @@ -216,7 +216,7 @@ public: ssize_t recv (void *buf, size_t n) ; - /* + /** * Wait to to @a timeout amount of time to send up to @a n bytes into * @a buf from (uses the call). If times out * a -1 is returned with @c errno == ETIME. If it succeeds the @@ -226,7 +226,7 @@ public: size_t n, const ACE_Time_Value *timeout); - /* + /** * Wait to to @a timeout amount of time to send up to @a n bytes into * @a buf from (uses the call). If times out * a -1 is returned with @c errno == ETIME. If it succeeds the @@ -237,7 +237,7 @@ public: int flags, const ACE_Time_Value *timeout); - /* + /** * Wait to to @a timeout amount of time to send the @a message_block. * If times out a -1 is returned with @c errno == ETIME. If * it succeeds the number of bytes sent is returned. @@ -245,7 +245,7 @@ public: ssize_t send (const ACE_Message_Block *message_block, const ACE_Time_Value *timeout); - /* + /** * Wait up to @a timeout amount of time to receive up to @a n bytes * into @a buf from (uses the call). If times * out a -1 is returned with @c errno == ETIME. If it succeeds the @@ -255,7 +255,7 @@ public: size_t n, const ACE_Time_Value *timeout); - /* + /** * Wait up to @a timeout amount of time to receive up to @a n bytes * into @a buf from (uses the call). If times * out a -1 is returned with @c errno == ETIME. If it succeeds the diff --git a/dep/ACE_wrappers/ace/MEM_SAP.h b/dep/ACE_wrappers/ace/MEM_SAP.h index f4a590a78..4ca6b7336 100644 --- a/dep/ACE_wrappers/ace/MEM_SAP.h +++ b/dep/ACE_wrappers/ace/MEM_SAP.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file MEM_SAP.h * * $Id: MEM_SAP.h 92090 2010-09-29 14:10:45Z johnnyw $ @@ -65,7 +65,7 @@ public: ACE_MEM_SAP_NODE_PTR next_; }; -/* +/** * @class ACE_MEM_SAP * * @brief Defines the methods of shared memory management for @@ -82,20 +82,20 @@ public: /// Destructor. virtual ~ACE_MEM_SAP (void); - /* + /** * Initialize the MEM_SAP object. */ virtual int init (ACE_HANDLE handle, const ACE_TCHAR *name, MALLOC_OPTIONS *options) = 0; - /* + /** * Finalizing the MEM_SAP object. This method doesn't invoke * the method. */ virtual int fini (); - /* + /** * Fetch location of next available data into . * As this operation read the address of the data off the socket * using ACE::recv, @a timeout only applies to ACE::recv. @@ -104,7 +104,7 @@ public: int flags, const ACE_Time_Value *timeout) = 0; - /* + /** * Wait to to @a timeout amount of time to send @a buf. If * times out a -1 is returned with @c errno == ETIME. If it succeeds * the number of bytes sent is returned. */ @@ -129,7 +129,7 @@ public: protected: // = Class initializing methods to create/connect to a shared memory pool. - /* + /** * Create a new shm_malloc object. Return 0 if succeed and -1 * otherwise. This method should only be called from an acceptor * class that wants to create a new memory pool for inter process diff --git a/dep/ACE_wrappers/ace/MEM_Stream.h b/dep/ACE_wrappers/ace/MEM_Stream.h index 782f94d82..63ad2736a 100644 --- a/dep/ACE_wrappers/ace/MEM_Stream.h +++ b/dep/ACE_wrappers/ace/MEM_Stream.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file MEM_Stream.h * * $Id: MEM_Stream.h 92069 2010-09-28 11:38:59Z johnnyw $ @@ -34,7 +34,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL class ACE_MEM_Acceptor; class ACE_MEM_Connector; -/* +/** * @class ACE_MEM_Stream * * @brief Defines the methods in the ACE_MEM_Stream abstraction. @@ -87,7 +87,7 @@ public: /// Close down the writer. int close_writer (void); - /* + /** * Close down the socket (we need this to make things work correctly * on Win32, which requires use to do a before doing * the close to avoid losing data). diff --git a/dep/ACE_wrappers/ace/MMAP_Memory_Pool.h b/dep/ACE_wrappers/ace/MMAP_Memory_Pool.h index daba5f68c..b11077d42 100644 --- a/dep/ACE_wrappers/ace/MMAP_Memory_Pool.h +++ b/dep/ACE_wrappers/ace/MMAP_Memory_Pool.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file MMAP_Memory_Pool.h * * $Id: MMAP_Memory_Pool.h 81589 2008-05-02 13:07:33Z johnnyw $ @@ -29,7 +29,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_MMAP_Memory_Pool_Options * * @brief Helper class for MMAP Memory Pool constructor options. @@ -42,19 +42,19 @@ class ACE_Export ACE_MMAP_Memory_Pool_Options public: enum { - /* + /** * The base address from the first call to mmap will be used for subsequent * calls to mmap. */ FIRSTCALL_FIXED = 0, - /* + /** * The base address specified in base_addr will be used in all calls to * mmap. */ ALWAYS_FIXED = 1, - /* + /** * The base address will be selected by the OS for each call to mmap. * Caution should be used with this mode since a call that requires the * backing store to grow may change pointers that are cached by the @@ -78,7 +78,7 @@ public: /// Base address of the memory-mapped backing store. const void *base_addr_; - /* + /** * Determines whether we set @c base_addr_ or if mmap(2) selects it * FIRSTCALL_FIXED The base address from the first call to mmap * will be used for subsequent calls to mmap @@ -102,7 +102,7 @@ public: /// Any special flags that need to be used for @c mmap. u_int flags_; - /* + /** * Try to remap without knowing the faulting address. This * parameter is ignored on platforms that know the faulting address * (UNIX with SI_ADDR and Win32). @@ -127,7 +127,7 @@ private: ACE_MMAP_Memory_Pool_Options &operator= (const ACE_MMAP_Memory_Pool_Options &); }; -/* +/** * @class ACE_MMAP_Memory_Pool * * @brief Make a memory pool that is based on @c mmap(2). This @@ -152,7 +152,7 @@ public: size_t &rounded_bytes, int &first_time); - /* + /** * Acquire at least @a nbytes from the memory pool. @a rounded_bytes * is the actual number of bytes allocated. Also acquires an * internal semaphore that ensures proper serialization of @@ -176,14 +176,14 @@ public: /// Sync the memory region to the backing store starting at @a addr. virtual int sync (void *addr, size_t len, int flags = MS_SYNC); - /* + /** * Change the protection of the pages of the mapped region to @a prot * starting at @c this->base_addr_ up to @a len bytes. If @a len == -1 * then change protection of all pages in the mapped region. */ virtual int protect (size_t len, int prot = PROT_RDWR); - /* + /** * Change the protection of all the pages of the mapped region to @a prot * starting at @c this->base_addr_. */ @@ -194,7 +194,7 @@ public: virtual int protect (void *addr, size_t len, int prot = PROT_RDWR); #if defined (ACE_WIN32) - /* + /** * Win32 Structural exception selector. The return value decides * how to handle memory pool related structural exceptions. Returns * 1, 0, or , -1. @@ -202,7 +202,7 @@ public: virtual int seh_selector (void *); #endif /* ACE_WIN32 */ - /* + /** * Try to extend the virtual address space so that @a addr is now * covered by the address mapping. The method succeeds and returns * 0 if the backing store has adequate memory to cover this address. @@ -243,7 +243,7 @@ protected: virtual int map_file (size_t map_size); #if !defined (ACE_WIN32) - /* + /** * Handle SIGSEGV and SIGBUS signals to remap memory properly. When a * process reads or writes to non-mapped memory a signal (SIGBUS or * SIGSEGV) will be triggered. At that point, the ACE_Sig_Handler @@ -265,7 +265,7 @@ protected: /// Memory-mapping object. ACE_Mem_Map mmap_; - /* + /** * Base of mapped region. If this has the value of 0 then the OS is * free to select any address to map the file, otherwise this value * is what the OS must try to use to mmap the file. @@ -288,7 +288,7 @@ protected: /// Name of the backing store where the shared memory pool is kept. ACE_TCHAR backing_store_name_[MAXPATHLEN + 1]; - /* + /** * Try to remap without knowing the faulting address. This * parameter is ignored on platforms that know the faulting address * (UNIX with SI_ADDR and Win32). @@ -305,7 +305,7 @@ protected: bool install_signal_handler_; }; -/* +/** * @class ACE_Lite_MMAP_Memory_Pool * * @brief Make a ``lighter-weight'' memory pool based ACE_Mem_Map. diff --git a/dep/ACE_wrappers/ace/Malloc.h b/dep/ACE_wrappers/ace/Malloc.h index 80b07bcbe..7b59f8ae1 100644 --- a/dep/ACE_wrappers/ace/Malloc.h +++ b/dep/ACE_wrappers/ace/Malloc.h @@ -1,7 +1,7 @@ // -*- C++ -*- //========================================================================== -/* +/** * @file Malloc.h * * $Id: Malloc.h 81796 2008-05-28 13:46:21Z sma $ @@ -240,7 +240,7 @@ union ACE_max_align_info // ACE_MALLOC_HEADER_SIZE is the normalized malloc header size. #define ACE_MALLOC_HEADER_SIZE ACE_MALLOC_ROUNDUP(ACE_MALLOC_PADDING, ACE_MALLOC_ALIGN) -/* +/** * @class ACE_Control_Block * * @brief This information is stored in memory allocated by the . @@ -257,7 +257,7 @@ class ACE_Export ACE_Control_Block { public: - /* + /** * @class ACE_Malloc_Header * * @brief This is the control block header. It's used by @@ -289,7 +289,7 @@ public: void dump (void) const; }; - /* + /** * @class ACE_Name_Node * * @brief This class supports "named memory regions" within ACE_Malloc. diff --git a/dep/ACE_wrappers/ace/Malloc_Allocator.h b/dep/ACE_wrappers/ace/Malloc_Allocator.h index 43f2061c1..1a562108f 100644 --- a/dep/ACE_wrappers/ace/Malloc_Allocator.h +++ b/dep/ACE_wrappers/ace/Malloc_Allocator.h @@ -1,7 +1,7 @@ // -*- C++ -*- //========================================================================== -/* +/** * @file Malloc_Allocator.h * * $Id: Malloc_Allocator.h 80826 2008-03-04 14:51:23Z wotte $ @@ -36,7 +36,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_New_Allocator * * @brief Defines a class that provided a simple implementation of @@ -82,7 +82,7 @@ private: // implementation for explanation. }; -/* +/** * @class ACE_Static_Allocator_Base * * @brief Defines a class that provided a highly optimized memory diff --git a/dep/ACE_wrappers/ace/Malloc_Base.h b/dep/ACE_wrappers/ace/Malloc_Base.h index ba4abbc6f..35e466851 100644 --- a/dep/ACE_wrappers/ace/Malloc_Base.h +++ b/dep/ACE_wrappers/ace/Malloc_Base.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Malloc_Base.h * * $Id: Malloc_Base.h 92085 2010-09-29 12:23:13Z johnnyw $ @@ -29,7 +29,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL // The definition of this class is located in Malloc.cpp. -/* +/** * @class ACE_Allocator * * @brief Interface for a dynamic memory allocator that uses inheritance @@ -81,7 +81,7 @@ public: // = Map manager like functions - /* + /** * Associate @a name with @a pointer. If @a duplicates == 0 then do * not allow duplicate @a name/@a pointer associations, else if * @a duplicates != 0 then allow duplicate @a name/@a pointer @@ -92,7 +92,7 @@ public: */ virtual int bind (const char *name, void *pointer, int duplicates = 0) = 0; - /* + /** * Associate @a name with @a pointer. Does not allow duplicate * @a name/@a pointer associations. Returns 0 if successfully binds * (1) a previously unbound @a name, 1 if trying to bind a previously @@ -122,7 +122,7 @@ public: // = Protection and "sync" (i.e., flushing memory to persistent // backing store). - /* + /** * Sync @a len bytes of the memory region to the backing store * starting at @c this->base_addr_. If @a len == -1 then sync the * whole region. @@ -133,7 +133,7 @@ public: /// starting at @a addr. virtual int sync (void *addr, size_type len, int flags = MS_SYNC) = 0; - /* + /** * Change the protection of the pages of the mapped region to @a prot * starting at base_addr_> up to @a len bytes. If @a len == -1 * then change protection of all pages in the mapped region. diff --git a/dep/ACE_wrappers/ace/Malloc_T.h b/dep/ACE_wrappers/ace/Malloc_T.h index 627d7950a..3d170b722 100644 --- a/dep/ACE_wrappers/ace/Malloc_T.h +++ b/dep/ACE_wrappers/ace/Malloc_T.h @@ -1,7 +1,7 @@ // -*- C++ -*- //========================================================================== -/* +/** * @file Malloc_T.h * * $Id: Malloc_T.h 92085 2010-09-29 12:23:13Z johnnyw $ @@ -28,7 +28,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_Cached_Mem_Pool_Node * * @brief ACE_Cached_Mem_Pool_Node keeps unused memory within a free @@ -54,7 +54,7 @@ public: void set_next (ACE_Cached_Mem_Pool_Node *ptr); private: - /* + /** * Since memory is not used when placed in a free list, * we can use it to maintain the structure of free list. * I was using union to hide the fact of overlapping memory @@ -64,7 +64,7 @@ private: ACE_Cached_Mem_Pool_Node *next_; }; -/* +/** * @class ACE_Cached_Allocator * * @brief A fixed-size allocator that caches items for quicker access. @@ -92,7 +92,7 @@ public: /// Clear things up. ~ACE_Cached_Allocator (void); - /* + /** * Get a chunk of memory from free list cache. Note that @a nbytes is * only checked to make sure that it's less or equal to sizeof T, and is * otherwise ignored since @c malloc() always returns a pointer to an @@ -100,7 +100,7 @@ public: */ void *malloc (size_t nbytes = sizeof (T)); - /* + /** * Get a chunk of memory from free list cache, giving them * @a initial_value. Note that @a nbytes is only checked to make sure * that it's less or equal to sizeof T, and is otherwise ignored since @@ -130,7 +130,7 @@ private: ACE_Locked_Free_List, ACE_LOCK> free_list_; }; -/* +/** * @class ACE_Dynamic_Cached_Allocator * * @brief A size-based allocator that caches blocks for quicker access. @@ -157,7 +157,7 @@ public: /// Clear things up. ~ACE_Dynamic_Cached_Allocator (void); - /* + /** * Get a chunk of memory from free list cache. Note that @a nbytes is * only checked to make sure that it's less or equal to @a chunk_size, * and is otherwise ignored since malloc() always returns a pointer to an @@ -165,7 +165,7 @@ public: */ void *malloc (size_t nbytes = 0); - /* + /** * Get a chunk of memory from free list cache, giving them * @a initial_value. Note that @a nbytes is only checked to make sure * that it's less or equal to @a chunk_size, and is otherwise ignored @@ -201,7 +201,7 @@ private: size_t chunk_size_; }; -/* +/** * @class ACE_Allocator_Adapter * * @brief This class is an adapter that allows the ACE_Allocator to @@ -216,13 +216,13 @@ public: typedef const typename MALLOC::MEMORY_POOL_OPTIONS *MEMORY_POOL_OPTIONS; // = Initialization. - /* + /** * Note that @a pool_name should be located in * a directory with the appropriate visibility and protection so * that all processes that need to access it can do so. */ ACE_Allocator_Adapter (const char *pool_name = 0); - /* + /** * Note that @a pool_name should be located in * a directory with the appropriate visibility and protection so * that all processes that need to access it can do so. @@ -232,13 +232,13 @@ public: MEMORY_POOL_OPTIONS options = 0); #if defined (ACE_HAS_WCHAR) - /* + /** * Note that @a pool_name should be located in * a directory with the appropriate visibility and protection so * that all processes that need to access it can do so. */ ACE_Allocator_Adapter (const wchar_t *pool_name); - /* + /** * Note that @a pool_name should be located in * a directory with the appropriate visibility and protection so * that all processes that need to access it can do so. @@ -273,7 +273,7 @@ public: // = Map manager like functions - /* + /** * Associate @a name with @a pointer. If @a duplicates == 0 then do * not allow duplicate @a name/pointer associations, else if * @a duplicates != 0 then allow duplicate @a name/pointer @@ -284,7 +284,7 @@ public: */ virtual int bind (const char *name, void *pointer, int duplicates = 0); - /* + /** * Associate @a name with @a pointer. Does not allow duplicate * name/pointer associations. Returns 0 if successfully binds * (1) a previously unbound @a name, 1 if trying to bind a previously @@ -313,7 +313,7 @@ public: // = Protection and "sync" (i.e., flushing data to backing store). - /* + /** * Sync @a len bytes of the memory region to the backing store * starting at @c this->base_addr_. If @a len == -1 then sync the * whole region. @@ -324,7 +324,7 @@ public: /// starting at @c addr_. virtual int sync (void *addr, size_t len, int flags = MS_SYNC); - /* + /** * Change the protection of the pages of the mapped region to @a prot * starting at @c this->base_addr_ up to @a len bytes. If @a len == -1 * then change protection of all pages in the mapped region. @@ -351,7 +351,7 @@ private: ALLOCATOR allocator_; }; -/* +/** * @class ACE_Static_Allocator * * @brief Defines a class that provided a highly optimized memory @@ -388,7 +388,7 @@ class ACE_Malloc_LIFO_Iterator_T; template class ACE_Malloc_FIFO_Iterator_T; -/* +/** * @class ACE_Malloc_T * * @brief A class template that uses parameterized types to provide @@ -439,7 +439,7 @@ public: typedef typename ACE_CB::ACE_Malloc_Header MALLOC_HEADER; // = Initialization and termination methods. - /* + /** * Initialize ACE_Malloc. This constructor passes @a pool_name to * initialize the memory pool, and uses ACE::basename() to * automatically extract out the name used for the underlying lock @@ -451,7 +451,7 @@ public: */ ACE_Malloc_T (const ACE_TCHAR *pool_name = 0); - /* + /** * Initialize ACE_Malloc. This constructor passes @a pool_name to * initialize the memory pool, and uses @a lock_name to automatically * extract out the name used for the underlying lock name (if @@ -466,7 +466,7 @@ public: const ACE_TCHAR *lock_name, const ACE_MEM_POOL_OPTIONS *options = 0); - /* + /** * Initialize an ACE_Malloc with an external ACE_LOCK. * This constructor passes @a pool_name and @a options to initialize * the memory pool. @a lock is used as the pool lock, and must be @@ -511,7 +511,7 @@ public: // = Map manager like functions - /* + /** * Associate @a name with @a pointer. If @a duplicates == 0 then do * not allow duplicate name/pointer associations, else if * @a duplicates != 0 then allow duplicate name/pointer @@ -522,7 +522,7 @@ public: */ int bind (const char *name, void *pointer, int duplicates = 0); - /* + /** * Associate @a name with @a pointer. Does not allow duplicate * name/pointer associations. Returns 0 if successfully binds * (1) a previously unbound @a name, 1 if trying to bind a previously @@ -541,14 +541,14 @@ public: /// Returns 0 if @a name is in the mapping. -1, otherwise. int find (const char *name); - /* + /** * Unbind (remove) the name from the map. Don't return the pointer * to the caller. If you want to remove all occurrences of @a name * you'll need to call this method multiple times until it fails... */ int unbind (const char *name); - /* + /** * Unbind (remove) one association of @a name to @a pointer. Returns * the value of pointer in case the caller needs to deallocate * memory. If you want to remove all occurrences of @a name you'll @@ -558,7 +558,7 @@ public: // = Protection and "sync" (i.e., flushing data to backing store). - /* + /** * Sync @a len bytes of the memory region to the backing store * starting at @c this->base_addr_. If @a len == -1 then sync the * whole region. @@ -569,7 +569,7 @@ public: /// starting at @c addr_. int sync (void *addr, size_t len, int flags = MS_SYNC); - /* + /** * Change the protection of the pages of the mapped region to @a prot * starting at @c this->base_addr_ up to @a len bytes. If @a len == -1 * then change protection of all pages in the mapped region. @@ -580,7 +580,7 @@ public: /// starting at @a addr up to @a len bytes. int protect (void *addr, size_t len, int prot = PROT_RDWR); - /* + /** * Returns a count of the number of available chunks that can hold * @a size byte allocations. Function can be used to determine if you * have reached a water mark. This implies a fixed amount of allocated @@ -610,7 +610,7 @@ public: /// Return cb_ptr value. void *base_addr (void); - /* + /** * Bad flag. This operation should be called immediately after the * construction of the Malloc object to query whether the object was * constructed successfully. If not, the user should invoke @c @@ -629,7 +629,7 @@ private: int shared_bind (const char *name, void *pointer); - /* + /** * Try to locate @a name. If found, return the associated * ACE_Name_Node, else returns 0 if can't find the @a name. * Assumes that locks are held by callers. Remember to cast the @@ -662,7 +662,7 @@ private: /*****************************************************************************/ -/* +/** * @class ACE_Malloc_Lock_Adapter_T * * @brief Template functor adapter for lock strategies used with ACE_Malloc_T. @@ -677,7 +677,7 @@ private: */ /*****************************************************************************/ -/* +/** * @class ACE_Malloc_LIFO_Iterator_T * * @brief LIFO iterator for names stored in Malloc'd memory. @@ -713,7 +713,7 @@ public: /// visited. Returns 0 when all items have been seen, else 1. int next (void *&next_entry); - /* + /** * Pass back the next entry (and the name associated with it) in * the set that hasn't yet been visited. Returns 0 when all items * have been seen, else 1. @@ -746,7 +746,7 @@ private: const char *name_; }; -/* +/** * @class ACE_Malloc_FIFO_Iterator_T * * @brief FIFO iterator for names stored in Malloc'd memory. @@ -781,7 +781,7 @@ public: /// visited. Returns 0 when all items have been seen, else 1. int next (void *&next_entry); - /* + /** * Pass back the next entry (and the name associated with it) in * the set that hasn't yet been visited. Returns 0 when all items * have been seen, else 1. @@ -823,7 +823,7 @@ class ACE_Malloc : public ACE_Malloc_T class ACE_Map_Reverse_Iterator; -/* +/** * @class ACE_Map_Manager * * @brief @@ -168,7 +168,7 @@ public: /// resources. ~ACE_Map_Manager (void); - /* + /** * Associate @a ext_id with @a int_id. If @a ext_id is already in the * map then the ACE_Map_Entry is not changed. * @retval 0 If a new entry is bound successfully. @@ -178,7 +178,7 @@ public: int bind (const EXT_ID &ext_id, const INT_ID &int_id); - /* + /** * Reassociate @a ext_id with @a int_id. If @a ext_id is not in the * map then behaves just like bind(). Otherwise, store the old * values of @a ext_id and @a int_id into the "out" parameters and @@ -194,7 +194,7 @@ public: EXT_ID &old_ext_id, INT_ID &old_int_id); - /* + /** * Reassociate @a ext_id with @a int_id. If @a ext_id is not in the * map then behaves just like bind(). Otherwise, store the old * values of @a int_id into the "out" parameter and rebind the new @@ -212,7 +212,7 @@ public: int rebind (const EXT_ID &ext_id, const INT_ID &int_id); - /* + /** * Associate @a ext_id with @a int_id if and only if @a ext_id is not * in the map. If @a ext_id is already in the map then the @a int_id * parameter is overwritten with the existing value in the map @@ -223,7 +223,7 @@ public: int trybind (const EXT_ID &ext_id, INT_ID &int_id); - /* + /** * Locate @a ext_id and pass out parameter via @a int_id. * @retval 0 If found. * @retval -1 If not found. @@ -234,7 +234,7 @@ public: /// Returns 0 if the @a ext_id is in the mapping, otherwise -1. int find (const EXT_ID &ext_id) const; - /* + /** * Unbind (remove) the @a ext_id from the map. Don't return the * @a int_id to the caller (this is useful for collections where the * @a int_ids are *not* dynamically allocated...) Returns 0 if @@ -242,7 +242,7 @@ public: */ int unbind (const EXT_ID &ext_id); - /* + /** * Break any association of @a ext_id. Returns the value of @a int_id * in case the caller needs to deallocate memory. Returns 0 if * successful, else -1. @@ -250,7 +250,7 @@ public: int unbind (const EXT_ID &ext_id, INT_ID &int_id); - /* + /** * Unbind all entires. */ void unbind_all (void); @@ -261,7 +261,7 @@ public: /// Return the total size of the map. size_t total_size (void) const; - /* + /** * Returns a reference to the underlying ACE_LOCK. This makes it * possible to acquire the lock explicitly, which can be useful in * some cases if you instantiate the ACE_Atomic_Op with an @@ -389,7 +389,7 @@ protected: #if defined (ACE_HAS_LAZY_MAP_MANAGER) - /* + /** * In the case of lazy map managers, the movement of free slots from * the occupied list to the free list is delayed until we run out of * free slots in the free list. This function goes through the @@ -442,7 +442,7 @@ private: ACE_UNIMPLEMENTED_FUNC (ACE_Map_Manager (const ACE_Map_Manager &)) }; -/* +/** * @class ACE_Map_Iterator_Base * * @brief Iterator for the ACE_Map_Manager. @@ -501,7 +501,7 @@ protected: ACE_UINT32 next_; }; -/* +/** * @class ACE_Map_Const_Iterator_Base * * @brief Const iterator for the ACE_Map_Manager. @@ -560,7 +560,7 @@ protected: ACE_UINT32 next_; }; -/* +/** * @class ACE_Map_Iterator * * @brief Forward iterator for the ACE_Map_Manager. @@ -607,7 +607,7 @@ public: ACE_ALLOC_HOOK_DECLARE; }; -/* +/** * @class ACE_Map_Const_Iterator * * @brief Forward const iterator for the ACE_Map_Manager. @@ -654,7 +654,7 @@ public: ACE_ALLOC_HOOK_DECLARE; }; -/* +/** * @class ACE_Map_Reverse_Iterator * * @brief Reverse Iterator for the ACE_Map_Manager. diff --git a/dep/ACE_wrappers/ace/Map_T.h b/dep/ACE_wrappers/ace/Map_T.h index 505f13f26..bb5965a76 100644 --- a/dep/ACE_wrappers/ace/Map_T.h +++ b/dep/ACE_wrappers/ace/Map_T.h @@ -1,7 +1,7 @@ /* -*- C++ -*- */ //============================================================================= -/* +/** * @file Map_T.h * * $Id: Map_T.h 92097 2010-09-30 05:41:49Z msmit $ @@ -25,7 +25,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_Noop_Key_Generator * * @brief Defines a noop key generator. @@ -39,7 +39,7 @@ public: int operator () (T &); }; -/* +/** * @class ACE_Incremental_Key_Generator * * @brief Defines a simple incremental key generator. @@ -72,7 +72,7 @@ protected: T t_; }; -/* +/** * @class ACE_Iterator_Impl * * @brief Defines a abstract iterator. @@ -103,7 +103,7 @@ public: virtual void minus_minus (void) = 0; }; -/* +/** * @class ACE_Reverse_Iterator_Impl * * @brief Defines a abstract reverse iterator. @@ -134,7 +134,7 @@ public: virtual void minus_minus (void) = 0; }; -/* +/** * @class ACE_Iterator * * @brief Defines the iterator interface. @@ -190,7 +190,7 @@ protected: ACE_Iterator_Impl *implementation_; }; -/* +/** * @class ACE_Reverse_Iterator * * @brief Defines the reverse iterator interface. @@ -218,7 +218,7 @@ public: /// Assignment operator. ACE_Reverse_Iterator &operator= (const ACE_Reverse_Iterator &rhs); - /* + /** * @name Comparison Operators * * The usual equality operators. @@ -252,7 +252,7 @@ protected: ACE_Reverse_Iterator_Impl *implementation_; }; -/* +/** * @class ACE_Map * * @brief Defines a map interface. @@ -290,7 +290,7 @@ public: /// Close down a and release dynamically allocated resources. virtual int close (void) = 0; - /* + /** * Add @a key / @a value pair to the map. If @a key is already in the * map then no changes are made and 1 is returned. Returns 0 on a * successful addition. This function fails for maps that do not @@ -299,7 +299,7 @@ public: virtual int bind (const KEY &key, const VALUE &value) = 0; - /* + /** * Add @a key / @a value pair to the map. @a key is an "inout" parameter * and maybe modified/extended by the map to add additional * information. To recover original key, call the @@ -308,7 +308,7 @@ public: virtual int bind_modify_key (const VALUE &value, KEY &key) = 0; - /* + /** * Produce a key and return it through @a key which is an "out" * parameter. For maps that do not naturally produce keys, the map * adapters will use the @c KEY_GENERATOR class to produce a key. @@ -318,7 +318,7 @@ public: */ virtual int create_key (KEY &key) = 0; - /* + /** * Add @a value to the map, and the corresponding key produced by the * Map is returned through @a key which is an "out" parameter. For * maps that do not naturally produce keys, the map adapters will @@ -330,7 +330,7 @@ public: virtual int bind_create_key (const VALUE &value, KEY &key) = 0; - /* + /** * Add @a value to the map. The user does not care about the * corresponding key produced by the Map. For maps that do not * naturally produce keys, the map adapters will use the @@ -346,7 +346,7 @@ public: virtual int recover_key (const KEY &modified_key, KEY &original_key) = 0; - /* + /** * Reassociate @a key with @a value. The function fails if @a key is * not in the map for maps that do not allow user specified keys. * However, for maps that allow user specified keys, if the key is @@ -355,7 +355,7 @@ public: virtual int rebind (const KEY &key, const VALUE &value) = 0; - /* + /** * Reassociate @a key with @a value, storing the old value into the * "out" parameter @a old_value. The function fails if @a key is not * in the map for maps that do not allow user specified keys. @@ -366,7 +366,7 @@ public: const VALUE &value, VALUE &old_value) = 0; - /* + /** * Reassociate @a key with @a value, storing the old key and value * into the "out" parameters @a old_key and @a old_value. The * function fails if @a key is not in the map for maps that do not @@ -379,7 +379,7 @@ public: KEY &old_key, VALUE &old_value) = 0; - /* + /** * Associate @a key with @a value if and only if @a key is not in the * map. If @a key is already in the map, then the @a value parameter * is overwritten with the existing value in the map. Returns 0 if a @@ -444,7 +444,7 @@ private: ACE_UNIMPLEMENTED_FUNC (ACE_Map (const ACE_Map &)) }; -/* +/** * @class ACE_Map_Impl_Iterator_Adapter * * @brief Defines a iterator implementation for the Map_Impl class. @@ -490,7 +490,7 @@ protected: IMPLEMENTATION implementation_; }; -/* +/** * @class ACE_Map_Impl_Reverse_Iterator_Adapter * * @brief Defines a reverse iterator implementation for the Map_Impl class. @@ -536,7 +536,7 @@ protected: IMPLEMENTATION implementation_; }; -/* +/** * @class ACE_Map_Impl * * @brief Defines a map implementation. @@ -576,7 +576,7 @@ public: /// Close down a and release dynamically allocated resources. virtual int close (void); - /* + /** * Add @a key / @a value pair to the map. If @a key is already in the * map then no changes are made and 1 is returned. Returns 0 on a * successful addition. This function fails for maps that do not @@ -585,7 +585,7 @@ public: virtual int bind (const KEY &key, const VALUE &value); - /* + /** * Add @a key / @a value pair to the map. @a key is an "inout" parameter * and maybe modified/extended by the map to add additional * information. To recover original key, call the @@ -594,7 +594,7 @@ public: virtual int bind_modify_key (const VALUE &value, KEY &key); - /* + /** * Produce a key and return it through @a key which is an "out" * parameter. For maps that do not naturally produce keys, the map * adapters will use the @c KEY_GENERATOR class to produce a key. @@ -604,7 +604,7 @@ public: */ virtual int create_key (KEY &key); - /* + /** * Add @a value to the map, and the corresponding key produced by the * Map is returned through @a key which is an "out" parameter. For * maps that do not naturally produce keys, the map adapters will @@ -616,7 +616,7 @@ public: virtual int bind_create_key (const VALUE &value, KEY &key); - /* + /** * Add @a value to the map. The user does not care about the * corresponding key produced by the Map. For maps that do not * naturally produce keys, the map adapters will use the @@ -632,7 +632,7 @@ public: virtual int recover_key (const KEY &modified_key, KEY &original_key); - /* + /** * Reassociate @a key with @a value. The function fails if @a key is * not in the map for maps that do not allow user specified keys. * However, for maps that allow user specified keys, if the key is @@ -641,7 +641,7 @@ public: virtual int rebind (const KEY &key, const VALUE &value); - /* + /** * Reassociate @a key with @a value, storing the old value into the * "out" parameter @a old_value. The function fails if @a key is not * in the map for maps that do not allow user specified keys. @@ -652,7 +652,7 @@ public: const VALUE &value, VALUE &old_value); - /* + /** * Reassociate @a key with @a value, storing the old key and value * into the "out" parameters @a old_key and @a old_value. The * function fails if @a key is not in the map for maps that do not @@ -665,7 +665,7 @@ public: KEY &old_key, VALUE &old_value); - /* + /** * Associate @a key with @a value if and only if @a key is not in the * map. If @a key is already in the map, then the @a value parameter * is overwritten with the existing value in the map. Returns 0 if a @@ -725,7 +725,7 @@ private: ACE_UNIMPLEMENTED_FUNC (ACE_Map_Impl (const ACE_Map_Impl &)) }; -/* +/** * @class ACE_Active_Map_Manager_Iterator_Adapter * * @brief Defines a iterator implementation for the Active_Map_Manager_Adapter. @@ -771,7 +771,7 @@ protected: ACE_Map_Iterator implementation_; }; -/* +/** * @class ACE_Active_Map_Manager_Reverse_Iterator_Adapter * * @brief Defines a reverse iterator implementation for the Active_Map_Manager_Adapter. @@ -817,7 +817,7 @@ protected: ACE_Map_Reverse_Iterator implementation_; }; -/* +/** * @class ACE_Active_Map_Manager_Adapter * * @brief Defines a map implementation. @@ -858,7 +858,7 @@ public: /// Close down a and release dynamically allocated resources. virtual int close (void); - /* + /** * Add @a key / @a value pair to the map. If @a key is already in the * map then no changes are made and 1 is returned. Returns 0 on a * successful addition. This function fails for maps that do not @@ -867,7 +867,7 @@ public: virtual int bind (const KEY &key, const VALUE &value); - /* + /** * Add @a key / @a value pair to the map. @a key is an "inout" parameter * and maybe modified/extended by the map to add additional * information. To recover original key, call the @@ -876,7 +876,7 @@ public: virtual int bind_modify_key (const VALUE &value, KEY &key); - /* + /** * Produce a key and return it through @a key which is an "out" * parameter. For maps that do not naturally produce keys, the map * adapters will use the @c KEY_GENERATOR class to produce a key. @@ -886,7 +886,7 @@ public: */ virtual int create_key (KEY &key); - /* + /** * Add @a value to the map, and the corresponding key produced by the * Map is returned through @a key which is an "out" parameter. For * maps that do not naturally produce keys, the map adapters will @@ -898,7 +898,7 @@ public: virtual int bind_create_key (const VALUE &value, KEY &key); - /* + /** * Add @a value to the map. The user does not care about the * corresponding key produced by the Map. For maps that do not * naturally produce keys, the map adapters will use the @@ -914,7 +914,7 @@ public: virtual int recover_key (const KEY &modified_key, KEY &original_key); - /* + /** * Reassociate @a key with @a value. The function fails if @a key is * not in the map for maps that do not allow user specified keys. * However, for maps that allow user specified keys, if the key is @@ -923,7 +923,7 @@ public: virtual int rebind (const KEY &key, const VALUE &value); - /* + /** * Reassociate @a key with @a value, storing the old value into the * "out" parameter @a old_value. The function fails if @a key is not * in the map for maps that do not allow user specified keys. @@ -934,7 +934,7 @@ public: const VALUE &value, VALUE &old_value); - /* + /** * Reassociate @a key with @a value, storing the old key and value * into the "out" parameters @a old_key and @a old_value. The * function fails if @a key is not in the map for maps that do not @@ -947,7 +947,7 @@ public: KEY &old_key, VALUE &old_value); - /* + /** * Associate @a key with @a value if and only if @a key is not in the * map. If @a key is already in the map, then the @a value parameter * is overwritten with the existing value in the map. Returns 0 if a @@ -1021,7 +1021,7 @@ private: ACE_UNIMPLEMENTED_FUNC (ACE_Active_Map_Manager_Adapter (const ACE_Active_Map_Manager_Adapter &)) }; -/* +/** * @class ACE_Hash_Map_Manager_Ex_Iterator_Adapter * * @brief Defines a iterator implementation for the Hash_Map_Manager_Adapter. @@ -1067,7 +1067,7 @@ protected: ACE_Hash_Map_Iterator_Ex implementation_; }; -/* +/** * @class ACE_Hash_Map_Manager_Ex_Reverse_Iterator_Adapter * * @brief Defines a reverse iterator implementation for the Hash_Map_Manager_Adapter. @@ -1113,7 +1113,7 @@ protected: ACE_Hash_Map_Reverse_Iterator_Ex implementation_; }; -/* +/** * @class ACE_Hash_Map_Manager_Ex_Adapter * * @brief Defines a map implementation. @@ -1152,7 +1152,7 @@ public: /// Close down a Map and release dynamically allocated resources. virtual int close (void); - /* + /** * Add @a key / @a value pair to the map. If @a key is already in the * map then no changes are made and 1 is returned. Returns 0 on a * successful addition. This function fails for maps that do not @@ -1161,7 +1161,7 @@ public: virtual int bind (const KEY &key, const VALUE &value); - /* + /** * Add @a key / @a value pair to the map. @a key is an "inout" parameter * and maybe modified/extended by the map to add additional * information. To recover original key, call the @@ -1170,7 +1170,7 @@ public: virtual int bind_modify_key (const VALUE &value, KEY &key); - /* + /** * Produce a key and return it through @a key which is an "out" * parameter. For maps that do not naturally produce keys, the map * adapters will use the @c KEY_GENERATOR class to produce a key. @@ -1180,7 +1180,7 @@ public: */ virtual int create_key (KEY &key); - /* + /** * Add @a value to the map, and the corresponding key produced by the * Map is returned through @a key which is an "out" parameter. For * maps that do not naturally produce keys, the map adapters will @@ -1192,7 +1192,7 @@ public: virtual int bind_create_key (const VALUE &value, KEY &key); - /* + /** * Add @a value to the map. The user does not care about the * corresponding key produced by the Map. For maps that do not * naturally produce keys, the map adapters will use the @@ -1208,7 +1208,7 @@ public: virtual int recover_key (const KEY &modified_key, KEY &original_key); - /* + /** * Reassociate @a key with @a value. The function fails if @a key is * not in the map for maps that do not allow user specified keys. * However, for maps that allow user specified keys, if the key is @@ -1217,7 +1217,7 @@ public: virtual int rebind (const KEY &key, const VALUE &value); - /* + /** * Reassociate @a key with @a value, storing the old value into the * "out" parameter @a old_value. The function fails if @a key is not * in the map for maps that do not allow user specified keys. @@ -1228,7 +1228,7 @@ public: const VALUE &value, VALUE &old_value); - /* + /** * Reassociate @a key with @a value, storing the old key and value * into the "out" parameters @a old_key and @a old_value. The * function fails if @a key is not in the map for maps that do not @@ -1241,7 +1241,7 @@ public: KEY &old_key, VALUE &old_value); - /* + /** * Associate @a key with @a value if and only if @a key is not in the * map. If @a key is already in the map, then the @a value parameter * is overwritten with the existing value in the map. Returns 0 if a @@ -1307,7 +1307,7 @@ private: ACE_UNIMPLEMENTED_FUNC (ACE_Hash_Map_Manager_Ex_Adapter (const ACE_Hash_Map_Manager_Ex_Adapter &)) }; -/* +/** * @class ACE_Map_Manager_Iterator_Adapter * * @brief Defines a iterator implementation for the Map_Manager_Adapter. @@ -1353,7 +1353,7 @@ protected: ACE_Map_Iterator implementation_; }; -/* +/** * @class ACE_Map_Manager_Reverse_Iterator_Adapter * * @brief Defines a reverse iterator implementation for the Map Manager. @@ -1399,7 +1399,7 @@ protected: ACE_Map_Reverse_Iterator implementation_; }; -/* +/** * @class ACE_Map_Manager_Adapter * * @brief Defines a map implementation. @@ -1438,7 +1438,7 @@ public: /// Close down a and release dynamically allocated resources. virtual int close (void); - /* + /** * Add @a key / @a value pair to the map. If @a key is already in the * map then no changes are made and 1 is returned. Returns 0 on a * successful addition. This function fails for maps that do not @@ -1447,7 +1447,7 @@ public: virtual int bind (const KEY &key, const VALUE &value); - /* + /** * Add @a key / @a value pair to the map. @a key is an "inout" parameter * and maybe modified/extended by the map to add additional * information. To recover original key, call the @@ -1456,7 +1456,7 @@ public: virtual int bind_modify_key (const VALUE &value, KEY &key); - /* + /** * Produce a key and return it through @a key which is an "out" * parameter. For maps that do not naturally produce keys, the map * adapters will use the @c KEY_GENERATOR class to produce a key. @@ -1466,7 +1466,7 @@ public: */ virtual int create_key (KEY &key); - /* + /** * Add @a value to the map, and the corresponding key produced by the * Map is returned through @a key which is an "out" parameter. For * maps that do not naturally produce keys, the map adapters will @@ -1478,7 +1478,7 @@ public: virtual int bind_create_key (const VALUE &value, KEY &key); - /* + /** * Add @a value to the map. The user does not care about the * corresponding key produced by the Map. For maps that do not * naturally produce keys, the map adapters will use the @@ -1494,7 +1494,7 @@ public: virtual int recover_key (const KEY &modified_key, KEY &original_key); - /* + /** * Reassociate @a key with @a value. The function fails if @a key is * not in the map for maps that do not allow user specified keys. * However, for maps that allow user specified keys, if the key is @@ -1503,7 +1503,7 @@ public: virtual int rebind (const KEY &key, const VALUE &value); - /* + /** * Reassociate @a key with @a value, storing the old value into the * "out" parameter @a old_value. The function fails if @a key is not * in the map for maps that do not allow user specified keys. @@ -1514,7 +1514,7 @@ public: const VALUE &value, VALUE &old_value); - /* + /** * Reassociate @a key with @a value, storing the old key and value * into the "out" parameters @a old_key and @a old_value. The * function fails if @a key is not in the map for maps that do not @@ -1527,7 +1527,7 @@ public: KEY &old_key, VALUE &old_value); - /* + /** * Associate @a key with @a value if and only if @a key is not in the * map. If @a key is already in the map, then the @a value parameter * is overwritten with the existing value in the map. Returns 0 if a diff --git a/dep/ACE_wrappers/ace/Mem_Map.h b/dep/ACE_wrappers/ace/Mem_Map.h index edc8c7ccf..bda59bd18 100644 --- a/dep/ACE_wrappers/ace/Mem_Map.h +++ b/dep/ACE_wrappers/ace/Mem_Map.h @@ -1,7 +1,7 @@ // -*- C++ -*- //========================================================================== -/* +/** * @file Mem_Map.h * * $Id: Mem_Map.h 91066 2010-07-12 11:05:04Z johnnyw $ @@ -30,7 +30,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_Mem_Map * * @brief C++ interface OS memory mapping system call. @@ -111,7 +111,7 @@ public: /// Close down the if necessary. int close_handle (void); - /* + /** * Close down the internal if necessary. This is * mostly necessary on Win32, which has a different handle for * file-mapping kernel object. @@ -135,14 +135,14 @@ public: /// Unmap the region starting at addr_. int unmap (void *addr, ssize_t len); - /* + /** * Sync @a len bytes of the memory region to the backing store * starting at base_addr_. If @a len == -1 then sync the whole * region. */ int sync (size_t len, int flags = MS_SYNC); - /* + /** * Sync the whole memory region to the backing store * starting at base_addr_. */ @@ -152,13 +152,13 @@ public: /// starting at addr_. int sync (void *addr, size_t len, int flags = MS_SYNC); - /* + /** * Change the protection of the pages of the mapped region to @a prot * starting at base_addr_ up to @a len bytes. */ int protect (size_t len, int prot = PROT_RDWR); - /* + /** * Change the protection of all the pages of the mapped region to @a prot * starting at base_addr_. */ diff --git a/dep/ACE_wrappers/ace/Memory_Pool.h b/dep/ACE_wrappers/ace/Memory_Pool.h index 4f24eaef7..a36e74334 100644 --- a/dep/ACE_wrappers/ace/Memory_Pool.h +++ b/dep/ACE_wrappers/ace/Memory_Pool.h @@ -1,7 +1,7 @@ /* -*- C++ -*- */ //============================================================================= -/* +/** * @file Memory_Pool.h * * $Id: Memory_Pool.h 80826 2008-03-04 14:51:23Z wotte $ diff --git a/dep/ACE_wrappers/ace/Message_Block.h b/dep/ACE_wrappers/ace/Message_Block.h index 4e2b30dc4..0e8c4bfd6 100644 --- a/dep/ACE_wrappers/ace/Message_Block.h +++ b/dep/ACE_wrappers/ace/Message_Block.h @@ -1,7 +1,7 @@ // -*- C++ -*- //========================================================================== -/* +/** * @file Message_Block.h * * $Id: Message_Block.h 91066 2010-07-12 11:05:04Z johnnyw $ @@ -34,7 +34,7 @@ class ACE_Data_Block; class ACE_Lock; -/* +/** * @class ACE_Message_Block * * @brief Stores messages for use throughout ACE (particularly @@ -131,7 +131,7 @@ public: /// Create an empty message. ACE_Message_Block (ACE_Allocator *message_block_allocator = 0); - /* + /** * Create an ACE_Message_Block that owns the specified ACE_Data_Block * without copying it. If the @a flags is set to @c DONT_DELETE we * don't delete the ACE_Data_Block. It is left to the client's @@ -142,7 +142,7 @@ public: Message_Flags flags = 0, ACE_Allocator *message_block_allocator = 0); - /* + /** * Create an ACE_Message_Block that refers to @a data without * copying it. The @a data memory will not be freed when this block is * destroyed; memory management of @a data is left to the caller. @@ -153,7 +153,7 @@ public: size_t size = 0, unsigned long priority = ACE_DEFAULT_MESSAGE_BLOCK_PRIORITY); - /* + /** * Create an initialized message of type @a type containing @a size * bytes. The @a cont argument initializes the continuation field in * the ACE_Message_Block. If @a data == 0 then this block allocates and @@ -188,7 +188,7 @@ public: ACE_Allocator *data_block_allocator = 0, ACE_Allocator *message_block_allocator = 0); - /* + /** * A copy constructor. This constructor is a bit different. If the * incoming Message Block has a data block from the stack this * constructor does a deep copy ie. allocates a new data block on @@ -202,7 +202,7 @@ public: ACE_Message_Block (const ACE_Message_Block &mb, size_t align); - /* + /** * Create a Message Block that assumes it has ownership of @a data, * but in reality it doesnt (i.e., cannot delete it since it didn't * malloc it!). Note that the @c size of the Message_Block will @@ -211,7 +211,7 @@ public: int init (const char *data, size_t size = 0); - /* + /** * Create an initialized message of type @a type containing @a size * bytes. The @a cont argument initializes the continuation field in * the Message_Block. If @a data == 0 then we create and own the @@ -238,7 +238,7 @@ public: ACE_Allocator *data_block_allocator = 0, ACE_Allocator *message_block_allocator = 0); - /* + /** * Delete all the resources held in the message. * * @note Note that release() is designed to release the continuation @@ -317,7 +317,7 @@ public: /// Return a "shallow" copy that increments our reference count by 1. virtual ACE_Message_Block *duplicate (void) const; - /* + /** * Return a "shallow" copy that increments our reference count by 1. * This is similar to CORBA's <_duplicate> method, which is useful * if you want to eliminate lots of checks for NULL @a mb pointers @@ -325,7 +325,7 @@ public: */ static ACE_Message_Block *duplicate (const ACE_Message_Block *mb); - /* + /** * Decrease the shared ACE_Data_Block's reference count by 1. If the * ACE_Data_Block's reference count goes to 0, it is deleted. * In all cases, this ACE_Message_Block is deleted - it must have come @@ -354,7 +354,7 @@ public: */ virtual ACE_Message_Block *release (void); - /* + /** * This behaves like the non-static method , except that it * checks if @a mb is 0. This is similar to , which * is useful if you want to eliminate lots of checks for NULL @@ -364,7 +364,7 @@ public: // = Operations on Message data - /* + /** * Copies data into this ACE_Message_Block. Data is copied into the * block starting at the current write pointer. * @@ -378,7 +378,7 @@ public: */ int copy (const char *buf, size_t n); - /* + /** * Copies a 0-terminated character string into this ACE_Message_Block. * The string is copied into the block starting at the current write * pointer. The 0-terminator is included in the copied data. @@ -407,7 +407,7 @@ public: /// Access all the allocators in the message block. /// @todo Not sure whether we would need finer control while /// trying to access allocators ie. a method for every allocator. - /* + /** * This method returns the allocators only from the first message * block in the chain. * @@ -427,7 +427,7 @@ public: /// Reset all the allocators in the message block. /// @todo Not sure whether we would need finer control while /// trying to reset allocators ie. a method for every allocator. - /* + /** * This method resets the allocators in all the message blocks in * the chain. */ @@ -446,7 +446,7 @@ public: /// Return a pointer to 1 past the end of the allocated data in a message. char *end (void) const; - /* + /** * Return a pointer to 1 past the end of the allotted data in a message. * Allotted data may be less than allocated data if a value smaller than * capacity() to is passed to size(). @@ -503,7 +503,7 @@ public: /// does not consider the bytes in chained Message_Blocks). size_t size (void) const; - /* + /** * Set the number of bytes in the top-level Message_Block, * reallocating space if necessary. However, the @c rd_ptr_ and * @c wr_ptr_ remain at the original offsets into the buffer, even if @@ -525,14 +525,14 @@ public: // = ACE_Data_Block methods. - /* + /** * Get a pointer to the data block. Note that the ACE_Message_Block * still references the block; this call does not change the reference * count. */ ACE_Data_Block *data_block (void) const; - /* + /** * Set a new data block pointer. The original ACE_Data_Block is released * as a result of this call. If you need to keep the original block, call * instead. Upon return, this ACE_Message_Block @@ -662,7 +662,7 @@ private: ACE_Message_Block (const ACE_Message_Block &); }; -/* +/** * @class ACE_Data_Block * * @brief Stores the data payload that is accessed via one or more @@ -710,7 +710,7 @@ public: /// Return a pointer to 1 past the end of the allocated data in a message. char *end (void) const; - /* + /** * Return a pointer to 1 past the end of the allotted data in a message. * The allotted data may be less than allocated data if is passed * an argument less than . @@ -730,7 +730,7 @@ public: /// Get the total amount of allocated space. size_t capacity (void) const; - /* + /** * Return an exact "deep copy" of the message, i.e., create fresh * new copies of all the Data_Blocks and continuations. * Notice that Data_Blocks can act as "Prototypes", i.e. derived @@ -739,7 +739,7 @@ public: */ virtual ACE_Data_Block *clone (ACE_Message_Block::Message_Flags mask = 0) const; - /* + /** * As clone above, but it does not copy the contents of the buffer, * i.e., create a new Data_Block of the same dynamic type, with the * same allocator, locking_strategy, and with the same amount of @@ -753,7 +753,7 @@ public: /// Return a "shallow" copy that increments our reference count by 1. ACE_Data_Block *duplicate (void); - /* + /** * Decrease the shared reference count by 1. If the reference count * is > 0 then return this; else if reference count == 0 then delete * @c this and @a mb and return 0. Behavior is undefined if reference @@ -799,7 +799,7 @@ protected: /// Internal get the current reference count. int reference_count_i (void) const; - /* + /** * Decrease the reference count, but don't delete the object. * Returns 0 if the object should be removed. * If @a lock is equal to the locking strategy then we assume that @@ -826,14 +826,14 @@ protected: char *base_; // = Strategies. - /* + /** * Pointer to the allocator defined for this ACE_Data_Block. Note * that this pointer is shared by all owners of this * ACE_Data_Block. */ ACE_Allocator *allocator_strategy_; - /* + /** * Pointer to the locking strategy defined for this * ACE_Data_Block. This is used to protect regions of code that * access shared ACE_Data_Block state. Note that this lock is @@ -841,7 +841,7 @@ protected: */ ACE_Lock *locking_strategy_; - /* + /** * Reference count for this ACE_Data_Block, which is used to avoid * deep copies (i.e., ). Note that this pointer value is * shared by all owners of the 's data, i.e., all the diff --git a/dep/ACE_wrappers/ace/Message_Block_T.h b/dep/ACE_wrappers/ace/Message_Block_T.h index 5823da708..b57a25bdc 100644 --- a/dep/ACE_wrappers/ace/Message_Block_T.h +++ b/dep/ACE_wrappers/ace/Message_Block_T.h @@ -1,7 +1,7 @@ /* -*- C++ -*- */ //============================================================================= -/* +/** * @file Message_Block_T.h * * $Id: Message_Block_T.h 80826 2008-03-04 14:51:23Z wotte $ @@ -23,7 +23,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_Locked_Data_Block * * @brief A Data_Block with a concrete locking strategy. @@ -53,7 +53,7 @@ public: /// Delete all the resources held in the message. virtual ~ACE_Locked_Data_Block (void); - /* + /** * Return an exact "deep copy" of the message, the dynamic type is * ACE_Locked_Data_Block<> * See the documentation in Message_Block.h for details. diff --git a/dep/ACE_wrappers/ace/Message_Queue.h b/dep/ACE_wrappers/ace/Message_Queue.h index 1952a504e..eca4a3760 100644 --- a/dep/ACE_wrappers/ace/Message_Queue.h +++ b/dep/ACE_wrappers/ace/Message_Queue.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Message_Queue.h * * $Id: Message_Queue.h 91688 2010-09-09 11:21:50Z johnnyw $ @@ -29,7 +29,7 @@ class ACE_Notification_Strategy; template class ACE_Message_Queue_Iterator; template class ACE_Message_Queue_Reverse_Iterator; -/* +/** * @class ACE_Message_Queue_Base * * @brief Base class for ACE_Message_Queue, which is the central @@ -85,7 +85,7 @@ public: // = Enqueue and dequeue methods. - /* + /** * Retrieve the first ACE_Message_Block without removing it. Note * that @a timeout uses <{absolute}> time rather than <{relative}> * time. If the @a timeout elapses without receiving a message -1 is @@ -97,7 +97,7 @@ public: virtual int peek_dequeue_head (ACE_Message_Block *&first_item, ACE_Time_Value *timeout = 0) = 0; - /* + /** * Enqueue a into the tail of the queue. * Returns number of items in queue if the call succeeds or -1 * otherwise. These calls return -1 when queue is closed, @@ -111,7 +111,7 @@ public: virtual int enqueue (ACE_Message_Block *new_item, ACE_Time_Value *timeout = 0) = 0; - /* + /** * Dequeue and return the at the head of the * queue. Returns number of items in queue if the call succeeds or * -1 otherwise. These calls return -1 when queue is closed, @@ -155,7 +155,7 @@ public: // = Activation control methods. - /* + /** * Deactivate the queue and wake up all threads waiting on the queue * so they can continue. No messages are removed from the queue, * however. Any other operations called until the queue is @@ -166,7 +166,7 @@ public: */ virtual int deactivate (void) = 0; - /* + /** * Reactivate the queue so that threads can enqueue and dequeue * messages again. * @@ -174,7 +174,7 @@ public: */ virtual int activate (void) = 0; - /* + /** * Pulse the queue to wake up any waiting threads. Changes the * queue state to PULSED; future enqueue/dequeue operations proceed * as in ACTIVATED state. diff --git a/dep/ACE_wrappers/ace/Message_Queue_NT.h b/dep/ACE_wrappers/ace/Message_Queue_NT.h index 5a4f4c53b..e959e57cf 100644 --- a/dep/ACE_wrappers/ace/Message_Queue_NT.h +++ b/dep/ACE_wrappers/ace/Message_Queue_NT.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Message_Queue_NT.h * * $Id: Message_Queue_NT.h 82723 2008-09-16 09:35:44Z johnnyw $ @@ -28,7 +28,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL #if defined (ACE_HAS_WIN32_OVERLAPPED_IO) -/* +/** * @class ACE_Message_Queue_NT * * @brief Message Queue implementation using IO completion port on NT. @@ -51,7 +51,7 @@ public: // = Initialization and termination methods. ACE_Message_Queue_NT (DWORD max_threads = ACE_Message_Queue_Base::DEFAULT_HWM); - /* + /** * Initialize the Message Queue by creating a new NT I/O completion * port. The first arguemnt specifies the number of threads * released by the MQ that are allowed to run concurrently. Return @@ -68,7 +68,7 @@ public: // = Enqueue and dequeue methods. - /* + /** * Enqueue an ACE_Message_Block * at the end of the queue. * Returns -1 on failure, else the number of items still on the * queue. @@ -78,7 +78,7 @@ public: virtual int enqueue (ACE_Message_Block *new_item, ACE_Time_Value *timeout = 0); - /* + /** * Dequeue and return the ACE_Message_Block * at the head of the * queue. Returns -1 on failure, else the number of items still on * the queue. @@ -89,44 +89,44 @@ public: ACE_Time_Value *timeout = 0); // = Check if queue is full/empty. - /* + /** * Always return false. */ virtual bool is_full (void); - /* + /** * True if queue is empty, else false. Notice the return value is * only transient. */ virtual bool is_empty (void); // = Queue statistic methods (transient.) - /* + /** * Number of total bytes on the queue, i.e., sum of the message * block sizes. */ virtual size_t message_bytes (void); - /* + /** * Number of total length on the queue, i.e., sum of the message * block lengths. */ virtual size_t message_length (void); - /* + /** * Number of total messages on the queue. */ virtual size_t message_count (void); // = Manual changes to these stats (used when queued message blocks // change size or lengths). - /* + /** * New value of the number of total bytes on the queue, i.e., sum of * the message block sizes. */ virtual void message_bytes (size_t new_size); - /* + /** * New value of the number of total length on the queue, i.e., sum * of the message block lengths. */ @@ -137,7 +137,7 @@ public: // = Activation control methods. - /* + /** * Deactivate the queue and wake up all threads waiting on the queue * so they can continue. No messages are removed from the queue, * however. Any other operations called until the queue is @@ -148,13 +148,13 @@ public: */ virtual int deactivate (void); - /* + /** * Reactivate the queue so that threads can enqueue and dequeue * messages again. Returns the state of the queue before the call. */ virtual int activate (void); - /* + /** * Pulse the queue to wake up any waiting threads. Changes the * queue state to PULSED; future enqueue/dequeue operations proceed * as in ACTIVATED state. @@ -208,7 +208,7 @@ private: /// Current number of messages in the queue. size_t cur_count_; - /* + /** * Synchronizer. This should really be an ACE_Recursive_Thread_Mutex * but since this class is only supported on NT, it's okay to use * ACE_Thread_Mutex here. diff --git a/dep/ACE_wrappers/ace/Message_Queue_T.h b/dep/ACE_wrappers/ace/Message_Queue_T.h index 7c77f978e..73e462676 100644 --- a/dep/ACE_wrappers/ace/Message_Queue_T.h +++ b/dep/ACE_wrappers/ace/Message_Queue_T.h @@ -1,7 +1,7 @@ /* -*- C++ -*- */ //============================================================================= -/* +/** * @file Message_Queue_T.h * * $Id: Message_Queue_T.h 91626 2010-09-07 10:59:20Z johnnyw $ @@ -44,7 +44,7 @@ namespace ACE } #endif /* ACE_HAS_MONITOR_POINTS==1 */ -/* +/** * @class ACE_Message_Queue * * @brief A message queueing facility with parameterized synchronization @@ -74,11 +74,11 @@ public: typedef ACE_Message_Queue_Reverse_Iterator REVERSE_ITERATOR; - /* + /** * @name Initialization methods */ //@{ - /* + /** * Initialize an ACE_Message_Queue. * * @param hwm High water mark. Determines how many bytes can be stored in a @@ -114,7 +114,7 @@ public: /// Releases all resources from the message queue and marks it deactivated. virtual ~ACE_Message_Queue (void); - /* + /** * Releases all resources from the message queue but does not mark it * deactivated. This method holds the queue lock during this operation. * @sa close(). @@ -123,7 +123,7 @@ public: */ virtual int flush (void); - /* + /** * Release all resources from the message queue but do not mark it * as deactivated. * @@ -152,7 +152,7 @@ public: * affected by queue state transitions. */ //@{ - /* + /** * Retrieve a pointer to the first ACE_Message_Block in the queue * without removing it. * @@ -177,7 +177,7 @@ public: virtual int peek_dequeue_head (ACE_Message_Block *&first_item, ACE_Time_Value *timeout = 0); - /* + /** * Enqueue an ACE_Message_Block into the queue in accordance with * the ACE_Message_Block's priority (0 is lowest priority). FIFO * order is maintained when messages of the same priority are @@ -198,7 +198,7 @@ public: virtual int enqueue_prio (ACE_Message_Block *new_item, ACE_Time_Value *timeout = 0); - /* + /** * Enqueue an ACE_Message_Block into the queue in accordance with the * block's deadline time. FIFO order is maintained when messages of * the same deadline time are inserted consecutively. @@ -219,7 +219,7 @@ public: virtual int enqueue_deadline (ACE_Message_Block *new_item, ACE_Time_Value *timeout = 0); - /* + /** * @deprecated This is an alias for enqueue_prio(). It's only here for * backwards compatibility and will go away in a subsequent release. * Please use enqueue_prio() instead. @@ -227,7 +227,7 @@ public: virtual int enqueue (ACE_Message_Block *new_item, ACE_Time_Value *timeout = 0); - /* + /** * Enqueue one or more ACE_Message_Block objects at the tail of the queue. * If the @a new_item @c next() pointer is non-zero, it is assumed to be the * start of a series of ACE_Message_Block objects connected via their @@ -250,7 +250,7 @@ public: virtual int enqueue_tail (ACE_Message_Block *new_item, ACE_Time_Value *timeout = 0); - /* + /** * Enqueue one or more ACE_Message_Block objects at the head of the queue. * If the @a new_item @c next() pointer is non-zero, it is assumed to be the * start of a series of ACE_Message_Block objects connected via their @@ -277,7 +277,7 @@ public: virtual int dequeue (ACE_Message_Block *&first_item, ACE_Time_Value *timeout = 0); - /* + /** * Dequeue the ACE_Message_Block at the head of the queue and return * a pointer to the dequeued block. * @@ -294,7 +294,7 @@ public: virtual int dequeue_head (ACE_Message_Block *&first_item, ACE_Time_Value *timeout = 0); - /* + /** * Dequeue the ACE_Message_Block that has the lowest priority (preserves * FIFO order for messages with the same priority) and return a pointer * to the dequeued block. @@ -312,7 +312,7 @@ public: virtual int dequeue_prio (ACE_Message_Block *&first_item, ACE_Time_Value *timeout = 0); - /* + /** * Dequeue the ACE_Message_Block at the tail of the queue and return * a pointer to the dequeued block. * @@ -329,7 +329,7 @@ public: virtual int dequeue_tail (ACE_Message_Block *&dequeued, ACE_Time_Value *timeout = 0); - /* + /** * Dequeue the ACE_Message_Block with the earliest deadline time and return * a pointer to the dequeued block. * @@ -356,31 +356,31 @@ public: /// True if queue is empty, else false. virtual bool is_empty (void); - /* + /** * Number of total bytes on the queue, i.e., sum of the message * block sizes. */ virtual size_t message_bytes (void); - /* + /** * Number of total length on the queue, i.e., sum of the message * block lengths. */ virtual size_t message_length (void); - /* + /** * Number of total messages on the queue. */ virtual size_t message_count (void); // = Manual changes to these stats (used when queued message blocks // change size or lengths). - /* + /** * New value of the number of total bytes on the queue, i.e., sum of * the message block sizes. */ virtual void message_bytes (size_t new_size); - /* + /** * New value of the number of total length on the queue, i.e., sum * of the message block lengths. */ @@ -393,21 +393,21 @@ public: */ //@{ - /* + /** * Get high watermark. */ virtual size_t high_water_mark (void); - /* + /** * Set the high watermark, which determines how many bytes can be * stored in a queue before it's considered "full." */ virtual void high_water_mark (size_t hwm); - /* + /** * Get low watermark. */ virtual size_t low_water_mark (void); - /* + /** * Set the low watermark, which determines how many bytes must be in * the queue before supplier threads are allowed to enqueue * additional ACE_Message_Blocks. @@ -422,7 +422,7 @@ public: */ //@{ - /* + /** * Deactivate the queue and wakeup all threads waiting on the queue * so they can continue. No messages are removed from the queue, * however. Any other operations called until the queue is @@ -432,13 +432,13 @@ public: */ virtual int deactivate (void); - /* + /** * Reactivate the queue so that threads can enqueue and dequeue * messages again. Returns the state of the queue before the call. */ virtual int activate (void); - /* + /** * Pulse the queue to wake up any waiting threads. Changes the * queue state to PULSED; future enqueue/dequeue operations proceed * as in ACTIVATED state. @@ -460,7 +460,7 @@ public: */ //@{ - /* + /** * This hook is automatically invoked by , * , and when a new item is inserted * into the queue. Subclasses can override this method to perform @@ -535,7 +535,7 @@ protected: // These methods assume locks are held. - /* + /** * Notifies all waiting threads that the queue has been deactivated * so they can wakeup and continue other processing. * No messages are removed from the queue. @@ -618,7 +618,7 @@ private: typedef ACE_Message_Queue ACE_DEFAULT_MESSAGE_QUEUE_TYPE; -/* +/** * @class ACE_Message_Queue_Iterator * * @brief Iterator for the ACE_Message_Queue. @@ -656,7 +656,7 @@ private: ACE_Message_Block *curr_; }; -/* +/** * @class ACE_Message_Queue_Reverse_Iterator * * @brief Reverse Iterator for the ACE_Message_Queue. @@ -694,7 +694,7 @@ private: ACE_Message_Block *curr_; }; -/* +/** * @class ACE_Dynamic_Message_Queue * * @brief A derived class which adapts the ACE_Message_Queue @@ -774,7 +774,7 @@ public: /// Close down the message queue and release all resources. virtual ~ACE_Dynamic_Message_Queue (void); - /* + /** * Detach all messages with status given in the passed flags from * the queue and return them by setting passed head and tail pointers * to the linked list they comprise. This method is intended primarily @@ -787,7 +787,7 @@ public: ACE_Message_Block *&list_tail, u_int status_flags); - /* + /** * Dequeue and return the at the head of the * queue. Returns -1 on failure, else the number of items still on * the queue. @@ -798,7 +798,7 @@ public: /// Dump the state of the queue. virtual void dump (void) const; - /* + /** * Just call priority enqueue method: tail enqueue semantics for dynamic * message queues are unstable: the message may or may not be where * it was placed after the queue is refreshed prior to the next @@ -807,7 +807,7 @@ public: virtual int enqueue_tail (ACE_Message_Block *new_item, ACE_Time_Value *timeout = 0); - /* + /** * Just call priority enqueue method: head enqueue semantics for dynamic * message queues are unstable: the message may or may not be where * it was placed after the queue is refreshed prior to the next @@ -822,7 +822,7 @@ public: protected: - /* + /** * Enqueue an in accordance with its priority. * priority may be *dynamic* or *static* or a combination or *both* * It calls the priority evaluation function passed into the Dynamic @@ -838,7 +838,7 @@ protected: ACE_Message_Block *&sublist_tail, ACE_Dynamic_Message_Strategy::Priority_Status status); - /* + /** * Dequeue and return the at the head of the * logical queue. Attempts first to dequeue from the pending * portion of the queue, or if that is empty from the late portion, @@ -895,7 +895,7 @@ private: }; -/* +/** * @class ACE_Message_Queue_Factory * * @brief ACE_Message_Queue_Factory is a static factory class template which @@ -962,7 +962,7 @@ public: template class ACE_Message_Queue_Ex_Iterator; template class ACE_Message_Queue_Ex_Reverse_Iterator; -/* +/** * @class ACE_Message_Queue_Ex * * @brief A threaded message queueing facility, modeled after the @@ -999,11 +999,11 @@ public: typedef ACE_Message_Queue_Ex_Reverse_Iterator REVERSE_ITERATOR; - /* + /** * @name Initialization methods */ //@{ - /* + /** * Initialize an ACE_Message_Queue_Ex. * * @param high_water_mark High water mark. Determines how many bytes can be @@ -1039,7 +1039,7 @@ public: /// Releases all resources from the message queue and marks it deactivated. virtual ~ACE_Message_Queue_Ex (void); - /* + /** * Releases all resources from the message queue but does not mark it * deactivated. This method holds the queue lock during this operation. * @sa close(). @@ -1048,7 +1048,7 @@ public: */ virtual int flush (void); - /* + /** * Release all resources from the message queue but do not mark it * as deactivated. * @@ -1078,7 +1078,7 @@ public: * operations are affected by queue state transitions. */ //@{ - /* + /** * Retrieve a pointer to the first item in the queue without removing it. * * @note Because the item whose pointer is returned is still on the queue, @@ -1102,7 +1102,7 @@ public: virtual int peek_dequeue_head (ACE_MESSAGE_TYPE *&first_item, ACE_Time_Value *timeout = 0); - /* + /** * Enqueue an ACE_MESSAGE TYPE into the queue in accordance with * the specified priority (0 is lowest priority). FIFO * order is maintained when items of the same priority are @@ -1123,14 +1123,14 @@ public: ACE_Time_Value *timeout = 0, unsigned long priority = DEFAULT_PRIORITY); - /* + /** * This method acts just like enqueue_tail(). There's no deadline * time associated with items. */ virtual int enqueue_deadline (ACE_MESSAGE_TYPE *new_item, ACE_Time_Value *timeout = 0); - /* + /** * @deprecated This is an alias for enqueue_prio(). It's only here for * backwards compatibility and will go away in a subsequent release. * Please use enqueue_prio() instead. @@ -1138,7 +1138,7 @@ public: virtual int enqueue (ACE_MESSAGE_TYPE *new_item, ACE_Time_Value *timeout = 0); - /* + /** * Enqueue an item at the tail of the queue. * * @param new_item Pointer to an item that will be added to the queue. @@ -1154,7 +1154,7 @@ public: virtual int enqueue_tail (ACE_MESSAGE_TYPE *new_item, ACE_Time_Value *timeout = 0); - /* + /** * Enqueue an item at the head of the queue. * * @param new_item Pointer to an item that will be added to the queue. @@ -1174,7 +1174,7 @@ public: virtual int dequeue (ACE_MESSAGE_TYPE *&first_item, ACE_Time_Value *timeout = 0); - /* + /** * Dequeue the item at the head of the queue and return a pointer to it. * * @param first_item Reference to an ACE_MESSAGE_TYPE * that will @@ -1190,7 +1190,7 @@ public: virtual int dequeue_head (ACE_MESSAGE_TYPE *&first_item, ACE_Time_Value *timeout = 0); - /* + /** * Dequeue the item that has the lowest priority (preserves * FIFO order for items with the same priority) and return a pointer * to it. @@ -1208,7 +1208,7 @@ public: virtual int dequeue_prio (ACE_MESSAGE_TYPE *&dequeued, ACE_Time_Value *timeout = 0); - /* + /** * Dequeue the item at the tail of the queue and return a pointer to it. * * @param dequeued Reference to an ACE_MESSAGE_TYPE * that will @@ -1224,7 +1224,7 @@ public: virtual int dequeue_tail (ACE_MESSAGE_TYPE *&dequeued, ACE_Time_Value *timeout = 0); - /* + /** * Because there's deadline associated with enqueue_deadline(), this * method will behave just as dequeue_head(). */ @@ -1242,29 +1242,29 @@ public: /// True if queue is empty, else false. virtual bool is_empty (void); - /* + /** * Number of total bytes on the queue, i.e., sum of the message * block sizes. */ virtual size_t message_bytes (void); - /* + /** * Number of total length on the queue, i.e., sum of the message * block lengths. */ virtual size_t message_length (void); - /* + /** * Number of total messages on the queue. */ virtual size_t message_count (void); // = Manual changes to these stats (used when queued message blocks // change size or lengths). - /* + /** * New value of the number of total bytes on the queue, i.e., sum of * the message block sizes. */ virtual void message_bytes (size_t new_size); - /* + /** * New value of the number of total length on the queue, i.e., sum * of the message block lengths. */ @@ -1276,21 +1276,21 @@ public: */ //@{ - /* + /** * Get high watermark. */ virtual size_t high_water_mark (void); - /* + /** * Set the high watermark, which determines how many bytes can be * stored in a queue before it's considered "full." */ virtual void high_water_mark (size_t hwm); - /* + /** * Get low watermark. */ virtual size_t low_water_mark (void); - /* + /** * Set the low watermark, which determines how many bytes must be in * the queue before supplier threads are allowed to enqueue * additional s. @@ -1305,7 +1305,7 @@ public: */ //@{ - /* + /** * Deactivate the queue and wakeup all threads waiting on the queue * so they can continue. No messages are removed from the queue, * however. Any other operations called until the queue is @@ -1315,13 +1315,13 @@ public: */ virtual int deactivate (void); - /* + /** * Reactivate the queue so that threads can enqueue and dequeue * messages again. Returns the state of the queue before the call. */ virtual int activate (void); - /* + /** * Pulse the queue to wake up any waiting threads. Changes the * queue state to PULSED; future enqueue/dequeue operations proceed * as in ACTIVATED state. @@ -1343,7 +1343,7 @@ public: */ //@{ - /* + /** * This hook is automatically invoked by , * , and when a new item is inserted * into the queue. Subclasses can override this method to perform @@ -1376,7 +1376,7 @@ protected: ACE_Message_Queue queue_; }; -/* +/** * @class ACE_Message_Queue_Ex_Iterator * * @brief Iterator for the ACE_Message_Queue_Ex. @@ -1411,7 +1411,7 @@ private: ACE_Message_Queue_Iterator iter_; }; -/* +/** * @class ACE_Message_Queue_Ex_Iterator * * @brief Reverse iterator for the ACE_Message_Queue_Ex. @@ -1446,7 +1446,7 @@ private: ACE_Message_Queue_Reverse_Iterator iter_; }; -/* +/** * @class ACE_Message_Queue_Ex_N * * @brief A threaded message queueing facility, modeled after the @@ -1470,7 +1470,7 @@ class ACE_Message_Queue_Ex_N : public ACE_Message_Queue_Exmetrics_enabled())) { \ METRICS_PTR->report_##NAME##_start(X); \ } } while (0) -/* +/** * Call the appropriate 'report_ + NAME + _stop' function. The stop function makes a time probe measurement. * * ACE & TAO: Same as START_DISPATCH_METRIC @@ -62,7 +62,7 @@ do { if((METRICS_PTR->metrics_enabled())) { \ METRICS_PTR->report_##NAME##_stop(X); \ } } while (0) -/* +/** * Call the appropriate 'report_ + NAME + _suspend' function. The suspend function makes a time probe measurement. * This marks when the object under observation has been suspended. * @@ -77,7 +77,7 @@ do { if((METRICS_PTR->metrics_enabled())) { \ METRICS_PTR->report_##NAME##_suspend(X); \ } } while (0) -/* +/** * Call the appropriate 'report_ + NAME + _resume' function. The suspend function makes a time probe measurement. * This marks when the object under observation that was suspended is not resuming normal execution. * @@ -93,7 +93,7 @@ METRICS_PTR->report_##NAME##_resume(X); \ } } while (0) -/* +/** * Mystery macros. I could not find where there were functions like 'report_base_metrics_start ()'. All the * start and stop functions had an argument to find the probe in the cache */ diff --git a/dep/ACE_wrappers/ace/Metrics_Cache_T.h b/dep/ACE_wrappers/ace/Metrics_Cache_T.h index 8d1f187b5..5cf438a13 100644 --- a/dep/ACE_wrappers/ace/Metrics_Cache_T.h +++ b/dep/ACE_wrappers/ace/Metrics_Cache_T.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Metrics_Cache_T.h * * $Id: Metrics_Cache_T.h 92090 2010-09-29 14:10:45Z johnnyw $ @@ -34,7 +34,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_Metrics_Timeprobe * * @brief This class implements a timeprobe for use in a Metrics framework. @@ -110,7 +110,7 @@ private: void operator =(const ACE_Metrics_Timeprobe &); }; -/* +/** * @class ACE_Metrics_Cache * * @brief This class implements a cache for metrics timeprobe data. diff --git a/dep/ACE_wrappers/ace/Min_Max.h b/dep/ACE_wrappers/ace/Min_Max.h index d3b0e0292..373862973 100644 --- a/dep/ACE_wrappers/ace/Min_Max.h +++ b/dep/ACE_wrappers/ace/Min_Max.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Min_Max.h * * $Id: Min_Max.h 80826 2008-03-04 14:51:23Z wotte $ diff --git a/dep/ACE_wrappers/ace/Module.h b/dep/ACE_wrappers/ace/Module.h index 693464573..a7e4575e5 100644 --- a/dep/ACE_wrappers/ace/Module.h +++ b/dep/ACE_wrappers/ace/Module.h @@ -1,7 +1,7 @@ // -*- C++ -*- //========================================================================== -/* +/** * @file Module.h * * $Id: Module.h 91626 2010-09-07 10:59:20Z johnnyw $ @@ -26,7 +26,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_Module_Base * * @brief Workaround HP/C++ compiler bug with enums in templates. @@ -50,7 +50,7 @@ public: M_DELETE_WRITER = 2, /// Indicates that close() deletes the Tasks. - /* + /** * Don't change this value without updating the same enum in class * ACE_Stream... * The M_DELETE_READER and M_DELETE_WRITER flags may be or'ed @@ -63,7 +63,7 @@ public: }; }; -/* +/** * @class ACE_Module * * @brief An abstraction for managing a bi-directional flow of messages. @@ -93,7 +93,7 @@ public: void *args = 0, int flags = M_DELETE); - /* + /** * Initialize the module with @a module_name as its identity * and @a reader> and @a writer as its tasks. Previously register * reader or writers or closed down and deleted according to the @@ -106,7 +106,7 @@ public: void *a = 0, int flags = M_DELETE); - /* + /** * Close down the module and its tasks. The flags argument can be * used to override the default behaviour, which depends on previous * @a flags values in calls to c'tor, , , and . @@ -119,7 +119,7 @@ public: /// Get the writer task. ACE_Task *writer (void); - /* + /** * Set the writer task. @a flags can be used to indicate that the * module should delete the writer during a call to close or to the * destructor. If a previous writer exists, it is closed. It may @@ -131,7 +131,7 @@ public: /// Get the reader task. ACE_Task *reader (void); - /* + /** * Set the reader task. @a flags can be used to indicate that the * module should delete the reader during a call to close or to the * destructor. If a previous reader exists, it is closed. It may diff --git a/dep/ACE_wrappers/ace/Monitor_Admin.h b/dep/ACE_wrappers/ace/Monitor_Admin.h index 2911e1296..739722f34 100644 --- a/dep/ACE_wrappers/ace/Monitor_Admin.h +++ b/dep/ACE_wrappers/ace/Monitor_Admin.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Monitor_Admin.h * * $Id: Monitor_Admin.h 85297 2009-05-07 01:40:41Z parsons $ @@ -33,7 +33,7 @@ namespace ACE { class Monitor_Query; - /* + /** * @class Monitor_Point_Auto_Updater * * @brief Automates periodic updating of monitor point classes. @@ -56,7 +56,7 @@ namespace ACE const void* monitor_point); }; - /* + /** * @class Admin * * @brief Accesses monitor points or groups and manages the registries. diff --git a/dep/ACE_wrappers/ace/Monitor_Admin_Manager.h b/dep/ACE_wrappers/ace/Monitor_Admin_Manager.h index 00a5bb3eb..72977383f 100644 --- a/dep/ACE_wrappers/ace/Monitor_Admin_Manager.h +++ b/dep/ACE_wrappers/ace/Monitor_Admin_Manager.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Monitor_Admin_Manager.h * * $Id: Monitor_Admin_Manager.h 81691 2008-05-14 11:09:21Z johnnyw $ @@ -31,7 +31,7 @@ namespace ACE { namespace Monitor_Control { - /* + /** * @class Monitor_Admin_Manager * * @brief Repsonsible for creating and destroying the global diff --git a/dep/ACE_wrappers/ace/Monitor_Base.h b/dep/ACE_wrappers/ace/Monitor_Base.h index 1a73a0ef3..2557e6ea7 100644 --- a/dep/ACE_wrappers/ace/Monitor_Base.h +++ b/dep/ACE_wrappers/ace/Monitor_Base.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Monitor_Base.h * * $Id: Monitor_Base.h 82333 2008-07-16 01:01:32Z johnnyw $ @@ -38,7 +38,7 @@ namespace ACE { class Control_Action; - /* + /** * @class Monitor_Base * * @brief Base class from which the template monitor point class is diff --git a/dep/ACE_wrappers/ace/Monitor_Control/Auto_Update_Starter.h b/dep/ACE_wrappers/ace/Monitor_Control/Auto_Update_Starter.h index a989dfc55..720141016 100644 --- a/dep/ACE_wrappers/ace/Monitor_Control/Auto_Update_Starter.h +++ b/dep/ACE_wrappers/ace/Monitor_Control/Auto_Update_Starter.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Auto_Update_Starter.h * * $Id: Auto_Update_Starter.h 85297 2009-05-07 01:40:41Z parsons $ @@ -31,7 +31,7 @@ namespace ACE { namespace Monitor_Control { - /* + /** * @class Auto_Update_Starter * * @brief Starts reactor event loop that handles registered timers. diff --git a/dep/ACE_wrappers/ace/Monitor_Control/BSD_Network_Interface_Monitor.h b/dep/ACE_wrappers/ace/Monitor_Control/BSD_Network_Interface_Monitor.h index e1d506cf8..df4ab5d71 100644 --- a/dep/ACE_wrappers/ace/Monitor_Control/BSD_Network_Interface_Monitor.h +++ b/dep/ACE_wrappers/ace/Monitor_Control/BSD_Network_Interface_Monitor.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file BSD_Network_Interface_Monitor.h * * $Id: BSD_Network_Interface_Monitor.h 91743 2010-09-13 18:24:51Z johnnyw $ @@ -31,7 +31,7 @@ namespace ACE { namespace Monitor_Control { - /* + /** * @class BSD_Network_Interface_Monitor * * @brief Mixin class for network interface monitors compiled on diff --git a/dep/ACE_wrappers/ace/Monitor_Control/Bytes_Received_Monitor.h b/dep/ACE_wrappers/ace/Monitor_Control/Bytes_Received_Monitor.h index 7214c2bfa..7dec80fde 100644 --- a/dep/ACE_wrappers/ace/Monitor_Control/Bytes_Received_Monitor.h +++ b/dep/ACE_wrappers/ace/Monitor_Control/Bytes_Received_Monitor.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Bytes_Received_Monitor.h * * $Id: Bytes_Received_Monitor.h 91743 2010-09-13 18:24:51Z johnnyw $ @@ -45,7 +45,7 @@ namespace ACE { namespace Monitor_Control { - /* + /** * @class Bytes_Received_Monitor * * @brief Monitors total bytes received over all network interfaces. diff --git a/dep/ACE_wrappers/ace/Monitor_Control/Bytes_Sent_Monitor.h b/dep/ACE_wrappers/ace/Monitor_Control/Bytes_Sent_Monitor.h index 9b8ac5034..e1d3d11bb 100644 --- a/dep/ACE_wrappers/ace/Monitor_Control/Bytes_Sent_Monitor.h +++ b/dep/ACE_wrappers/ace/Monitor_Control/Bytes_Sent_Monitor.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Bytes_Sent_Monitor.h * * $Id: Bytes_Sent_Monitor.h 91743 2010-09-13 18:24:51Z johnnyw $ @@ -45,7 +45,7 @@ namespace ACE { namespace Monitor_Control { - /* + /** * @class Bytes_Sent_Monitor * * @brief Monitors total bytes sent over all network interfaces. diff --git a/dep/ACE_wrappers/ace/Monitor_Control/CPU_Load_Monitor.h b/dep/ACE_wrappers/ace/Monitor_Control/CPU_Load_Monitor.h index d83e1e0fa..a625de082 100644 --- a/dep/ACE_wrappers/ace/Monitor_Control/CPU_Load_Monitor.h +++ b/dep/ACE_wrappers/ace/Monitor_Control/CPU_Load_Monitor.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file CPU_Load_Monitor.h * * $Id: CPU_Load_Monitor.h 91743 2010-09-13 18:24:51Z johnnyw $ @@ -37,7 +37,7 @@ namespace ACE { namespace Monitor_Control { - /* + /** * @class CPU_Load_Monitor * * @brief Monitors percentage CPU utilization. diff --git a/dep/ACE_wrappers/ace/Monitor_Control/Constraint_Interpreter.h b/dep/ACE_wrappers/ace/Monitor_Control/Constraint_Interpreter.h index f29ba5ebe..e75981980 100644 --- a/dep/ACE_wrappers/ace/Monitor_Control/Constraint_Interpreter.h +++ b/dep/ACE_wrappers/ace/Monitor_Control/Constraint_Interpreter.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Constraint_Interpreter.h * * $Id: Constraint_Interpreter.h 81753 2008-05-21 19:02:47Z parsons $ @@ -35,7 +35,7 @@ namespace ACE { class Constraint_Visitor; - /* + /** * @class Constraint_Interpreter * * @brief "ETCL" Interpreter for MonitorControl constraints, @@ -50,7 +50,7 @@ namespace ACE virtual ~Constraint_Interpreter (void); - /* + /** * This method builds an expression tree representing the * constraint specified in , and returns -1 with * an error message if the constraint given has syntax errors or diff --git a/dep/ACE_wrappers/ace/Monitor_Control/Constraint_Visitor.h b/dep/ACE_wrappers/ace/Monitor_Control/Constraint_Visitor.h index f8f6c5837..582ee1ab1 100644 --- a/dep/ACE_wrappers/ace/Monitor_Control/Constraint_Visitor.h +++ b/dep/ACE_wrappers/ace/Monitor_Control/Constraint_Visitor.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Constraint_Visitor.h * * $Id: Constraint_Visitor.h 86518 2009-08-18 12:30:56Z olli $ @@ -42,7 +42,7 @@ namespace ACE { namespace Monitor_Control { - /* + /** * @class Constraint_Visitor * * @brief Backend for the non-CORBA ETCL frontend, specific to diff --git a/dep/ACE_wrappers/ace/Monitor_Control/FreeBSD_Network_Interface_Monitor.h b/dep/ACE_wrappers/ace/Monitor_Control/FreeBSD_Network_Interface_Monitor.h index 30d9e8732..b820b3b0e 100644 --- a/dep/ACE_wrappers/ace/Monitor_Control/FreeBSD_Network_Interface_Monitor.h +++ b/dep/ACE_wrappers/ace/Monitor_Control/FreeBSD_Network_Interface_Monitor.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file FreeBSD_Network_Interface_Monitor.h * * $Id: FreeBSD_Network_Interface_Monitor.h 86518 2009-08-18 12:30:56Z olli $ @@ -31,7 +31,7 @@ namespace ACE { namespace Monitor_Control { - /* + /** * @class FreeBSD_Network_Interface_Monitor * * @brief Mixin class for network interface monitors compiled on diff --git a/dep/ACE_wrappers/ace/Monitor_Control/Linux_Network_Interface_Monitor.h b/dep/ACE_wrappers/ace/Monitor_Control/Linux_Network_Interface_Monitor.h index c514d8a10..5e4a1a094 100644 --- a/dep/ACE_wrappers/ace/Monitor_Control/Linux_Network_Interface_Monitor.h +++ b/dep/ACE_wrappers/ace/Monitor_Control/Linux_Network_Interface_Monitor.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Linux_Network_Interface_Monitor.h * * $Id: Linux_Network_Interface_Monitor.h 91743 2010-09-13 18:24:51Z johnnyw $ @@ -31,7 +31,7 @@ namespace ACE { namespace Monitor_Control { - /* + /** * @class Linux_Network_Interface_Monitor * * @brief Mixin class for network interface monitors compiled on diff --git a/dep/ACE_wrappers/ace/Monitor_Control/Memory_Usage_Monitor.h b/dep/ACE_wrappers/ace/Monitor_Control/Memory_Usage_Monitor.h index 3f52afd42..7da7f531f 100644 --- a/dep/ACE_wrappers/ace/Monitor_Control/Memory_Usage_Monitor.h +++ b/dep/ACE_wrappers/ace/Monitor_Control/Memory_Usage_Monitor.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Memory_Usage_Monitor.h * * $Id: Memory_Usage_Monitor.h 91743 2010-09-13 18:24:51Z johnnyw $ @@ -37,7 +37,7 @@ namespace ACE { namespace Monitor_Control { - /* + /** * @class Memory_Usage_Monitor * * @brief Monitor percentage of total available memory used. diff --git a/dep/ACE_wrappers/ace/Monitor_Control/Monitor_Control.h b/dep/ACE_wrappers/ace/Monitor_Control/Monitor_Control.h index a2e085b73..482e0662a 100644 --- a/dep/ACE_wrappers/ace/Monitor_Control/Monitor_Control.h +++ b/dep/ACE_wrappers/ace/Monitor_Control/Monitor_Control.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Monitor_Control.h * * $Id: Monitor_Control.h 81753 2008-05-21 19:02:47Z parsons $ diff --git a/dep/ACE_wrappers/ace/Monitor_Control/Monitor_Control_export.h b/dep/ACE_wrappers/ace/Monitor_Control/Monitor_Control_export.h index 7b303bc45..2cae02103 100644 --- a/dep/ACE_wrappers/ace/Monitor_Control/Monitor_Control_export.h +++ b/dep/ACE_wrappers/ace/Monitor_Control/Monitor_Control_export.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Monitor_Control_export.h * * $Id: Monitor_Control_export.h 81753 2008-05-21 19:02:47Z parsons $ diff --git a/dep/ACE_wrappers/ace/Monitor_Control/Monitor_Control_utils.h b/dep/ACE_wrappers/ace/Monitor_Control/Monitor_Control_utils.h index 1e6f83514..d0d21c0f5 100644 --- a/dep/ACE_wrappers/ace/Monitor_Control/Monitor_Control_utils.h +++ b/dep/ACE_wrappers/ace/Monitor_Control/Monitor_Control_utils.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Monitor_Control_utils.h * * $Id: Monitor_Control_utils.h 81753 2008-05-21 19:02:47Z parsons $ diff --git a/dep/ACE_wrappers/ace/Monitor_Control/Monitor_Group.h b/dep/ACE_wrappers/ace/Monitor_Control/Monitor_Group.h index 0fbe88bb4..99eb7d675 100644 --- a/dep/ACE_wrappers/ace/Monitor_Control/Monitor_Group.h +++ b/dep/ACE_wrappers/ace/Monitor_Control/Monitor_Group.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Monitor_Group.h * * $Id: Monitor_Group.h 91743 2010-09-13 18:24:51Z johnnyw $ @@ -31,7 +31,7 @@ namespace ACE { namespace Monitor_Control { - /* + /** * @class Monitor_Group * * @brief Updates and/or clears a group of monitors with a single call. diff --git a/dep/ACE_wrappers/ace/Monitor_Control/Monitor_Query.h b/dep/ACE_wrappers/ace/Monitor_Control/Monitor_Query.h index 5c995f18c..4f841bee3 100644 --- a/dep/ACE_wrappers/ace/Monitor_Control/Monitor_Query.h +++ b/dep/ACE_wrappers/ace/Monitor_Control/Monitor_Query.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Monitor_Query.h * * $Id: Monitor_Query.h 81753 2008-05-21 19:02:47Z parsons $ @@ -31,7 +31,7 @@ namespace ACE { namespace Monitor_Control { - /* + /** * @class Monitor_Point_Auto_Query * * @brief Automates periodic querying of monitor point classes. @@ -46,7 +46,7 @@ namespace ACE const void* monitor_query); }; - /* + /** * @class Monitor_Query * * @brief Handles queries for a specific monitor point, and diff --git a/dep/ACE_wrappers/ace/Monitor_Control/Null_Network_Interface_Monitor.h b/dep/ACE_wrappers/ace/Monitor_Control/Null_Network_Interface_Monitor.h index 7c6ca80a1..9fa241969 100644 --- a/dep/ACE_wrappers/ace/Monitor_Control/Null_Network_Interface_Monitor.h +++ b/dep/ACE_wrappers/ace/Monitor_Control/Null_Network_Interface_Monitor.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Null_Network_Interface_Monitor.h * * $Id: Null_Network_Interface_Monitor.h 91743 2010-09-13 18:24:51Z johnnyw $ @@ -29,7 +29,7 @@ namespace ACE { namespace Monitor_Control { - /* + /** * @class Null_Network_Interface_Monitor * * @brief Mixin class for network interface monitors compiled on diff --git a/dep/ACE_wrappers/ace/Monitor_Control/Num_Threads_Monitor.h b/dep/ACE_wrappers/ace/Monitor_Control/Num_Threads_Monitor.h index 54e68d604..a78b969ea 100644 --- a/dep/ACE_wrappers/ace/Monitor_Control/Num_Threads_Monitor.h +++ b/dep/ACE_wrappers/ace/Monitor_Control/Num_Threads_Monitor.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Num_Threads_Monitor.h * * $Id: Num_Threads_Monitor.h 91743 2010-09-13 18:24:51Z johnnyw $ @@ -43,7 +43,7 @@ namespace ACE { namespace Monitor_Control { - /* + /** * @class Num_Threads_Monitor * * @brief Monitor total number of threads in the system. diff --git a/dep/ACE_wrappers/ace/Monitor_Control/Packets_Received_Monitor.h b/dep/ACE_wrappers/ace/Monitor_Control/Packets_Received_Monitor.h index 8e8a958f2..2da6d8b6f 100644 --- a/dep/ACE_wrappers/ace/Monitor_Control/Packets_Received_Monitor.h +++ b/dep/ACE_wrappers/ace/Monitor_Control/Packets_Received_Monitor.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Packets_Received_Monitor.h * * $Id: Packets_Received_Monitor.h 91743 2010-09-13 18:24:51Z johnnyw $ @@ -45,7 +45,7 @@ namespace ACE { namespace Monitor_Control { - /* + /** * @class Packets_Received_Monitor * * @brief Monitors total packets received over all network interfaces. diff --git a/dep/ACE_wrappers/ace/Monitor_Control/Packets_Sent_Monitor.h b/dep/ACE_wrappers/ace/Monitor_Control/Packets_Sent_Monitor.h index a7a4a65a4..2f8827f40 100644 --- a/dep/ACE_wrappers/ace/Monitor_Control/Packets_Sent_Monitor.h +++ b/dep/ACE_wrappers/ace/Monitor_Control/Packets_Sent_Monitor.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Packets_Sent_Monitor.h * * $Id: Packets_Sent_Monitor.h 91743 2010-09-13 18:24:51Z johnnyw $ @@ -45,7 +45,7 @@ namespace ACE { namespace Monitor_Control { - /* + /** * @class Packets_Sent_Monitor * * @brief Monitors total packets sent over all network interfaces. diff --git a/dep/ACE_wrappers/ace/Monitor_Control/Solaris_Network_Interface_Monitor.h b/dep/ACE_wrappers/ace/Monitor_Control/Solaris_Network_Interface_Monitor.h index ca49668e3..98ce5a67d 100644 --- a/dep/ACE_wrappers/ace/Monitor_Control/Solaris_Network_Interface_Monitor.h +++ b/dep/ACE_wrappers/ace/Monitor_Control/Solaris_Network_Interface_Monitor.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Solaris_Network_Interface_Monitor.h * * $Id: Solaris_Network_Interface_Monitor.h 91743 2010-09-13 18:24:51Z johnnyw $ @@ -33,7 +33,7 @@ namespace ACE { namespace Monitor_Control { - /* + /** * @class Solaris_Network_Interface_Monitor * * @brief Mixin class for network interface monitors compiled on diff --git a/dep/ACE_wrappers/ace/Monitor_Control/Windows_Monitor.h b/dep/ACE_wrappers/ace/Monitor_Control/Windows_Monitor.h index 8bb2b57c8..cd39d81fe 100644 --- a/dep/ACE_wrappers/ace/Monitor_Control/Windows_Monitor.h +++ b/dep/ACE_wrappers/ace/Monitor_Control/Windows_Monitor.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Windows_Monitor.h * * $Id: Windows_Monitor.h 91743 2010-09-13 18:24:51Z johnnyw $ @@ -33,7 +33,7 @@ namespace ACE { namespace Monitor_Control { - /* + /** * @class Windows_Monitor * * @brief Mixin class for concrete monitors compiled on Windows machines. diff --git a/dep/ACE_wrappers/ace/Monitor_Control/Windows_Multi_Instance_Monitor.h b/dep/ACE_wrappers/ace/Monitor_Control/Windows_Multi_Instance_Monitor.h index 3ae6d2c43..ec4e17a4a 100644 --- a/dep/ACE_wrappers/ace/Monitor_Control/Windows_Multi_Instance_Monitor.h +++ b/dep/ACE_wrappers/ace/Monitor_Control/Windows_Multi_Instance_Monitor.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Windows_Multi_Instance_Monitor.h * * $Id: Windows_Multi_Instance_Monitor.h 82115 2008-06-20 20:43:13Z parsons $ @@ -31,7 +31,7 @@ namespace ACE { namespace Monitor_Control { - /* + /** * @class Windows_Multi_Instance_Monitor * * @brief Mixin class for concrete monitors compiled on Windows machines diff --git a/dep/ACE_wrappers/ace/Monitor_Control_Action.h b/dep/ACE_wrappers/ace/Monitor_Control_Action.h index 0323fab18..7831aabd4 100644 --- a/dep/ACE_wrappers/ace/Monitor_Control_Action.h +++ b/dep/ACE_wrappers/ace/Monitor_Control_Action.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Monitor_Control_Action.h * * $Id: Monitor_Control_Action.h 81691 2008-05-14 11:09:21Z johnnyw $ @@ -29,7 +29,7 @@ namespace ACE { namespace Monitor_Control { - /* + /** * @class ControlAction * * @brief Base class for control actions initiated by the diff --git a/dep/ACE_wrappers/ace/Monitor_Control_Types.h b/dep/ACE_wrappers/ace/Monitor_Control_Types.h index 100bce350..5e92e524f 100644 --- a/dep/ACE_wrappers/ace/Monitor_Control_Types.h +++ b/dep/ACE_wrappers/ace/Monitor_Control_Types.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Monitor_Control_Types.h * * $Id: Monitor_Control_Types.h 83306 2008-10-17 12:19:53Z johnnyw $ @@ -49,7 +49,7 @@ namespace ACE MC_GROUP }; - /* + /** * @brief An instance is contained by each enabled monitor point. */ struct ACE_Export Data @@ -70,7 +70,7 @@ namespace ACE double last_; }; - /* + /** * @brief Bundles the constrain string with its associated * trigger action. */ @@ -88,18 +88,18 @@ namespace ACE Control_Action* control_action; }; - /* + /** * @brief Used by the admin class as a container for the data from * a group of monitor points. */ typedef ACE_Vector DataList; - /* + /** * @brief Used in various places to pass around a set of string names. */ typedef ACE_Vector NameList; - /* + /** * @brief Holder for a monitor point's constraints. */ typedef ACE_Array_Map ConstraintList; diff --git a/dep/ACE_wrappers/ace/Monitor_Point_Registry.h b/dep/ACE_wrappers/ace/Monitor_Point_Registry.h index e9e9982b9..82dba6caf 100644 --- a/dep/ACE_wrappers/ace/Monitor_Point_Registry.h +++ b/dep/ACE_wrappers/ace/Monitor_Point_Registry.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Monitor_Point_Registry.h * * $Id: Monitor_Point_Registry.h 81691 2008-05-14 11:09:21Z johnnyw $ @@ -37,7 +37,7 @@ namespace ACE { class Monitor_Base; - /* + /** * @class Monitor_Point_Registry * * @brief Storage for instantiated monitor points. diff --git a/dep/ACE_wrappers/ace/Monitor_Size.h b/dep/ACE_wrappers/ace/Monitor_Size.h index 830d820d6..42ec31312 100644 --- a/dep/ACE_wrappers/ace/Monitor_Size.h +++ b/dep/ACE_wrappers/ace/Monitor_Size.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Monitor_Size.h * * $Id: Monitor_Size.h 81691 2008-05-14 11:09:21Z johnnyw $ @@ -31,7 +31,7 @@ namespace ACE { namespace Monitor_Control { - /* + /** * @class Size_Monitor * * @brief Base class from which ACE monitors of size are diff --git a/dep/ACE_wrappers/ace/Msg_WFMO_Reactor.h b/dep/ACE_wrappers/ace/Msg_WFMO_Reactor.h index 2e898c67e..3c1eadd5b 100644 --- a/dep/ACE_wrappers/ace/Msg_WFMO_Reactor.h +++ b/dep/ACE_wrappers/ace/Msg_WFMO_Reactor.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Msg_WFMO_Reactor.h * * $Id: Msg_WFMO_Reactor.h 80826 2008-03-04 14:51:23Z wotte $ @@ -28,7 +28,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_Msg_WFMO_Reactor * * @brief An OO event demultiplexor and event handler dispatcher for @@ -47,7 +47,7 @@ public: ACE_Msg_WFMO_Reactor (ACE_Sig_Handler * = 0, ACE_Timer_Queue * = 0); - /* + /** * Initialize with size @a size. Two slots will be * added to the @a size parameter which will store handles used for * internal management purposes. @@ -60,7 +60,7 @@ public: /// Close down the ACE_Msg_WFMO_Reactor and release all of its resources. virtual ~ACE_Msg_WFMO_Reactor (void); - /* + /** * This event loop driver blocks for up to @a max_wait_time before * returning. It will return earlier if timer events, I/O events, * window events, or signal events occur. Note that @a max_wait_time @@ -88,7 +88,7 @@ public: virtual int handle_events (ACE_Time_Value *max_wait_time = 0); virtual int alertable_handle_events (ACE_Time_Value *max_wait_time = 0); - /* + /** * This method is just like the one above, except the * @a max_wait_time value is a reference and can therefore never be * NULL. diff --git a/dep/ACE_wrappers/ace/Multihomed_INET_Addr.h b/dep/ACE_wrappers/ace/Multihomed_INET_Addr.h index 2557df642..6be07a910 100644 --- a/dep/ACE_wrappers/ace/Multihomed_INET_Addr.h +++ b/dep/ACE_wrappers/ace/Multihomed_INET_Addr.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Multihomed_INET_Addr.h * * $Id: Multihomed_INET_Addr.h 91626 2010-09-07 10:59:20Z johnnyw $ @@ -26,7 +26,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_Multihomed_INET_Addr * * @brief Extends ACE_INET_Addr with support for multi-homed @@ -40,7 +40,7 @@ public: /// Default constructor. ACE_Multihomed_INET_Addr (void); - /* + /** * Initializes an ACE_Multihomed_INET_Addr from the @a address, * which can be "ip-number:port-number" (e.g., "tango.cs.wustl.edu:1234" * or "128.252.166.57:1234"). If there is no ':' in the @a address it @@ -49,7 +49,7 @@ public: */ explicit ACE_Multihomed_INET_Addr (const char address[]); - /* + /** * Constructs an ACE_Multihomed_INET_Addr from a @a port_number, a * @a primary_host_name, and an array of @a secondary_host_names. * @a size is taken to be the length of the array. If @a encode is @@ -67,7 +67,7 @@ public: const char *(secondary_host_names[]) = 0, size_t size = 0); - /* + /** * Constructs an ACE_Multihomed_INET_Addr from a @a port_number, * a @a primary_ip_addr, and an array of @a secondary_ip_addrs. @a * size is taken to be the length of the array. If @a encode is @@ -82,7 +82,7 @@ public: size_t size = 0); #if defined (ACE_HAS_WCHAR) - /* + /** * WCHAR versions of the methods that take char's as arguments. */ ACE_Multihomed_INET_Addr(u_short port_number, @@ -112,7 +112,7 @@ public: // These methods are useful after the object has been constructed. - /* + /** * Initializes an ACE_Multihomed_INET_Addr from a @a port_number, a * @a primary_host_name, and an array of @a secondary_host_names. * @a size is taken to be the length of the array. If @a encode is @@ -130,7 +130,7 @@ public: const char *(secondary_host_names[]) = 0, size_t size = 0); - /* + /** * Initializes an ACE_Multihomed_INET_Addr from a @a port_number, * a @a primary_ip_addr, and an array of @a secondary_ip_addrs. @a * size is taken to be the length of the array. If @a encode is @@ -144,7 +144,7 @@ public: const ACE_UINT32 *secondary_ip_addrs = 0, size_t size = 0); - /* + /** * Sets the port number without affecting the host name. The port * numbers of the primary address, and of any and all secondary * addresses, are affected. If @a encode is enabled, then @@ -157,19 +157,19 @@ public: // = Accessor methods. - /* + /** * Returns the number of secondary addresses. */ size_t get_num_secondary_addresses () const; - /* + /** * Initialize user-supplied array @a secondary_addrs with the current * secondary addresses. @a size is taken as the size of this array. */ int get_secondary_addresses(ACE_INET_Addr *secondary_addrs, size_t size) const; - /* + /** * Initialize user-supplied array @a addrs with the the current * primary and secondary addresses. @a size is taken as the size of * this array. diff --git a/dep/ACE_wrappers/ace/Mutex.h b/dep/ACE_wrappers/ace/Mutex.h index 6ef69c5e0..7183a2db3 100644 --- a/dep/ACE_wrappers/ace/Mutex.h +++ b/dep/ACE_wrappers/ace/Mutex.h @@ -1,7 +1,7 @@ // -*- C++ -*- //========================================================================== -/* +/** * @file Mutex.h * * $Id: Mutex.h 91626 2010-09-07 10:59:20Z johnnyw $ @@ -39,7 +39,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL class ACE_Time_Value; -/* +/** * @class ACE_Mutex * * @brief @c ACE_Mutex wrapper (valid in same process or across @@ -60,7 +60,7 @@ public: ~ACE_Mutex (void); /// Explicitly destroy the mutex. - /* + /** * @note Only one thread should call this method since it doesn't * protect against race conditions. */ @@ -71,7 +71,7 @@ public: /// Block the thread until the mutex is acquired or @a tv times out, /// in which case -1 is returned and @c errno == @c ETIME. - /* + /** * @note @a tv is assumed to be in "absolute" rather than * " relative" time. The value of @a tv is updated upon return * to show the actual(absolute) acquisition time. @@ -80,7 +80,7 @@ public: /// Block the thread until the mutex is acquired or @a *tv times /// out, in which case -1 is returned and @c errno == @c ETIME. - /* + /** * If @a tv == 0 then call @c acquire() directly. Otherwise, block * the thread until the mutex is acquired or @a tv times out, in * which case -1 is returned and @c errno == @c ETIME. @@ -92,7 +92,7 @@ public: int acquire (ACE_Time_Value *tv); /// Conditionally acquire lock (i.e., don't wait on queue). - /* + /** * @return -1 on failure. If we "failed" because someone * else already had the lock, @c errno is set to @c EBUSY. */ @@ -102,21 +102,21 @@ public: int release (void); /// Acquire mutex ownership. - /* + /** * This calls @c acquire and is only here to make the @c ACE_Mutex * interface consistent with the other synchronization APIs. */ int acquire_read (void); /// Acquire mutex ownership. - /* + /** * This calls @c acquire and is only here to make the @c ACE_Mutex * interface consistent with the other synchronization APIs. */ int acquire_write (void); /// Conditionally acquire mutex (i.e., won't block). - /* + /** * This calls @c tryacquire and is only here to make the @c ACE_Mutex * interface consistent with the other synchronization APIs. * @@ -126,7 +126,7 @@ public: int tryacquire_read (void); /// Conditionally acquire mutex (i.e., won't block). - /* + /** * This calls @c tryacquire and is only here to make the @c ACE_Mutex * interface consistent with the other synchronization APIs. * @@ -135,7 +135,7 @@ public: */ int tryacquire_write (void); - /* + /** * This is only here for consistency with the other synchronization * APIs and usability with Lock adapters. Assumes the caller already has * acquired the mutex and returns 0 in all cases. @@ -158,7 +158,7 @@ public: /// This lock resides in shared memory. ACE_mutex_t *process_lock_; - /* + /** * Remember the name of the mutex if we created it so we can unlink * it when we go away (only the actor that initialized the memory * can destroy it). diff --git a/dep/ACE_wrappers/ace/NT_Service.h b/dep/ACE_wrappers/ace/NT_Service.h index 697661de7..0e1e0a16a 100644 --- a/dep/ACE_wrappers/ace/NT_Service.h +++ b/dep/ACE_wrappers/ace/NT_Service.h @@ -1,7 +1,7 @@ // -*- C++ -*- //========================================================================== -/* +/** * @file NT_Service.h * * $Id: NT_Service.h 80826 2008-03-04 14:51:23Z wotte $ @@ -39,7 +39,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_NT_Service * * @brief Provide the base class which defines the interface for controlling @@ -118,21 +118,21 @@ public: // = Functions to operate the service - /* + /** * Hook called to open the service. By default, sets the service * status to SERVICE_START_PENDING, calls the @c svc() method, * interprets and sets the service status, and returns. */ virtual int open (void *args = 0); - /* + /** * Hook called when terminating the service. Inherited from * ACE_Shared_Object. Default implementation sets the service status * to SERVICE_STOPPED. */ virtual int fini (void); - /* + /** * The actual service implementation. This function need not be overridden * by applications that are just using SCM capabilities, but must be * by subclasses when actually running the service. It is expected that @@ -140,7 +140,7 @@ public: */ virtual int svc (void); - /* + /** * This function is called in response to a request from the Service * Dispatcher. It must interact with the function to effect the * requested control operation. The default implementation handles @@ -178,7 +178,7 @@ public: /// Get the host machine. const ACE_TCHAR *host (void) const; - /* + /** * Insert (create) the service in the NT Service Control Manager, * with the given creation values. exe_path defaults to the path name * of the program that calls the function. All other 0-defaulted arguments @@ -195,7 +195,7 @@ public: const ACE_TCHAR *password = 0, DWORD desired_access = SERVICE_ALL_ACCESS); - /* + /** * Remove the service from the NT Service Control Manager. Returns -1 on * error, 0 on success. This just affects the SCM and registry - the * can and will keep running fine if it is already running. @@ -210,7 +210,7 @@ public: // = Methods to control ACE_Log_Msg behavior in the service. - /* + /** * Set the ACE_Log_Msg attributes that the service thread will use to * initialize its ACE_Log_Msg instance. This is how the initiating * thread's logging ostream, etc. get into the service thread. The @@ -222,7 +222,7 @@ public: */ void capture_log_msg_attributes (void); - /* + /** * Set the ACE_Log_Msg attributes in the current thread to those saved * in the most recent call to @c capture_log_msg_attributes(). This function * should be called from the service's service thread. Ideally, it is the @@ -259,7 +259,7 @@ public: // not configured to receive the request (this is most likely to // happen in the case of pause and continue). - /* + /** * Start the service (must have been inserted before). wait_time is * the time to wait for the service to reach a steady state before * returning. If it is 0, the function waits as long as it takes @@ -275,7 +275,7 @@ public: DWORD *svc_state = 0, DWORD argc = 0, const ACE_TCHAR **argv = 0); - /* + /** * Requests the service to stop. Will wait up to @a wait_time for * the service to actually stop. If not specified, the function * waits until the service either stops or gets stuck in some other @@ -291,7 +291,7 @@ public: /// Continue the service. int continue_svc (ACE_Time_Value *wait_time = 0, DWORD *svc_state = 0); - /* + /** * Get the current state for the service. If is not 0, * it receives the service's reported wait hint. Note that this * function returns 0 on failure (not -1 as is usual in ACE). A @@ -306,7 +306,7 @@ public: /// The DWORD pointed to by pstate receives the state value. int state (DWORD *pstate, ACE_Time_Value *wait_hint = 0); - /* + /** * Test access to the object's service in the SCM. The service must * already have been inserted in the SCM database. This function * has no affect on the service itself. Returns 0 if the specified @@ -322,14 +322,14 @@ public: protected: int report_status (DWORD new_status, DWORD time_hint = 0); - /* + /** * Return the svc_sc_handle_ member. If the member is null, it * retrieves the handle from the Service Control Manager and caches * it. */ SC_HANDLE svc_sc_handle (void); - /* + /** * Waits for the service to reach or get * (apparently) stuck before it reaches that state. Will wait at * most @a wait_time to get to the desired state. If @a wait_time is diff --git a/dep/ACE_wrappers/ace/Name_Proxy.h b/dep/ACE_wrappers/ace/Name_Proxy.h index 43456310d..a60a118f4 100644 --- a/dep/ACE_wrappers/ace/Name_Proxy.h +++ b/dep/ACE_wrappers/ace/Name_Proxy.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Name_Proxy.h * * $Id: Name_Proxy.h 80826 2008-03-04 14:51:23Z wotte $ @@ -36,7 +36,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_Name_Proxy * * @brief Proxy for dealing with remote server process managing NET_LOCAL diff --git a/dep/ACE_wrappers/ace/Name_Request_Reply.h b/dep/ACE_wrappers/ace/Name_Request_Reply.h index e727a7279..e8509f10b 100644 --- a/dep/ACE_wrappers/ace/Name_Request_Reply.h +++ b/dep/ACE_wrappers/ace/Name_Request_Reply.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Name_Request_Reply.h * * $Id: Name_Request_Reply.h 84316 2009-02-03 19:46:05Z johnnyw $ @@ -31,7 +31,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL class ACE_Time_Value; -/* +/** * @class ACE_Name_Request * * @brief Message format for delivering requests to the ACE_Name Server. @@ -185,7 +185,7 @@ private: char *type_; }; -/* +/** * @class ACE_Name_Reply * * @brief Message format for delivering replies from the ACE_Name Server. diff --git a/dep/ACE_wrappers/ace/Name_Space.h b/dep/ACE_wrappers/ace/Name_Space.h index cb5851dca..93b57bd9c 100644 --- a/dep/ACE_wrappers/ace/Name_Space.h +++ b/dep/ACE_wrappers/ace/Name_Space.h @@ -1,7 +1,7 @@ // -*- C++ -*- //========================================================================== -/* +/** * @file Name_Space.h * * $Id: Name_Space.h 84834 2009-03-16 12:28:51Z johnnyw $ @@ -28,7 +28,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL typedef ACE_Unbounded_Set ACE_WSTRING_SET; -/* +/** * @class ACE_Name_Binding * * @brief Maintains a mapping from name to value and type. @@ -73,7 +73,7 @@ typedef ACE_Unbounded_Set_Iterator ACE_BINDING_ITERATOR; typedef ACE_Unbounded_Set ACE_PWSTRING_SET; typedef ACE_Unbounded_Set_Iterator ACE_PWSTRING_ITERATOR; -/* +/** * @class ACE_Name_Space * * @brief Abstract base class that provides an abstract interface to @@ -96,7 +96,7 @@ public: const char *type_in = "") = 0; - /* + /** * Overwrite the value or type of an existing name in a * ACE_Name_Space or bind a new name to the context, if it didn't * exist yet. (Wide charcter strings interface). @@ -130,7 +130,7 @@ public: virtual int list_types (ACE_WSTRING_SET &set_out, const ACE_NS_WString &pattern_in) = 0; - /* + /** * Get a set of names matching a specified pattern (wchars). Matching * means the names must begin with the pattern string. Returns the * complete binding associated each pattern match. @@ -138,7 +138,7 @@ public: virtual int list_name_entries (ACE_BINDING_SET &set, const ACE_NS_WString &pattern) = 0; - /* + /** * Get a set of values matching a specified pattern (wchars). Matching * means the values must begin with the pattern string. Returns the * complete binding associated each pattern match. @@ -146,7 +146,7 @@ public: virtual int list_value_entries (ACE_BINDING_SET &set, const ACE_NS_WString &pattern) = 0; - /* + /** * Get a set of types matching a specified pattern (wchars). Matching * means the types must begin with the pattern string. Returns the * complete binding associated each pattern match. diff --git a/dep/ACE_wrappers/ace/Naming_Context.h b/dep/ACE_wrappers/ace/Naming_Context.h index 427ac6a66..ffc0252ed 100644 --- a/dep/ACE_wrappers/ace/Naming_Context.h +++ b/dep/ACE_wrappers/ace/Naming_Context.h @@ -1,7 +1,7 @@ // -*- C++ -*- //========================================================================== -/* +/** * @file Naming_Context.h * * $Id: Naming_Context.h 84160 2009-01-14 14:13:58Z johnnyw $ @@ -32,7 +32,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL class ACE_Name_Options; class ACE_Static_Svc_Descriptor; -/* +/** * @class ACE_Naming_Context * * @brief Maintaining accesses Name Server Databases. Allows to add @@ -69,7 +69,7 @@ public: /// "Do-nothing" constructor. ACE_Naming_Context (void); - /* + /** * Specifies the scope of this namespace, opens and memory-maps the * associated file (if accessible) or contacts the dedicated name * server process for NET_LOCAL namespace. Note that @a light @@ -78,7 +78,7 @@ public: */ ACE_Naming_Context (Context_Scope_Type scope_in, int light = 0); - /* + /** * Specifies the scope of this namespace, opens and memory-maps the * associated file (if accessible) or contacts the dedicated name * server process for NET_LOCAL namespace. Note that @a light @@ -123,7 +123,7 @@ public: const char *value_in, const char *type_in = ""); - /* + /** * Overwrite the value or type of an existing name in a * ACE_Naming_Context or bind a new name to the context, if it * didn't exist yet. (Wide charcter strings interface). @@ -132,7 +132,7 @@ public: const ACE_NS_WString &value_in, const char *type_in = ""); - /* + /** * Overwrite the value or type of an existing name in a * ACE_Naming_Context or bind a new name to the context, if it * didn't exist yet. ( charcter strings interface) @@ -155,7 +155,7 @@ public: ACE_NS_WString &value_out, char *&type_out); - /* + /** * Get value and type of a given name binding (Wide chars output). * The caller is responsible for deleting both @a value_out and * @a type_out! @@ -200,7 +200,7 @@ public: int list_types (ACE_PWSTRING_SET &set_out, const char *pattern_in); - /* + /** * Get a set of names matching a specified pattern (wchars). Matching * means the names must begin with the pattern string. Returns the * complete binding associated each pattern match. @@ -208,7 +208,7 @@ public: virtual int list_name_entries (ACE_BINDING_SET &set_out, const ACE_NS_WString &pattern_in); - /* + /** * Get a set of names matching a specified pattern (wchars). Matching * means the names must begin with the pattern string. Returns the * complete binding associated each pattern match. @@ -216,7 +216,7 @@ public: virtual int list_name_entries (ACE_BINDING_SET &set_out, const char *pattern_in); - /* + /** * Get a set of values matching a specified pattern (wchars). Matching * means the values must begin with the pattern string. Returns the * complete binding associated each pattern match. @@ -224,7 +224,7 @@ public: virtual int list_value_entries (ACE_BINDING_SET &set_out, const ACE_NS_WString &pattern_in); - /* + /** * Get a set of values matching a specified pattern (wchars). Matching * means the values must begin with the pattern string. Returns the * complete binding associated each pattern match. @@ -232,7 +232,7 @@ public: virtual int list_value_entries (ACE_BINDING_SET &set_out, const char *pattern_in); - /* + /** * Get a set of types matching a specified pattern (wchars). Matching * means the types must begin with the pattern string. Returns the * complete binding associated each pattern match. @@ -240,7 +240,7 @@ public: virtual int list_type_entries (ACE_BINDING_SET &set_out, const ACE_NS_WString &pattern_in); - /* + /** * Get a set of types matching a specified pattern (wchars). Matching * means the types must begin with the pattern string. Returns the * complete binding associated each pattern match. @@ -272,7 +272,7 @@ private: }; -/* +/** * @class ACE_Name_Options * * @brief Manages the options for the ACE Name_Server. diff --git a/dep/ACE_wrappers/ace/Netlink_Addr.cpp b/dep/ACE_wrappers/ace/Netlink_Addr.cpp index 0b826fb17..888febb0a 100644 --- a/dep/ACE_wrappers/ace/Netlink_Addr.cpp +++ b/dep/ACE_wrappers/ace/Netlink_Addr.cpp @@ -1,7 +1,7 @@ // $Id: Netlink_Addr.cpp 80826 2008-03-04 14:51:23Z wotte $ //============================================================================= -/* +/** * @file Netlink_Addr.cpp * * $Id: Netlink_Addr.cpp 80826 2008-03-04 14:51:23Z wotte $ diff --git a/dep/ACE_wrappers/ace/Netlink_Addr.h b/dep/ACE_wrappers/ace/Netlink_Addr.h index 74075e6ff..b596068c5 100644 --- a/dep/ACE_wrappers/ace/Netlink_Addr.h +++ b/dep/ACE_wrappers/ace/Netlink_Addr.h @@ -1,7 +1,7 @@ // $Id: Netlink_Addr.h 80826 2008-03-04 14:51:23Z wotte $ //============================================================================= -/* +/** * @file Netlink_Addr.h * * $Id: Netlink_Addr.h 80826 2008-03-04 14:51:23Z wotte $ @@ -33,7 +33,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_Netlink_Addr * * @brief Defines a C++ wrapper facade for the netlink sockets @@ -54,35 +54,35 @@ public: /// Dtor ~ACE_Netlink_Addr (void); - /* + /** * @param naddr sets the nl_ member @see nl_ */ int set (const ACE_Netlink_Addr &naddr); - /* + /** * sets the pid and groups fields of member nl_ @see nl_ */ void set (int pid, int gid); - /* + /** * set nl_ to nl_ @see nl_ */ int set (const sockaddr_nl *, int len); - /* + /** * @return pid */ int get_pid (void) const; - /* + /** * @return the group id @see nl_ */ int get_gid (void) const; - /* + /** * @return addr pointer @see nl_ */ virtual void *get_addr (void) const; - /* + /** * @return nl_ member @see nl_ size */ int get_addr_size (void) const; - /* + /** * Set a pointer to the address */ virtual void set_addr (void *, int len= sizeof(sockaddr_nl) ); @@ -91,12 +91,12 @@ public: ACE_ALLOC_HOOK_DECLARE; private: - /* + /** * @return family type AF_NETLINK * * */ int determine_type (void) const; - /* + /** * set nl_ @see nl_ to zero and sets address family to default value */ void reset (void); diff --git a/dep/ACE_wrappers/ace/Node.h b/dep/ACE_wrappers/ace/Node.h index 3aabe5e46..57433a70e 100644 --- a/dep/ACE_wrappers/ace/Node.h +++ b/dep/ACE_wrappers/ace/Node.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Node.h * * $Id: Node.h 81624 2008-05-06 17:14:57Z wotte $ @@ -33,7 +33,7 @@ template class ACE_Unbounded_Queue_Const_Iterator; template class ACE_Unbounded_Stack; template class ACE_Unbounded_Stack_Iterator; -/* +/** * @class ACE_Node * * @brief Implementation element in a Queue, Set, and Stack. diff --git a/dep/ACE_wrappers/ace/Notification_Queue.h b/dep/ACE_wrappers/ace/Notification_Queue.h index 9a513102b..a9ad1ad24 100644 --- a/dep/ACE_wrappers/ace/Notification_Queue.h +++ b/dep/ACE_wrappers/ace/Notification_Queue.h @@ -3,7 +3,7 @@ #include /**/ "ace/pre.h" -/* +/** * @file Notification_Queue.h * * $Id: Notification_Queue.h 80826 2008-03-04 14:51:23Z wotte $ @@ -18,7 +18,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_Notification_Queue_Node * * @brief Helper class @@ -27,33 +27,33 @@ class ACE_Export ACE_Notification_Queue_Node : public ACE_Intrusive_List_Node { public: - /* + /** * @brief Constructor */ ACE_Notification_Queue_Node(); - /* + /** * @brief Modifier change the contained buffer */ void set(ACE_Notification_Buffer const & rhs); - /* + /** * @brief Accessor, fetch the contained buffer */ ACE_Notification_Buffer const & get() const; - /* + /** * @brief Checks if the event handler matches the purge condition */ bool matches_for_purging(ACE_Event_Handler * eh) const; - /* + /** * @brief Return true if clearing the mask would leave no * notifications to deliver. */ bool mask_disables_all_notifications(ACE_Reactor_Mask mask); - /* + /** * @brief Clear the notifications specified by @c mask */ void clear_mask(ACE_Reactor_Mask mask); @@ -62,7 +62,7 @@ private: ACE_Notification_Buffer contents_; }; -/* +/** * @class ACE_Notification_Queue * * @brief Implements a user-space queue to send Reactor notifications. @@ -83,17 +83,17 @@ public: ACE_Notification_Queue(); ~ACE_Notification_Queue(); - /* + /** * @brief Pre-allocate resources in the queue */ int open(); - /* + /** * @brief Release all resources in the queue */ void reset(); - /* + /** * @brief Remove all elements in the queue matching @c eh and @c mask * * I suggest reading the documentation in ACE_Reactor to find a more @@ -102,7 +102,7 @@ public: int purge_pending_notifications(ACE_Event_Handler * eh, ACE_Reactor_Mask mask); - /* + /** * @brief Add a new notification to the queue * * @return -1 on failure, 1 if a new message should be sent through @@ -110,7 +110,7 @@ public: */ int push_new_notification(ACE_Notification_Buffer const & buffer); - /* + /** * @brief Extract the next notification from the queue * * @return -1 on failure, 1 if a message was popped, 0 otherwise @@ -121,7 +121,7 @@ public: ACE_Notification_Buffer & next); private: - /* + /** * @brief Allocate more memory for the queue */ int allocate_more_buffers(); diff --git a/dep/ACE_wrappers/ace/Notification_Strategy.h b/dep/ACE_wrappers/ace/Notification_Strategy.h index 9f08d987f..ba4c558db 100644 --- a/dep/ACE_wrappers/ace/Notification_Strategy.h +++ b/dep/ACE_wrappers/ace/Notification_Strategy.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Notification_Strategy.h * * $Id: Notification_Strategy.h 80826 2008-03-04 14:51:23Z wotte $ @@ -24,7 +24,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL // Forward decls. class ACE_Reactor; -/* +/** * @class ACE_Notification_Strategy * * @brief Abstract class used for notifying an interested party diff --git a/dep/ACE_wrappers/ace/Null_Barrier.h b/dep/ACE_wrappers/ace/Null_Barrier.h index 29651534d..6ea89e7db 100644 --- a/dep/ACE_wrappers/ace/Null_Barrier.h +++ b/dep/ACE_wrappers/ace/Null_Barrier.h @@ -1,7 +1,7 @@ // -*- C++ -*- //========================================================================== -/* +/** * @file Null_Barrier.h * * $Id: Null_Barrier.h 91626 2010-09-07 10:59:20Z johnnyw $ @@ -18,7 +18,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_Null_Barrier * * @brief Implements "NULL barrier synchronization". diff --git a/dep/ACE_wrappers/ace/Null_Condition.h b/dep/ACE_wrappers/ace/Null_Condition.h index 33de473f2..5f6277d11 100644 --- a/dep/ACE_wrappers/ace/Null_Condition.h +++ b/dep/ACE_wrappers/ace/Null_Condition.h @@ -1,7 +1,7 @@ // -*- C++ -*- //========================================================================== -/* +/** * @file Null_Condition.h * * $Id: Null_Condition.h 91626 2010-09-07 10:59:20Z johnnyw $ @@ -28,7 +28,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL class ACE_Time_Value; -/* +/** * @class ACE_Null_Condition * * @brief Implement a do nothing ACE_Condition variable wrapper, diff --git a/dep/ACE_wrappers/ace/Null_Mutex.h b/dep/ACE_wrappers/ace/Null_Mutex.h index 771625749..85d06688a 100644 --- a/dep/ACE_wrappers/ace/Null_Mutex.h +++ b/dep/ACE_wrappers/ace/Null_Mutex.h @@ -1,7 +1,7 @@ // -*- C++ -*- //========================================================================== -/* +/** * @file Null_Mutex.h * * $Id: Null_Mutex.h 91626 2010-09-07 10:59:20Z johnnyw $ @@ -30,7 +30,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL class ACE_Time_Value; -/* +/** * @class ACE_Null_Mutex * * @brief Implement a do nothing ACE_Mutex, i.e., all the methods are @@ -89,7 +89,7 @@ public: template class ACE_Guard; -/* +/** * @brief Template specialization of ACE_Guard for the * ACE_Null_Mutex. * @@ -127,7 +127,7 @@ private: template class ACE_Write_Guard; -/* +/** * @brief Template specialization of ACE_Write_Guard for the * ACE_Null_Mutex. */ @@ -151,7 +151,7 @@ public: template class ACE_Read_Guard; -/* +/** * @brief Template specialization of ACE_Read)Guard for the * ACE_Null_Mutex. */ @@ -176,7 +176,7 @@ public: template class ACE_Malloc_Lock_Adapter_T; -/* +/** * @brief Template specialization of ACE_Malloc_Lock_Adapter_T for the * ACE_Null_Mutex. */ diff --git a/dep/ACE_wrappers/ace/Null_Semaphore.h b/dep/ACE_wrappers/ace/Null_Semaphore.h index 7b85d7314..6d152e23a 100644 --- a/dep/ACE_wrappers/ace/Null_Semaphore.h +++ b/dep/ACE_wrappers/ace/Null_Semaphore.h @@ -1,7 +1,7 @@ // -*- C++ -*- //========================================================================== -/* +/** * @file Null_Semaphore.h * * $Id: Null_Semaphore.h 91626 2010-09-07 10:59:20Z johnnyw $ @@ -27,7 +27,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL class ACE_Time_Value; -/* +/** * @class ACE_Null_Semaphore * * @brief Implement a do nothing ACE_Semaphore, i.e., all the methods are diff --git a/dep/ACE_wrappers/ace/Numeric_Limits.h b/dep/ACE_wrappers/ace/Numeric_Limits.h index 20d25a73a..0a1d5f2e8 100644 --- a/dep/ACE_wrappers/ace/Numeric_Limits.h +++ b/dep/ACE_wrappers/ace/Numeric_Limits.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Numeric_Limits.h * * $Id: Numeric_Limits.h 85057 2009-04-08 10:59:58Z msmit $ diff --git a/dep/ACE_wrappers/ace/OS_Errno.h b/dep/ACE_wrappers/ace/OS_Errno.h index e73532454..bda24ad0a 100644 --- a/dep/ACE_wrappers/ace/OS_Errno.h +++ b/dep/ACE_wrappers/ace/OS_Errno.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file OS_Errno.h * * $Id: OS_Errno.h 83891 2008-11-28 11:01:50Z johnnyw $ @@ -24,7 +24,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_Errno_Guard * * @brief Provides a wrapper to improve performance when thread-specific diff --git a/dep/ACE_wrappers/ace/OS_Log_Msg_Attributes.h b/dep/ACE_wrappers/ace/OS_Log_Msg_Attributes.h index 15fc613c4..65c11ab61 100644 --- a/dep/ACE_wrappers/ace/OS_Log_Msg_Attributes.h +++ b/dep/ACE_wrappers/ace/OS_Log_Msg_Attributes.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file OS_Log_Msg_Attributes.h * * $Id: OS_Log_Msg_Attributes.h 91066 2010-07-12 11:05:04Z johnnyw $ @@ -27,7 +27,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_OS_Log_Msg_Attributes * * @brief The attributes required by ACE_Log_Msg. diff --git a/dep/ACE_wrappers/ace/OS_Memory.h b/dep/ACE_wrappers/ace/OS_Memory.h index e0c88ecc6..cf1f91fa2 100644 --- a/dep/ACE_wrappers/ace/OS_Memory.h +++ b/dep/ACE_wrappers/ace/OS_Memory.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file OS_Memory.h * * $Id: OS_Memory.h 91688 2010-09-09 11:21:50Z johnnyw $ @@ -241,11 +241,11 @@ ACE_END_VERSIONED_NAMESPACE_DECL ACE_BEGIN_VERSIONED_NAMESPACE_DECL //@{ -/* +/** * @name Efficiently compute aligned pointers to powers of 2 boundaries. */ -/* +/** * Efficiently align "value" up to "alignment", knowing that all such * boundaries are binary powers and that we're using two's complement * arithmetic. @@ -276,7 +276,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL * multiple we wanted. */ /// Return the next integer aligned to a required boundary -/* +/** * @param ptr the base pointer * @param alignment the required alignment */ diff --git a/dep/ACE_wrappers/ace/OS_NS_Thread.cpp b/dep/ACE_wrappers/ace/OS_NS_Thread.cpp index 5668a610c..c424e3f57 100644 --- a/dep/ACE_wrappers/ace/OS_NS_Thread.cpp +++ b/dep/ACE_wrappers/ace/OS_NS_Thread.cpp @@ -509,7 +509,7 @@ ACE_TSS_Keys::is_set (const ACE_thread_key_t key) const return word < ACE_WORDS ? ACE_BIT_ENABLED (key_bit_words_[word], 1 << bit) : 0; } -/* +/** * @class ACE_TSS_Cleanup * @brief Singleton that helps to manage the lifetime of TSS objects and keys. */ @@ -587,7 +587,7 @@ private: /*****************************************************************************/ -/* +/** * @class TSS_Cleanup_Instance * @A class to manage an instance pointer to ACE_TSS_Cleanup. * Note: that the double checked locking pattern doesn't allow diff --git a/dep/ACE_wrappers/ace/OS_NS_Thread.h b/dep/ACE_wrappers/ace/OS_NS_Thread.h index 6f98f5103..07a1a9cda 100644 --- a/dep/ACE_wrappers/ace/OS_NS_Thread.h +++ b/dep/ACE_wrappers/ace/OS_NS_Thread.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file OS_NS_Thread.h * * $Id: OS_NS_Thread.h 91693 2010-09-09 12:57:54Z johnnyw $ @@ -272,7 +272,7 @@ typedef HANDLE ACE_event_t; # if !defined (ACE_USES_WINCE_SEMA_SIMULATION) typedef HANDLE ACE_sema_t; # else -/* +/** * @class ACE_sema_t * * @brief Semaphore simulation for Windows CE. @@ -330,7 +330,7 @@ typedef CONDITION_VARIABLE ACE_cond_t; ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_cond_t * * @brief This structure is used to implement condition variables on @@ -357,14 +357,14 @@ public: ACE_sema_t sema_; # if defined (ACE_VXWORKS) - /* + /** * A semaphore used by the broadcast/signal thread to wait for all * the waiting thread(s) to wake up and be released from the * semaphore. */ ACE_sema_t waiters_done_; # elif defined (ACE_WIN32) - /* + /** * An auto reset event used by the broadcast/signal thread to wait * for the waiting thread(s) to wake up and get a chance at the * semaphore. @@ -404,7 +404,7 @@ ACE_END_VERSIONED_NAMESPACE_DECL ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_rwlock_t * * @brief This is used to implement readers/writer locks on NT, @@ -529,7 +529,7 @@ ACE_END_VERSIONED_NAMESPACE_DECL ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_recursive_thread_mutex_t * * @brief @@ -682,7 +682,7 @@ ACE_END_VERSIONED_NAMESPACE_DECL ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_Thread_ID * * @brief @@ -790,7 +790,7 @@ typedef int ACE_pri_t; // forward declaration class ACE_TSS_Keys; -/* +/** * @class ACE_TSS_Emulation * * @brief Thread-specific storage emulation. @@ -835,7 +835,7 @@ public: /// Does _not_ check for a valid key. static void *&ts_object (const ACE_thread_key_t key); - /* + /** * Setup an array to be used for local TSS. Returns the array * address on success. Returns 0 if local TSS had already been * setup for this thread. There is no corresponding tss_close () @@ -897,7 +897,7 @@ private: // declarations from OS.cpp so they are visible to the single // file of template instantiations. # if defined (ACE_WIN32) || defined (ACE_HAS_TSS_EMULATION) -/* +/** * @class ACE_TSS_Ref * * @brief "Reference count" for thread-specific storage keys. @@ -926,7 +926,7 @@ public: ACE_thread_t tid_; }; -/* +/** * @class ACE_TSS_Info * * @brief Thread Specific Key management. @@ -976,7 +976,7 @@ private: friend class ACE_TSS_Cleanup; }; -/* +/** * @class ACE_TSS_Keys * * @brief Collection of in-use flags for a thread's TSS keys. @@ -1088,7 +1088,7 @@ namespace ACE_OS { extern ACE_Export ACE_thread_key_t NULL_key; //@} - /* + /** * Call TSS destructors for the current thread. If the current * thread is the main thread, then the argument must be 1. * For private use of ACE_Object_Manager and ACE_Thread_Adapter only. @@ -1276,7 +1276,7 @@ namespace ACE_OS { int mutex_lock (ACE_mutex_t *m, int &abandoned); - /* + /** * This method attempts to acquire a lock, but gives up if the lock * has not been acquired by the given time. If the lock is not * acquired within the given amount of time, then this method @@ -1292,7 +1292,7 @@ namespace ACE_OS { int mutex_lock (ACE_mutex_t *m, const ACE_Time_Value &timeout); - /* + /** * If == 0, calls . Otherwise, * this method attempts to acquire a lock, but gives up if the lock * has not been acquired by the given time, in which case it returns @@ -1328,7 +1328,7 @@ namespace ACE_OS { //@} /// Low-level interface to @c priocntl(2). - /* + /** * Can't call the following priocntl, because that's a macro on * Solaris. */ @@ -1603,7 +1603,7 @@ namespace ACE_OS { ACE_thread_t *thr_id, ACE_THR_FUNC_RETURN *status); - /* + /** * Get the thread affinity * * @param thr_id For NPTL-threads, when ACE_HAS_PTHREAD_SETAFFINITY_NP @@ -1620,7 +1620,7 @@ namespace ACE_OS { cpu_set_t * cpu_mask); - /* + /** * Set the thread affinity * * @param thr_id For NPTL-threads, when ACE_HAS_PTHREAD_SETAFFINITY_NP @@ -1763,7 +1763,7 @@ namespace ACE_OS { //@} - /* + /** * This method uses process id and object pointer to come up with a * machine wide unique name. The process ID will provide uniqueness * between processes on the same machine. The "this" pointer of the @@ -1816,7 +1816,7 @@ extern "C" int is_signaled_; /// Special bool for auto_events alone - /* + /** * The semantics of auto events forces us to introduce this extra * variable to ensure that the thread is not woken up * spuriously. Please see event_wait and event_timedwait () to see @@ -1835,7 +1835,7 @@ extern "C" ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_event_t * * @brief Wrapper for NT events on UNIX. @@ -1879,7 +1879,7 @@ ACE_END_VERSIONED_NAMESPACE_DECL ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_OS_Thread_Mutex_Guard * * This data structure is meant to be used within an ACE_OS @@ -1924,7 +1924,7 @@ protected: ACE_OS_Thread_Mutex_Guard (const ACE_OS_Thread_Mutex_Guard &); }; -/* +/** * @class ACE_OS_Recursive_Thread_Mutex_Guard * * @brief For internal use only by ACE_OS. diff --git a/dep/ACE_wrappers/ace/OS_NS_arpa_inet.h b/dep/ACE_wrappers/ace/OS_NS_arpa_inet.h index c4c7cb681..fc8e660ac 100644 --- a/dep/ACE_wrappers/ace/OS_NS_arpa_inet.h +++ b/dep/ACE_wrappers/ace/OS_NS_arpa_inet.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file OS_NS_arpa_inet.h * * $Id: OS_NS_arpa_inet.h 80826 2008-03-04 14:51:23Z wotte $ diff --git a/dep/ACE_wrappers/ace/OS_NS_ctype.h b/dep/ACE_wrappers/ace/OS_NS_ctype.h index 5a6f015f0..f87a0c6cc 100644 --- a/dep/ACE_wrappers/ace/OS_NS_ctype.h +++ b/dep/ACE_wrappers/ace/OS_NS_ctype.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file OS_NS_ctype.h * * $Id: OS_NS_ctype.h 83891 2008-11-28 11:01:50Z johnnyw $ diff --git a/dep/ACE_wrappers/ace/OS_NS_dirent.h b/dep/ACE_wrappers/ace/OS_NS_dirent.h index 2ba7efa1c..caf72b16e 100644 --- a/dep/ACE_wrappers/ace/OS_NS_dirent.h +++ b/dep/ACE_wrappers/ace/OS_NS_dirent.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file OS_NS_dirent.h * * $Id: OS_NS_dirent.h 85435 2009-05-25 18:52:50Z coryan $ diff --git a/dep/ACE_wrappers/ace/OS_NS_dlfcn.h b/dep/ACE_wrappers/ace/OS_NS_dlfcn.h index 76fdab7d9..45cf625dc 100644 --- a/dep/ACE_wrappers/ace/OS_NS_dlfcn.h +++ b/dep/ACE_wrappers/ace/OS_NS_dlfcn.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file OS_NS_dlfcn.h * * $Id: OS_NS_dlfcn.h 80826 2008-03-04 14:51:23Z wotte $ diff --git a/dep/ACE_wrappers/ace/OS_NS_errno.h b/dep/ACE_wrappers/ace/OS_NS_errno.h index d8dd26a21..22e3d006d 100644 --- a/dep/ACE_wrappers/ace/OS_NS_errno.h +++ b/dep/ACE_wrappers/ace/OS_NS_errno.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file OS_NS_errno.h * * $Id: OS_NS_errno.h 85321 2009-05-12 08:31:31Z johnnyw $ @@ -52,7 +52,7 @@ namespace ACE_OS { } /* namespace ACE_OS */ #if defined (ACE_HAS_WINCE_BROKEN_ERRNO) -/* +/** * @class ACE_CE_Errno * * Some versions of CE don't support @c errno and some versions' diff --git a/dep/ACE_wrappers/ace/OS_NS_fcntl.h b/dep/ACE_wrappers/ace/OS_NS_fcntl.h index 9b10e62aa..0fe86a5f1 100644 --- a/dep/ACE_wrappers/ace/OS_NS_fcntl.h +++ b/dep/ACE_wrappers/ace/OS_NS_fcntl.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file OS_NS_fcntl.h * * $Id: OS_NS_fcntl.h 87487 2009-11-12 07:54:39Z johnnyw $ diff --git a/dep/ACE_wrappers/ace/OS_NS_macros.h b/dep/ACE_wrappers/ace/OS_NS_macros.h index 05cf7599c..a949ce247 100644 --- a/dep/ACE_wrappers/ace/OS_NS_macros.h +++ b/dep/ACE_wrappers/ace/OS_NS_macros.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file OS_NS_macros.h * * $Id: OS_NS_macros.h 80826 2008-03-04 14:51:23Z wotte $ diff --git a/dep/ACE_wrappers/ace/OS_NS_math.h b/dep/ACE_wrappers/ace/OS_NS_math.h index da74c306f..9ba3b6632 100644 --- a/dep/ACE_wrappers/ace/OS_NS_math.h +++ b/dep/ACE_wrappers/ace/OS_NS_math.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file OS_NS_math.h * * $Id: OS_NS_math.h 89470 2010-03-12 12:12:12Z olli $ diff --git a/dep/ACE_wrappers/ace/OS_NS_netdb.h b/dep/ACE_wrappers/ace/OS_NS_netdb.h index 8cd15972a..0c6bdf435 100644 --- a/dep/ACE_wrappers/ace/OS_NS_netdb.h +++ b/dep/ACE_wrappers/ace/OS_NS_netdb.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file OS_NS_netdb.h * * $Id: OS_NS_netdb.h 80826 2008-03-04 14:51:23Z wotte $ @@ -85,7 +85,7 @@ namespace ACE_OS struct hostent *getipnodebyname (const char *name, int family, int flags = 0); - /* + /** * Get the first adapter found on the machine. * @todo: this is really useless except for UUID, move there? dhinton */ diff --git a/dep/ACE_wrappers/ace/OS_NS_poll.h b/dep/ACE_wrappers/ace/OS_NS_poll.h index 8e5ced8ce..b18893b19 100644 --- a/dep/ACE_wrappers/ace/OS_NS_poll.h +++ b/dep/ACE_wrappers/ace/OS_NS_poll.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file OS_NS_poll.h * * $Id: OS_NS_poll.h 80826 2008-03-04 14:51:23Z wotte $ diff --git a/dep/ACE_wrappers/ace/OS_NS_pwd.h b/dep/ACE_wrappers/ace/OS_NS_pwd.h index 8771fc6de..f32c247d2 100644 --- a/dep/ACE_wrappers/ace/OS_NS_pwd.h +++ b/dep/ACE_wrappers/ace/OS_NS_pwd.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file OS_NS_pwd.h * * $Id: OS_NS_pwd.h 87270 2009-10-29 21:47:47Z olli $ diff --git a/dep/ACE_wrappers/ace/OS_NS_regex.h b/dep/ACE_wrappers/ace/OS_NS_regex.h index d3064c699..eccdb69dd 100644 --- a/dep/ACE_wrappers/ace/OS_NS_regex.h +++ b/dep/ACE_wrappers/ace/OS_NS_regex.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file OS_NS_regex.h * * $Id: OS_NS_regex.h 80826 2008-03-04 14:51:23Z wotte $ diff --git a/dep/ACE_wrappers/ace/OS_NS_signal.h b/dep/ACE_wrappers/ace/OS_NS_signal.h index 5696224fb..99fff7365 100644 --- a/dep/ACE_wrappers/ace/OS_NS_signal.h +++ b/dep/ACE_wrappers/ace/OS_NS_signal.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file OS_NS_signal.h * * $Id: OS_NS_signal.h 87097 2009-10-14 14:42:24Z olli $ diff --git a/dep/ACE_wrappers/ace/OS_NS_stdio.h b/dep/ACE_wrappers/ace/OS_NS_stdio.h index ea7484a54..bf120229c 100644 --- a/dep/ACE_wrappers/ace/OS_NS_stdio.h +++ b/dep/ACE_wrappers/ace/OS_NS_stdio.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file OS_NS_stdio.h * * $Id: OS_NS_stdio.h 92178 2010-10-08 07:44:20Z olli $ @@ -125,7 +125,7 @@ inline ACE_HANDLE ace_fileno_helper (FILE *fp) #if !defined (ACE_LACKS_CUSERID) && !defined(ACE_HAS_ALT_CUSERID) \ && !defined(ACE_WIN32) && !defined (ACE_VXWORKS) /// Helper for the ACE_OS::cuserid() function -/* +/** * On some platforms cuserid is a macro. Defining ACE_OS::cuserid() * becomes really hard, as there is no way to save the macro * definition using the pre-processor. @@ -166,7 +166,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL namespace ACE_OS { - /* + /** * @class ace_flock_t * * @brief OS file locking structure. diff --git a/dep/ACE_wrappers/ace/OS_NS_stdlib.h b/dep/ACE_wrappers/ace/OS_NS_stdlib.h index 3737aa1e9..28e11a96b 100644 --- a/dep/ACE_wrappers/ace/OS_NS_stdlib.h +++ b/dep/ACE_wrappers/ace/OS_NS_stdlib.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file OS_NS_stdlib.h * * $Id: OS_NS_stdlib.h 88493 2010-01-12 19:17:42Z olli $ @@ -100,7 +100,7 @@ namespace ACE_OS { ACE_NAMESPACE_INLINE_FUNCTION void abort (void); - /* + /** * Register an at exit hook. The @a name can be used to analyze shutdown * problems */ diff --git a/dep/ACE_wrappers/ace/OS_NS_string.cpp b/dep/ACE_wrappers/ace/OS_NS_string.cpp index 35de303ff..93e112d60 100644 --- a/dep/ACE_wrappers/ace/OS_NS_string.cpp +++ b/dep/ACE_wrappers/ace/OS_NS_string.cpp @@ -135,7 +135,7 @@ ACE_OS::strerror (int errnum) } #if defined (ACE_LACKS_STRERROR) -/* +/** * Just returns "Unknown Error" all the time. */ char * diff --git a/dep/ACE_wrappers/ace/OS_NS_string.h b/dep/ACE_wrappers/ace/OS_NS_string.h index 4503eff90..54da02a8b 100644 --- a/dep/ACE_wrappers/ace/OS_NS_string.h +++ b/dep/ACE_wrappers/ace/OS_NS_string.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file OS_NS_string.h * * $Id: OS_NS_string.h 91995 2010-09-24 12:45:24Z johnnyw $ @@ -254,7 +254,7 @@ namespace ACE_OS { ACE_WCHAR_T *strncpy (ACE_WCHAR_T *s, const ACE_WCHAR_T *t, size_t len); /// Finds the length of a limited-length string (char version). - /* + /** * @param s The character string to find the length of. * @param maxlen The maximum number of characters that will be * scanned for the terminating nul character. @@ -266,7 +266,7 @@ namespace ACE_OS { size_t strnlen (const char *s, size_t maxlen); /// Finds the length of a limited-length string (ACE_WCHAR_T version). - /* + /** * @param s The character string to find the length of. * @param maxlen The maximum number of characters that will be * scanned for the terminating nul character. @@ -352,7 +352,7 @@ namespace ACE_OS { #endif /* ACE_LACKS_STRRCHR */ /// This is a "safe" c string copy function (char version). - /* + /** * Unlike strncpy() this function will always add a terminating '\0' * char if maxlen > 0. So the user doesn't has to provide an extra * '\0' if the user wants a '\0' terminated dst. The function @@ -373,7 +373,7 @@ namespace ACE_OS { size_t maxlen); /// This is a "safe" c string copy function (wchar_t version). - /* + /** * Unlike strncpy() this function will always add a terminating '\0' * char if maxlen > 0. So the user doesn't has to provide an extra * '\0' if the user wants a '\0' terminated dst. The function diff --git a/dep/ACE_wrappers/ace/OS_NS_strings.h b/dep/ACE_wrappers/ace/OS_NS_strings.h index 6c07345d9..9a9775230 100644 --- a/dep/ACE_wrappers/ace/OS_NS_strings.h +++ b/dep/ACE_wrappers/ace/OS_NS_strings.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file OS_NS_strings.h * * $Id: OS_NS_strings.h 80826 2008-03-04 14:51:23Z wotte $ diff --git a/dep/ACE_wrappers/ace/OS_NS_stropts.h b/dep/ACE_wrappers/ace/OS_NS_stropts.h index dd5b9cae7..5b96b617c 100644 --- a/dep/ACE_wrappers/ace/OS_NS_stropts.h +++ b/dep/ACE_wrappers/ace/OS_NS_stropts.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file OS_NS_stropts.h * * $Id: OS_NS_stropts.h 85110 2009-04-20 09:18:43Z msmit $ @@ -67,7 +67,7 @@ typedef unsigned long ACE_SOCK_GROUP; #endif /* (ACE_HAS_WINSOCK2) && (ACE_HAS_WINSOCK2 != 0) */ // @todo: move this to it's own file... dhinton -/* +/** * @class ACE_Str_Buf * * @brief Simple wrapper for STREAM pipes strbuf. diff --git a/dep/ACE_wrappers/ace/OS_NS_sys_mman.h b/dep/ACE_wrappers/ace/OS_NS_sys_mman.h index a08f77a24..c4dd05e83 100644 --- a/dep/ACE_wrappers/ace/OS_NS_sys_mman.h +++ b/dep/ACE_wrappers/ace/OS_NS_sys_mman.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file OS_NS_sys_mman.h * * $Id: OS_NS_sys_mman.h 80826 2008-03-04 14:51:23Z wotte $ diff --git a/dep/ACE_wrappers/ace/OS_NS_sys_msg.h b/dep/ACE_wrappers/ace/OS_NS_sys_msg.h index d6c421684..24b4f5057 100644 --- a/dep/ACE_wrappers/ace/OS_NS_sys_msg.h +++ b/dep/ACE_wrappers/ace/OS_NS_sys_msg.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file OS_NS_sys_msg.h * * $Id: OS_NS_sys_msg.h 80826 2008-03-04 14:51:23Z wotte $ diff --git a/dep/ACE_wrappers/ace/OS_NS_sys_resource.h b/dep/ACE_wrappers/ace/OS_NS_sys_resource.h index 6c27f9cdf..009cb1356 100644 --- a/dep/ACE_wrappers/ace/OS_NS_sys_resource.h +++ b/dep/ACE_wrappers/ace/OS_NS_sys_resource.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file OS_NS_sys_resource.h * * $Id: OS_NS_sys_resource.h 80826 2008-03-04 14:51:23Z wotte $ diff --git a/dep/ACE_wrappers/ace/OS_NS_sys_select.h b/dep/ACE_wrappers/ace/OS_NS_sys_select.h index 678edadbc..94e7d84ab 100644 --- a/dep/ACE_wrappers/ace/OS_NS_sys_select.h +++ b/dep/ACE_wrappers/ace/OS_NS_sys_select.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file OS_NS_sys_select.h * * $Id: OS_NS_sys_select.h 80826 2008-03-04 14:51:23Z wotte $ diff --git a/dep/ACE_wrappers/ace/OS_NS_sys_sendfile.h b/dep/ACE_wrappers/ace/OS_NS_sys_sendfile.h index 5ea3c408e..b39f2a1ec 100644 --- a/dep/ACE_wrappers/ace/OS_NS_sys_sendfile.h +++ b/dep/ACE_wrappers/ace/OS_NS_sys_sendfile.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file OS_NS_sys_sendfile.h * * $Id: OS_NS_sys_sendfile.h 84216 2009-01-22 18:34:40Z johnnyw $ diff --git a/dep/ACE_wrappers/ace/OS_NS_sys_shm.h b/dep/ACE_wrappers/ace/OS_NS_sys_shm.h index b4976b552..9f34b482b 100644 --- a/dep/ACE_wrappers/ace/OS_NS_sys_shm.h +++ b/dep/ACE_wrappers/ace/OS_NS_sys_shm.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file OS_NS_sys_shm.h * * $Id: OS_NS_sys_shm.h 80826 2008-03-04 14:51:23Z wotte $ diff --git a/dep/ACE_wrappers/ace/OS_NS_sys_socket.h b/dep/ACE_wrappers/ace/OS_NS_sys_socket.h index 3921e4b6e..fc5d8901c 100644 --- a/dep/ACE_wrappers/ace/OS_NS_sys_socket.h +++ b/dep/ACE_wrappers/ace/OS_NS_sys_socket.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file OS_NS_sys_socket.h * * $Id: OS_NS_sys_socket.h 85110 2009-04-20 09:18:43Z msmit $ @@ -80,7 +80,7 @@ namespace ACE_OS struct sockaddr *addr, int *addrlen); - /* + /** * QoS-enabled @c accept, which passes @a qos_params to @c accept. If * the OS platform doesn't support QoS-enabled @c accept then the * @a qos_params are ignored and the BSD-style @c accept is called. @@ -106,7 +106,7 @@ namespace ACE_OS struct sockaddr *addr, int addrlen); - /* + /** * QoS-enabled @c connect, which passes @a qos_params to @c connect. * If the OS platform doesn't support QoS-enabled @c connect then the * @a qos_params are ignored and the BSD-style @c connect is called. diff --git a/dep/ACE_wrappers/ace/OS_NS_sys_stat.h b/dep/ACE_wrappers/ace/OS_NS_sys_stat.h index 81fee3071..36e11a9eb 100644 --- a/dep/ACE_wrappers/ace/OS_NS_sys_stat.h +++ b/dep/ACE_wrappers/ace/OS_NS_sys_stat.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file OS_NS_sys_stat.h * * $Id: OS_NS_sys_stat.h 80826 2008-03-04 14:51:23Z wotte $ diff --git a/dep/ACE_wrappers/ace/OS_NS_sys_time.h b/dep/ACE_wrappers/ace/OS_NS_sys_time.h index f29be4cbe..c3df9319d 100644 --- a/dep/ACE_wrappers/ace/OS_NS_sys_time.h +++ b/dep/ACE_wrappers/ace/OS_NS_sys_time.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file OS_NS_sys_time.h * * $Id: OS_NS_sys_time.h 87823 2009-11-30 12:38:34Z johnnyw $ diff --git a/dep/ACE_wrappers/ace/OS_NS_sys_uio.h b/dep/ACE_wrappers/ace/OS_NS_sys_uio.h index b69256ff4..d08df3d1c 100644 --- a/dep/ACE_wrappers/ace/OS_NS_sys_uio.h +++ b/dep/ACE_wrappers/ace/OS_NS_sys_uio.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file OS_NS_sys_uio.h * * $Id: OS_NS_sys_uio.h 80826 2008-03-04 14:51:23Z wotte $ diff --git a/dep/ACE_wrappers/ace/OS_NS_sys_utsname.h b/dep/ACE_wrappers/ace/OS_NS_sys_utsname.h index a2165f620..978fecf9e 100644 --- a/dep/ACE_wrappers/ace/OS_NS_sys_utsname.h +++ b/dep/ACE_wrappers/ace/OS_NS_sys_utsname.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file OS_NS_sys_utsname.h * * $Id: OS_NS_sys_utsname.h 80826 2008-03-04 14:51:23Z wotte $ diff --git a/dep/ACE_wrappers/ace/OS_NS_sys_wait.h b/dep/ACE_wrappers/ace/OS_NS_sys_wait.h index e8ed63cc9..8cdf6efa4 100644 --- a/dep/ACE_wrappers/ace/OS_NS_sys_wait.h +++ b/dep/ACE_wrappers/ace/OS_NS_sys_wait.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file OS_NS_sys_wait.h * * $Id: OS_NS_sys_wait.h 83735 2008-11-14 09:41:52Z johnnyw $ @@ -43,7 +43,7 @@ namespace ACE_OS ACE_NAMESPACE_INLINE_FUNCTION pid_t wait (int * = 0); - /* + /** * Calls @c ::WaitForSingleObject on Win32 and ACE::waitpid () * otherwise. Returns the passed in @a pid_t on success and -1 on * failure. @@ -58,7 +58,7 @@ namespace ACE_OS int wait_options = 0, ACE_HANDLE handle = 0); - /* + /** * Calls @c ::waitpid on UNIX/POSIX platforms Does not work on VxWorks 5.5.x. * On Win32, @a pid is ignored if the @a handle is not equal to 0. * Passing the process @a handle is prefer on Win32 because using diff --git a/dep/ACE_wrappers/ace/OS_NS_time.h b/dep/ACE_wrappers/ace/OS_NS_time.h index 6319fa89f..dc22f0a0c 100644 --- a/dep/ACE_wrappers/ace/OS_NS_time.h +++ b/dep/ACE_wrappers/ace/OS_NS_time.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file OS_NS_time.h * * $Id: OS_NS_time.h 87260 2009-10-29 14:00:43Z olli $ @@ -58,7 +58,7 @@ struct tm { #endif /* ACE_LACKS_STRUCT_TM */ /// Helper for the ACE_OS::timezone() function -/* +/** * We put all the timezone stuff that used to be in ACE_OS::timezone() * here because on some platforms "timezone" is a macro. Because of this, * the name ACE_OS::timezone will cause errors. So in order to use the @@ -105,7 +105,7 @@ inline long ace_timezone() # pragma warning (disable: 4244) # endif /// Helper for the ACE_OS::difftime() function -/* +/** * We moved the difftime code that used to be in ACE_OS::difftime() * here because on some platforms "difftime" is a macro. Because of this, * the name ACE_OS::difftime will cause errors. So in order to use the @@ -236,7 +236,7 @@ namespace ACE_OS const char *format, const struct tm *timeptr); - /* + /** * strptime wrapper. Note that the struct @a tm will always be set to * zero */ diff --git a/dep/ACE_wrappers/ace/OS_NS_unistd.h b/dep/ACE_wrappers/ace/OS_NS_unistd.h index 5acb8ba7e..489dc8e43 100644 --- a/dep/ACE_wrappers/ace/OS_NS_unistd.h +++ b/dep/ACE_wrappers/ace/OS_NS_unistd.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file OS_NS_unistd.h * * $Id: OS_NS_unistd.h 91066 2010-07-12 11:05:04Z johnnyw $ @@ -252,7 +252,7 @@ namespace ACE_OS size_t len, ACE_OVERLAPPED *); - /* + /** * Receive @a len bytes into @a buf from @a handle (uses the * call, which uses the system call on UNIX * and the call on Win32). If errors occur, -1 is @@ -353,7 +353,7 @@ namespace ACE_OS size_t nbyte, ACE_OVERLAPPED *); - /* + /** * Send @a len bytes from @a buf to @a handle (uses the * calls, which is uses the system call on UNIX and the * call on Win32). If errors occur, -1 is returned. If diff --git a/dep/ACE_wrappers/ace/OS_NS_wchar.h b/dep/ACE_wrappers/ace/OS_NS_wchar.h index 46698258c..dc7ddb579 100644 --- a/dep/ACE_wrappers/ace/OS_NS_wchar.h +++ b/dep/ACE_wrappers/ace/OS_NS_wchar.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file OS_NS_wchar.h * * $Id: OS_NS_wchar.h 91995 2010-09-24 12:45:24Z johnnyw $ diff --git a/dep/ACE_wrappers/ace/OS_NS_wctype.h b/dep/ACE_wrappers/ace/OS_NS_wctype.h index 7697ccb42..47fbfd580 100644 --- a/dep/ACE_wrappers/ace/OS_NS_wctype.h +++ b/dep/ACE_wrappers/ace/OS_NS_wctype.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file OS_NS_wctype.h * * $Id: OS_NS_wctype.h 83891 2008-11-28 11:01:50Z johnnyw $ diff --git a/dep/ACE_wrappers/ace/OS_QoS.cpp b/dep/ACE_wrappers/ace/OS_QoS.cpp index 454dd783f..4913dd51f 100644 --- a/dep/ACE_wrappers/ace/OS_QoS.cpp +++ b/dep/ACE_wrappers/ace/OS_QoS.cpp @@ -1,5 +1,5 @@ //============================================================================= -///* +///** // * @file OS_QoS.cpp // * // * $Id: OS_QoS.cpp 86508 2009-08-14 13:32:40Z johnnyw $ diff --git a/dep/ACE_wrappers/ace/OS_QoS.h b/dep/ACE_wrappers/ace/OS_QoS.h index 755fa7ce8..74d46afce 100644 --- a/dep/ACE_wrappers/ace/OS_QoS.h +++ b/dep/ACE_wrappers/ace/OS_QoS.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file OS_QoS.h * * $Id: OS_QoS.h 80826 2008-03-04 14:51:23Z wotte $ @@ -154,7 +154,7 @@ typedef unsigned long ACE_SERVICE_TYPE; # define ACE_SIO_SET_QOS (0x08000000 | 11) #endif -/* +/** * @class ACE_Flow_Spec * * @brief Wrapper class that defines the flow spec QoS information, @@ -259,7 +259,7 @@ private: defined (ACE_HAS_WINSOCK2_GQOS) */ }; -/* +/** * @class ACE_QoS * * @brief Wrapper class that holds the sender and receiver flow spec @@ -302,7 +302,7 @@ private: }; -/* +/** * @class ACE_QoS_Params * * @brief Wrapper class that simplifies the information passed to the QoS @@ -311,7 +311,7 @@ private: class ACE_Export ACE_QoS_Params { public: - /* + /** * Initialize the data members. The is a pointer to * the user data that is to be transferred to the peer during * connection establishment. The is a pointer to the @@ -391,7 +391,7 @@ typedef int (*ACE_QOS_CONDITION_FUNC) (iovec *caller_id, unsigned long callbackdata); -/* +/** * @class ACE_Accept_QoS_Params * * @brief Wrapper class that simplifies the information passed to the QoS @@ -400,7 +400,7 @@ typedef int (*ACE_QOS_CONDITION_FUNC) (iovec *caller_id, class ACE_Export ACE_Accept_QoS_Params { public: - /* + /** * Initialize the data members. The is the * address of an optional, application-supplied condition function * that will make an accept/reject decision based on the caller @@ -426,7 +426,7 @@ public: void callback_data (unsigned long cd); private: - /* + /** * This is the address of an optional, application-supplied * condition function that will make an accept/reject decision based * on the caller information pass in as parameters, and optionally @@ -435,7 +435,7 @@ private: */ ACE_QOS_CONDITION_FUNC qos_condition_callback_; - /* + /** * This data is passed back to the application as a condition * function parameter, i.e., it is an Asynchronous Completion Token * (ACT). diff --git a/dep/ACE_wrappers/ace/OS_TLI.h b/dep/ACE_wrappers/ace/OS_TLI.h index acfb755bf..efc43ae4b 100644 --- a/dep/ACE_wrappers/ace/OS_TLI.h +++ b/dep/ACE_wrappers/ace/OS_TLI.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file OS_TLI.h * * $Id: OS_TLI.h 91688 2010-09-09 11:21:50Z johnnyw $ @@ -152,7 +152,7 @@ typedef struct t_optmgmt ACE_TOPTMGMT; typedef struct t_bind ACE_TBIND; #endif -/* +/** * @namespace ACE_OS * * @brief This class is a wrapper for the XTI/TLI operations diff --git a/dep/ACE_wrappers/ace/OS_Thread_Adapter.h b/dep/ACE_wrappers/ace/OS_Thread_Adapter.h index b808e5a98..4dc3cee09 100644 --- a/dep/ACE_wrappers/ace/OS_Thread_Adapter.h +++ b/dep/ACE_wrappers/ace/OS_Thread_Adapter.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file OS_Thread_Adapter.h * * $Id: OS_Thread_Adapter.h 85341 2009-05-14 11:07:37Z johnnyw $ @@ -24,7 +24,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_OS_Thread_Adapter * * @brief Converts a C++ function into a function that can be @@ -52,7 +52,7 @@ public: # endif /* ACE_HAS_WIN32_STRUCTURAL_EXCEPTIONS */ ); - /* + /** * Execute the @a user_func_ with the @a arg. This function deletes * @c this, thereby rendering the object useless after the call * returns. diff --git a/dep/ACE_wrappers/ace/OS_main.h b/dep/ACE_wrappers/ace/OS_main.h index 217be0ecd..b916280ea 100644 --- a/dep/ACE_wrappers/ace/OS_main.h +++ b/dep/ACE_wrappers/ace/OS_main.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file OS_main.h * * $Id: OS_main.h 85579 2009-06-08 18:46:54Z mitza $ diff --git a/dep/ACE_wrappers/ace/Obchunk.h b/dep/ACE_wrappers/ace/Obchunk.h index 68abc6699..b76a7f7e3 100644 --- a/dep/ACE_wrappers/ace/Obchunk.h +++ b/dep/ACE_wrappers/ace/Obchunk.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Obchunk.h * * $Id: Obchunk.h 80826 2008-03-04 14:51:23Z wotte $ @@ -23,7 +23,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_Obchunk * * @brief Defines the state that represents a "chunk" of memory. @@ -59,7 +59,7 @@ public: /// Next chunk in the chain. ACE_Obchunk *next_; - /* + /** * Pointer to the beginning contents of this chunk. This field is * actually overlayed by the memory allocated by * . Therefore, it *must* come last. diff --git a/dep/ACE_wrappers/ace/Object_Manager.cpp b/dep/ACE_wrappers/ace/Object_Manager.cpp index 4e8890c55..3966fd312 100644 --- a/dep/ACE_wrappers/ace/Object_Manager.cpp +++ b/dep/ACE_wrappers/ace/Object_Manager.cpp @@ -115,7 +115,7 @@ void *ACE_Object_Manager::preallocated_array[ #if !defined (ACE_LACKS_ACE_SVCCONF) -/* +/** * @class ACE_Object_Manager_Preallocations * * @brief Performs preallocations of certain statically allocated services @@ -843,7 +843,7 @@ ACE_Object_Manager::fini (void) #if !defined (ACE_HAS_NONSTATIC_OBJECT_MANAGER) -/* +/** * @class ACE_Object_Manager_Manager * * @brief Ensure that the ACE_Object_Manager gets initialized at program diff --git a/dep/ACE_wrappers/ace/Object_Manager.h b/dep/ACE_wrappers/ace/Object_Manager.h index a3b6b3def..5e177ee6b 100644 --- a/dep/ACE_wrappers/ace/Object_Manager.h +++ b/dep/ACE_wrappers/ace/Object_Manager.h @@ -1,7 +1,7 @@ /* -*- C++ -*- */ //============================================================================= -/* +/** * @file Object_Manager.h * * $Id: Object_Manager.h 91066 2010-07-12 11:05:04Z johnnyw $ @@ -73,7 +73,7 @@ template class ACE_Cleanup_Adapter; # define ACE_APPLICATION_PREALLOCATED_ARRAY_DECLARATIONS #endif /* ! ACE_APPLICATION_PREALLOCATED_ARRAY_DECLARATIONS */ -/* +/** * @class ACE_Object_Manager * * @brief Manager for ACE library services and singleton cleanup. @@ -199,21 +199,21 @@ class ACE_Export ACE_Object_Manager : public ACE_Object_Manager_Base { public: - /* + /** * Explicitly initialize (construct the singleton instance of) the * ACE_Object_Manager. Returns 0 on success, -1 on failure, and 1 * if it had already been called. */ virtual int init (void); - /* + /** * Explicitly destroy the singleton instance of the * ACE_Object_Manager. Returns 0 on success, -1 on failure, and 1 * if it had already been called. */ virtual int fini (void); - /* + /** * Returns 1 before the ACE_Object_Manager has been constructed. * This flag can be used to determine if the program is constructing * static objects. If no static object spawns any threads, the @@ -224,7 +224,7 @@ public: */ static int starting_up (void); - /* + /** * Returns 1 after the ACE_Object_Manager has been destroyed. This * flag can be used to determine if the program is in the midst of * destroying static objects. (Note that the program might destroy @@ -233,7 +233,7 @@ public: */ static int shutting_down (void); - /* + /** * Register an ACE_Cleanup object for cleanup at process * termination. The object is deleted via the * . If you need more flexiblity, see the @@ -250,7 +250,7 @@ public: int init_tss_i (void); #endif - /* + /** * Register an object (or array) for cleanup at process termination. * "cleanup_hook" points to a (global, or static member) function * that is called for the object or array when it to be destroyed. @@ -326,7 +326,7 @@ public: ACE_PREALLOCATED_ARRAYS // This enum value must be last! }; - /* + /** * @deprecated * Accesses a default signal set used, for example, * in ACE_Sig_Guard methods. @@ -359,35 +359,35 @@ public: // = The accessors are for internal // use by ACE_Singleton _only_. - /* + /** * Accesses an ACE_Null_Mutex to be used for construction of * ACE_Singletons. Returns 0, and the lock in the argument, on * success; returns -1 on failure. */ static int get_singleton_lock (ACE_Null_Mutex *&); - /* + /** * Accesses a non-recursive ACE_Thread_Mutex to be used for * construction of ACE_Singletons. Returns 0, and the lock in the * argument, on success; returns -1 on failure. */ static int get_singleton_lock (ACE_Thread_Mutex *&); - /* + /** * Accesses a non-recursive ACE_Mutex to be used for construction * of ACE_Singletons. Returns 0, and the lock in the argument, on * success; returns -1 on failure. */ static int get_singleton_lock (ACE_Mutex *&); - /* + /** * Accesses a recursive ACE_Recursive_Thread_Mutex to be used for * construction of ACE_Singletons. Returns 0, and the lock in the * argument, on success; returns -1 on failure. */ static int get_singleton_lock (ACE_Recursive_Thread_Mutex *&); - /* + /** * Accesses a readers/writer ACE_RW_Thread_Mutex to be used for * construction of ACE_Singletons. Returns 0, and the lock in the * argument, on success; returns -1 on failure. @@ -398,7 +398,7 @@ public: public: // For internal use only by ACE_Managed_Objects. - /* + /** * Accessor to singleton instance. Because static member functions * are provided in the interface, this should not be public. However, * it is public so that ACE_Managed_Object can access it. diff --git a/dep/ACE_wrappers/ace/Object_Manager_Base.cpp b/dep/ACE_wrappers/ace/Object_Manager_Base.cpp index 754e6dc81..fbc5864a9 100644 --- a/dep/ACE_wrappers/ace/Object_Manager_Base.cpp +++ b/dep/ACE_wrappers/ace/Object_Manager_Base.cpp @@ -450,7 +450,7 @@ ACE_OS_Object_Manager::shutting_down (void) /*****************************************************************************/ #if !defined (ACE_HAS_NONSTATIC_OBJECT_MANAGER) -/* +/** * @class ACE_OS_Object_Manager_Manager * * @brief Ensure that the ACE_OS_Object_Manager gets initialized at diff --git a/dep/ACE_wrappers/ace/Object_Manager_Base.h b/dep/ACE_wrappers/ace/Object_Manager_Base.h index a9a7292d1..66df51d96 100644 --- a/dep/ACE_wrappers/ace/Object_Manager_Base.h +++ b/dep/ACE_wrappers/ace/Object_Manager_Base.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Object_Manager_Base.h * * $Id: Object_Manager_Base.h 84163 2009-01-15 07:57:27Z johnnyw $ @@ -38,7 +38,7 @@ class ACE_TSS_Emulation; class ACE_Log_Msg; class ACE_Thread_Hook; -/* +/** * @class ACE_Object_Manager_Base * * @brief Base class for ACE_Object_Manager(s). @@ -55,14 +55,14 @@ protected: virtual ~ACE_Object_Manager_Base (void); public: - /* + /** * Explicitly initialize. Returns 0 on success, -1 on failure due * to dynamic allocation failure (in which case errno is set to * ENOMEM), or 1 if it had already been called. */ virtual int init (void) = 0; - /* + /** * Explicitly destroy. Returns 0 on success, -1 on failure because * the number of fini () calls hasn't reached the number of init () * calls, or 1 if it had already been called. @@ -79,7 +79,7 @@ public: }; protected: - /* + /** * Returns 1 before ACE_Object_Manager_Base has been constructed. * This flag can be used to determine if the program is constructing * static objects. If no static object spawns any threads, the @@ -90,7 +90,7 @@ protected: */ int starting_up_i (void); - /* + /** * Returns 1 after ACE_Object_Manager_Base has been destroyed. This * flag can be used to determine if the program is in the midst of * destroying static objects. (Note that the program might destroy @@ -102,7 +102,7 @@ protected: /// State of the Object_Manager; Object_Manager_State object_manager_state_; - /* + /** * Flag indicating whether the ACE_Object_Manager was dynamically * allocated by ACE. (If is was dynamically allocated by the * application, then the application is responsible for destroying @@ -135,7 +135,7 @@ public: /// Explicitly destroy. virtual int fini (void); - /* + /** * Returns 1 before the ACE_OS_Object_Manager has been * constructed. See for more * information. diff --git a/dep/ACE_wrappers/ace/Obstack.h b/dep/ACE_wrappers/ace/Obstack.h index cabee4146..b7b75e735 100644 --- a/dep/ACE_wrappers/ace/Obstack.h +++ b/dep/ACE_wrappers/ace/Obstack.h @@ -1,6 +1,6 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Obstack.h * * $Id: Obstack.h 80826 2008-03-04 14:51:23Z wotte $ diff --git a/dep/ACE_wrappers/ace/Obstack_T.h b/dep/ACE_wrappers/ace/Obstack_T.h index a98b85614..f191934fd 100644 --- a/dep/ACE_wrappers/ace/Obstack_T.h +++ b/dep/ACE_wrappers/ace/Obstack_T.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Obstack_T.h * * $Id: Obstack_T.h 91688 2010-09-09 11:21:50Z johnnyw $ @@ -26,7 +26,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL class ACE_Allocator; -/* +/** * @class ACE_Obstack_T * * @brief Define a simple "mark and release" memory allocation utility. diff --git a/dep/ACE_wrappers/ace/PI_Malloc.h b/dep/ACE_wrappers/ace/PI_Malloc.h index 4fbd0d7ff..679b71b98 100644 --- a/dep/ACE_wrappers/ace/PI_Malloc.h +++ b/dep/ACE_wrappers/ace/PI_Malloc.h @@ -1,7 +1,7 @@ // -*- C++ -*- //========================================================================== -/* +/** * @file PI_Malloc.h * * $Id: PI_Malloc.h 80826 2008-03-04 14:51:23Z wotte $ @@ -30,7 +30,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL // prepare for position independent malloc -/* +/** * @class ACE_PI_Control_Block * * @brief This information is stored in memory allocated by the Memory_Pool. @@ -51,7 +51,7 @@ public: typedef ACE_Based_Pointer NAME_NODE_PTR; typedef ACE_Based_Pointer_Basic CHAR_PTR; - /* + /** * @class ACE_Malloc_Header * * @brief This is the control block header. It's used by ACE_Malloc @@ -90,7 +90,7 @@ public: }; - /* + /** * @class ACE_Name_Node * * @brief This class supports "named memory regions" within ACE_Malloc. diff --git a/dep/ACE_wrappers/ace/POSIX_Asynch_IO.cpp b/dep/ACE_wrappers/ace/POSIX_Asynch_IO.cpp index 35e04a8af..b28894ac1 100644 --- a/dep/ACE_wrappers/ace/POSIX_Asynch_IO.cpp +++ b/dep/ACE_wrappers/ace/POSIX_Asynch_IO.cpp @@ -1717,7 +1717,7 @@ ACE_POSIX_Asynch_Transmit_File_Result::~ACE_POSIX_Asynch_Transmit_File_Result (v // ********************************************************************* -/* +/** * @class ACE_POSIX_Asynch_Transmit_Handler * * @brief Auxillary handler for doing in diff --git a/dep/ACE_wrappers/ace/POSIX_Asynch_IO.h b/dep/ACE_wrappers/ace/POSIX_Asynch_IO.h index f02ada1ac..ba1803037 100644 --- a/dep/ACE_wrappers/ace/POSIX_Asynch_IO.h +++ b/dep/ACE_wrappers/ace/POSIX_Asynch_IO.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file POSIX_Asynch_IO.h * * $Id: POSIX_Asynch_IO.h 91688 2010-09-09 11:21:50Z johnnyw $ @@ -47,7 +47,7 @@ class ACE_POSIX_Proactor; class ACE_Proactor_Impl; class ACE_Handle_Set; -/* +/** * @class ACE_POSIX_Asynch_Result * * This class provides concrete implementation for ACE_Asynch_Result @@ -67,7 +67,7 @@ public: /// Did the operation succeed? int success (void) const; - /* + /** * This is the ACT associated with the handle on which the * Asynch_Operation takes place. * @@ -81,7 +81,7 @@ public: /// This returns ACE_INVALID_HANDLE on POSIX4 platforms. ACE_HANDLE event (void) const; - /* + /** * This really make sense only when doing file I/O. * * @@ On POSIX4-Unix, offset_high should be supported using @@ -94,7 +94,7 @@ public: /// Priority of the operation. int priority (void) const; - /* + /** * POSIX4 realtime signal number to be used for the * operation. ranges from SIGRTMIN to SIGRTMAX. By * default, SIGRTMIN is used to issue calls. @@ -126,7 +126,7 @@ protected: /// Handler that will be called back. ACE_Handler::Proxy_Ptr handler_proxy_; - /* + /** * ACT for this operation. * We could use for * this. But it doesnot provide the constness, so this may be @@ -147,7 +147,7 @@ protected: u_long error_; }; -/* +/** * @class ACE_POSIX_Asynch_Operation * * @brief This class implements ACE_Asynch_Operation for all @@ -157,7 +157,7 @@ protected: class ACE_Export ACE_POSIX_Asynch_Operation : public virtual ACE_Asynch_Operation_Impl { public: - /* + /** * Initializes the factory with information which will be used with * each asynchronous call. If (@a handle == ACE_INVALID_HANDLE), * @c ACE_Handler::handle will be called on the handler to get the @@ -197,7 +197,7 @@ protected: // are slots available or no. Passing a valid ptr stores the ptr // with the Proactor. - /* + /** * It is easy to get this specific implementation proactor here, * since it is the one that creates the correct POSIX_Asynch_* * objects. We can use this to get to the implementation proactor @@ -215,7 +215,7 @@ protected: ACE_HANDLE handle_; }; -/* +/** * @class ACE_POSIX_Asynch_Read_Stream_Result * * @brief This class provides concrete implementation for @@ -274,7 +274,7 @@ protected: // I/O handle used for reading. }; -/* +/** * @class ACE_POSIX_Asynch_Read_Stream * * This class implements for all POSIX @@ -301,7 +301,7 @@ public: }; -/* +/** * @class ACE_POSIX_Asynch_Write_Stream_Result * * @brief This class provides concrete implementation for @@ -365,7 +365,7 @@ protected: // I/O handle used for writing. }; -/* +/** * @class ACE_POSIX_Asynch_Write_Stream * * @brief This class implements for @@ -390,7 +390,7 @@ public: virtual ~ACE_POSIX_Asynch_Write_Stream (void); }; -/* +/** * @class ACE_POSIX_Asynch_Read_File_Result * * @brief This class provides concrete implementation for @@ -431,7 +431,7 @@ protected: virtual ~ACE_POSIX_Asynch_Read_File_Result (void); }; -/* +/** * @class ACE_POSIX_Asynch_Read_File * * @brief This class is a factory for starting off asynchronous reads @@ -455,7 +455,7 @@ public: /// Constructor. ACE_POSIX_Asynch_Read_File (ACE_POSIX_Proactor *posix_proactor); - /* + /** * This starts off an asynchronous read. Upto @a bytes_to_read will * be read and stored in the @a message_block. The read will start * at @a offset from the beginning of the file. @@ -472,7 +472,7 @@ public: virtual ~ACE_POSIX_Asynch_Read_File (void); private: - /* + /** * This belongs to ACE_POSIX_Asynch_Read_Stream. We have * defined this here to avoid compiler warnings and forward the * method to . @@ -485,7 +485,7 @@ private: }; -/* +/** * @class ACE_POSIX_Asynch_Write_File_Result * * @brief This class provides implementation for @@ -535,7 +535,7 @@ protected: virtual ~ACE_POSIX_Asynch_Write_File_Result (void); }; -/* +/** * @class ACE_POSIX_Asynch_Write_File * * This class provides concrete implementation for @@ -551,7 +551,7 @@ public: /// Constructor. ACE_POSIX_Asynch_Write_File (ACE_POSIX_Proactor *posix_proactor); - /* + /** * This starts off an asynchronous write. Upto @a bytes_to_write * will be written and stored in the @a message_block. The write will * start at @a offset from the beginning of the file. @@ -568,7 +568,7 @@ public: virtual ~ACE_POSIX_Asynch_Write_File (void); private: - /* + /** * This belongs to ACE_POSIX_Asynch_Write_Stream. We * have put this here to avoid compiler warnings. We forward this * method call to the @@ -581,7 +581,7 @@ private: int signal_number = 0); }; -/* +/** * @class ACE_POSIX_Asynch_Accept_Result * * @brief This is that class which will be passed back to the @@ -652,7 +652,7 @@ protected: }; -/* +/** * @class ACE_POSIX_Asynch_Accept * * @brief For the POSIX implementation this class is common for all Proactors @@ -671,7 +671,7 @@ public: /// Destructor. virtual ~ACE_POSIX_Asynch_Accept (void); - /* + /** * This belongs to ACE_POSIX_Asynch_Operation. We forward * this call to that method. We have put this here to avoid the * compiler warnings. @@ -681,7 +681,7 @@ public: const void *completion_key, ACE_Proactor *proactor = 0); - /* + /** * This starts off an asynchronous accept. The asynchronous accept * call also allows any initial data to be returned to the * @c handler. Upto @a bytes_to_read will be read and stored in the @@ -700,13 +700,13 @@ public: int signal_number = 0, int addr_family = AF_INET); - /* + /** * Cancel all pending pseudo-asynchronus requests * Behavior as usual AIO request */ int cancel (void); - /* + /** * Close performs cancellation of all pending requests * and closure the listen handle */ @@ -750,7 +750,7 @@ private: ACE_SYNCH_MUTEX lock_; }; -/* +/** * @class ACE_POSIX_Asynch_Connect_Result * * @brief This is that class which will be passed back to the @@ -799,7 +799,7 @@ protected: }; -/* +/** * @class ACE_POSIX_Asynch_Connect * */ @@ -816,7 +816,7 @@ public: /// Destructor. virtual ~ACE_POSIX_Asynch_Connect (void); - /* + /** * This belongs to ACE_POSIX_Asynch_Operation. We forward * this call to that method. We have put this here to avoid the * compiler warnings. @@ -826,7 +826,7 @@ public: const void *completion_key, ACE_Proactor *proactor = 0); - /* + /** * This starts off an asynchronous connect. * * @arg connect_handle will be used for the connect call. If @@ -841,13 +841,13 @@ public: int priority, int signal_number = 0); - /* + /** * Cancel all pending pseudo-asynchronus requests * Behavior as usual AIO request */ int cancel (void); - /* + /** * Close performs cancellation of all pending requests. */ int close (void); @@ -876,7 +876,7 @@ private: int post_result (ACE_POSIX_Asynch_Connect_Result *result, bool flg_post); /// Cancel uncompleted connect operations. - /* + /** * @arg flg_notify Indicates whether or not we should send notification * about canceled accepts. If this is false, don't send * notifications about canceled connects. If true, notify @@ -903,7 +903,7 @@ private: }; -/* +/** * @class ACE_POSIX_Asynch_Transmit_File_Result * * @brief This is that class which will be passed back to the @@ -993,7 +993,7 @@ protected: u_long flags_; }; -/* +/** * @class ACE_POSIX_Asynch_Transmit_File * * @brief Implementation for transmit_file will make use of @@ -1006,7 +1006,7 @@ public: /// Constructor. ACE_POSIX_Asynch_Transmit_File (ACE_POSIX_Proactor *posix_proactor); - /* + /** * This starts off an asynchronous transmit file. The is a * handle to an open file. is a pointer to a * data structure that contains pointers to data to send before and @@ -1033,7 +1033,7 @@ public: }; -/* +/** * @class ACE_POSIX_Asynch_Read_Dgram * * @brief This class is a factory for starting off asynchronous reads @@ -1088,7 +1088,7 @@ protected: ACE_POSIX_Asynch_Read_Dgram (void); }; -/* +/** * @class ACE_POSIX__Asynch_Write_Dgram_Result * * @brief This is class provides concrete implementation for @@ -1154,7 +1154,7 @@ protected: }; -/* +/** * @class ACE_POSIX_Asynch_Write_Dgram * * @brief This class is a factory for starting off asynchronous writes @@ -1215,7 +1215,7 @@ protected: /*****************************************************/ -/* +/** * @class ACE_POSIX_Asynch_Read_Dgram_Result * * @brief This is class provides concrete implementation for diff --git a/dep/ACE_wrappers/ace/POSIX_CB_Proactor.h b/dep/ACE_wrappers/ace/POSIX_CB_Proactor.h index 9a8229a20..fc76f82e2 100644 --- a/dep/ACE_wrappers/ace/POSIX_CB_Proactor.h +++ b/dep/ACE_wrappers/ace/POSIX_CB_Proactor.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file POSIX_CB_Proactor.h * * $Id: POSIX_CB_Proactor.h 80826 2008-03-04 14:51:23Z wotte $ @@ -30,7 +30,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_POSIX_CB_Proactor * * @brief Implementation of Callback-based Proactor @@ -55,7 +55,7 @@ public: protected: - /* + /** * Dispatch a single set of events. If @a wait_time elapses before * any events occur, return 0. Return 1 on success i.e., when a * completion is dispatched, non-zero (-1) on errors and errno is @@ -63,7 +63,7 @@ protected: */ virtual int handle_events (ACE_Time_Value &wait_time); - /* + /** * Block indefinitely until at least one event is dispatched. * Dispatch a single set of events. If @a wait_time elapses before * any events occur, return 0. Return 1 on success i.e., when a @@ -79,7 +79,7 @@ protected: /// called from post_completion method virtual int notify_completion (int sig_num); - /* + /** * Dispatch a single set of events. If @a milli_seconds elapses * before any events occur, return 0. Return 1 if a completion is * dispatched. Return -1 on errors. diff --git a/dep/ACE_wrappers/ace/POSIX_Proactor.cpp b/dep/ACE_wrappers/ace/POSIX_Proactor.cpp index 806109252..635661d9e 100644 --- a/dep/ACE_wrappers/ace/POSIX_Proactor.cpp +++ b/dep/ACE_wrappers/ace/POSIX_Proactor.cpp @@ -29,7 +29,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_POSIX_Wakeup_Completion * * This result object is used by the of the @@ -562,7 +562,7 @@ ACE_POSIX_Proactor::get_impl_type (void) } -/* +/** * @class ACE_AIOCB_Notify_Pipe_Manager * * @brief This class manages the notify pipe of the AIOCB Proactor. diff --git a/dep/ACE_wrappers/ace/POSIX_Proactor.h b/dep/ACE_wrappers/ace/POSIX_Proactor.h index 2e91cdfd2..991a27515 100644 --- a/dep/ACE_wrappers/ace/POSIX_Proactor.h +++ b/dep/ACE_wrappers/ace/POSIX_Proactor.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file POSIX_Proactor.h * * $Id: POSIX_Proactor.h 80826 2008-03-04 14:51:23Z wotte $ @@ -38,7 +38,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_POSIX_Proactor * * @brief POSIX implementation of the Proactor. @@ -106,7 +106,7 @@ public: /// Close down the Proactor. virtual int close (void); - /* + /** * Dispatch a single set of events. If @a wait_time elapses before * any events occur, return 0. Return 1 on success i.e., when a * completion is dispatched, non-zero (-1) on errors and errno is @@ -114,7 +114,7 @@ public: */ virtual int handle_events (ACE_Time_Value &wait_time) = 0; - /* + /** * Block indefinitely until at least one event is dispatched. * Dispatch a single set of events.Return 1 on success i.e., when a * completion is dispatched, non-zero (-1) on errors and errno is @@ -122,7 +122,7 @@ public: */ virtual int handle_events (void) = 0; - /* + /** * Post a result to the completion port of the Proactor. If errors * occur, the result will be deleted by this method. If successful, * the result will be deleted by the Proactor when the result is @@ -283,7 +283,7 @@ protected: /// Constructor. ACE_POSIX_Proactor (void); - /* + /** * Protect against structured exceptions caused by user code when * dispatching handles. The is not very useful * compared to that can be associated each asynchronous @@ -295,7 +295,7 @@ protected: const void *completion_key, u_long error); - /* + /** * Post completions to the completion port so that all * threads can wake up. This is used in conjunction with the * . @@ -317,7 +317,7 @@ private: // Forward declarations. class ACE_AIOCB_Notify_Pipe_Manager; -/* +/** * @class ACE_POSIX_AIOCB_Proactor * * @brief This Proactor makes use of Asynchronous I/O Control Blocks @@ -350,7 +350,7 @@ public: /// Close down the Proactor. virtual int close (void); - /* + /** * Dispatch a single set of events. If @a wait_time elapses before * any events occur, return 0. Return 1 on success i.e., when a * completion is dispatched, non-zero (-1) on errors and errno is @@ -358,7 +358,7 @@ public: */ virtual int handle_events (ACE_Time_Value &wait_time); - /* + /** * Block indefinitely until at least one event is dispatched. * Dispatch a single set of events. If @a wait_time elapses before * any events occur, return 0. Return 1 on success i.e., when a @@ -373,7 +373,7 @@ public: virtual int start_aio (ACE_POSIX_Asynch_Result *result, ACE_POSIX_Proactor::Opcode op); - /* + /** * This method should be called from * ACE_POSIX_Asynch_Operation::cancel() * instead of usual ::aio_cancel. @@ -418,7 +418,7 @@ protected: /// To identify requests from Notify_Pipe_Manager void set_notify_handle (ACE_HANDLE h); - /* + /** * Dispatch a single set of events. If elapses * before any events occur, return 0. Return 1 if a completion * dispatched. Return -1 on errors. @@ -495,7 +495,7 @@ protected: }; #if defined(ACE_HAS_POSIX_REALTIME_SIGNALS) -/* +/** * @class ACE_POSIX_SIG_Proactor * * @brief This Proactor implementation does completion event detection using @@ -508,7 +508,7 @@ protected: class ACE_Export ACE_POSIX_SIG_Proactor : public ACE_POSIX_AIOCB_Proactor { - /* + /** * This class does the registering of Asynch Operations with the * Proactor which is necessary in the SIG strategy, because we need * to store the signal number. @@ -516,7 +516,7 @@ class ACE_Export ACE_POSIX_SIG_Proactor : public ACE_POSIX_AIOCB_Proactor friend class ACE_POSIX_SIG_Asynch_Operation; public: - /* + /** * This constructor masks only the * real-time signal. Only this signal should be used to issue * asynchronous operations using this Proctor. @@ -525,7 +525,7 @@ public: virtual Proactor_Type get_impl_type (void); - /* + /** * This constructor should be used to tell the Proactor to mask and * wait for the real-time signals specified in this set. Only these * signals should be used by the asynchronous operations when they @@ -537,7 +537,7 @@ public: /// Destructor. virtual ~ACE_POSIX_SIG_Proactor (void); - /* + /** * Dispatch a single set of events. If @a wait_time elapses before * any events occur, return 0. Return 1 on success i.e., when a * completion is dispatched, non-zero (-1) on errors and errno is @@ -545,7 +545,7 @@ public: */ virtual int handle_events (ACE_Time_Value &wait_time); - /* + /** * Block indefinitely until at least one event is dispatched. * Dispatch a single set of events. If elapses before * any events occur, return 0. Return 1 on success i.e., when a @@ -558,7 +558,7 @@ public: /// now it is implemented in base ACE_POSIX_AIOCB_Proactor class ///virtual int post_completion (ACE_POSIX_Asynch_Result *result); - /* + /** * If @a signal_number is -1, check with the Proactor and use one of * the signals that is present in the mask set (i.e., the signals for * which the Proactor will be waiting) of the Proactor. If there are @@ -579,7 +579,7 @@ protected: /// Insures that RT_completion_signals_ are blocked in the calling thread. int block_signals (void) const; - /* + /** * Dispatch a single set of events. @a timeout is a pointer to a * relative time representing the maximum amount of time to wait for * an event to occur. If 0, wait indefinitely. @@ -597,7 +597,7 @@ protected: /// called from post_completion method virtual int notify_completion (int sig_num); - /* + /** * These signals are used for completion notification by the * Proactor. The signals specified while issuing asynchronous * operations are stored here in this set. These signals are masked @@ -609,7 +609,7 @@ protected: #endif /* ACE_HAS_POSIX_REALTIME_SIGNALS */ -/* +/** * @class ACE_POSIX_Asynch_Timer * * @brief This class is posted to the completion port when a timer diff --git a/dep/ACE_wrappers/ace/Pagefile_Memory_Pool.h b/dep/ACE_wrappers/ace/Pagefile_Memory_Pool.h index 0ee9e448c..28fdfe59a 100644 --- a/dep/ACE_wrappers/ace/Pagefile_Memory_Pool.h +++ b/dep/ACE_wrappers/ace/Pagefile_Memory_Pool.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Pagefile_Memory_Pool.h * * $Id: Pagefile_Memory_Pool.h 85318 2009-05-11 18:17:14Z johnnyw $ @@ -29,7 +29,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_Pagefile_Memory_Pool_Options * * @brief Helper class for Pagefile Memory Pool constructor options. @@ -52,7 +52,7 @@ public: size_t max_size_; }; -/* +/** * @class ACE_Pagefile_Memory_Pool * * @brief Make a memory pool that is based on "anonymous" memory @@ -83,14 +83,14 @@ public: /// Instruct the memory pool to release all of its resources. int release (int destroy = 1); - /* + /** * Win32 Structural exception selector. The return value decides * how to handle memory pool related structural exceptions. Returns * 1, 0, or , -1. */ virtual int seh_selector (void *); - /* + /** * Try to extend the virtual address space so that @a addr is now * covered by the address mapping. The method succeeds and returns * 0 if the backing store has adequate memory to cover this address. @@ -122,7 +122,7 @@ public: protected: - /* + /** * Map portions or the entire pool into the local virtual address * space. To do this, we compute the new @c file_offset of the * backing store and commit the memory. @@ -134,7 +134,7 @@ protected: private: - /* + /** * @class Control_Block * * @brief Attributes that are meaningful in local storage only. @@ -148,7 +148,7 @@ private: /// Base address returned from system call void *mapped_base_; - /* + /** * @class Shared_Control_Block * * @brief Pool statistics diff --git a/dep/ACE_wrappers/ace/Pair_T.h b/dep/ACE_wrappers/ace/Pair_T.h index 519acbfd1..604fcba71 100644 --- a/dep/ACE_wrappers/ace/Pair_T.h +++ b/dep/ACE_wrappers/ace/Pair_T.h @@ -1,7 +1,7 @@ /* -*- C++ -*- */ //============================================================================= -/* +/** * @file Pair_T.h * * $Id: Pair_T.h 92097 2010-09-30 05:41:49Z msmit $ @@ -23,7 +23,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_Reference_Pair * * @brief Defines a pair that only hold references. diff --git a/dep/ACE_wrappers/ace/Parse_Node.h b/dep/ACE_wrappers/ace/Parse_Node.h index 32986969b..034deef31 100644 --- a/dep/ACE_wrappers/ace/Parse_Node.h +++ b/dep/ACE_wrappers/ace/Parse_Node.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Parse_Node.h * * $Id: Parse_Node.h 81239 2008-04-04 22:28:48Z iliyan $ @@ -34,7 +34,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL class ACE_Service_Config; class ACE_Service_Type; -/* +/** * @class ACE_Parse_Node * * @brief Provide the base of the object hierarchy that defines the parse @@ -75,7 +75,7 @@ private: ACE_UNIMPLEMENTED_FUNC (ACE_Parse_Node& operator= (const ACE_Parse_Node&)) }; -/* +/** * @class ACE_Suspend_Node * * @brief Suspend a Service Node. @@ -103,7 +103,7 @@ private: ACE_UNIMPLEMENTED_FUNC (ACE_Suspend_Node& operator= (const ACE_Suspend_Node&)) }; -/* +/** * @class ACE_Resume_Node * * @brief Resume a Service Node. @@ -131,7 +131,7 @@ private: ACE_UNIMPLEMENTED_FUNC (ACE_Resume_Node& operator= (const ACE_Resume_Node&)) }; -/* +/** * @class ACE_Remove_Node * * @brief Remove a Service Node. @@ -159,7 +159,7 @@ private: ACE_UNIMPLEMENTED_FUNC (ACE_Remove_Node& operator= (const ACE_Remove_Node&)) }; -/* +/** * @class ACE_Static_Node * * @brief Handle a statically linked node. @@ -197,7 +197,7 @@ private: class ACE_Service_Type_Factory; -/* +/** * @class ACE_Dynamic_Node * * @brief Handle a dynamically linked node. @@ -231,7 +231,7 @@ private: ACE_UNIMPLEMENTED_FUNC (ACE_Dynamic_Node& operator= (const ACE_Dynamic_Node&)) }; -/* +/** * @class ACE_Stream_Node * * @brief Handle a Stream. @@ -264,7 +264,7 @@ private: ACE_UNIMPLEMENTED_FUNC (ACE_Stream_Node& operator= (const ACE_Stream_Node&)) }; -/* +/** * @class ACE_Dummy_Node * * @brief I forget why this is here... ;-) @@ -296,7 +296,7 @@ private: ACE_UNIMPLEMENTED_FUNC (ACE_Dummy_Node& operator= (const ACE_Dummy_Node&)) }; -/* +/** * @class ACE_Location_Node * * @brief Keep track of where a shared library is located. @@ -335,7 +335,7 @@ protected: /// Pathname to the shared library we are working on. const ACE_TCHAR *pathname_; - /* + /** * Flag indicating whether the Service_Object generated by this * Location Node should be deleted or not * (ACE_Service_Type::DELETE_OBJ.) @@ -353,7 +353,7 @@ private: ACE_UNIMPLEMENTED_FUNC (ACE_Location_Node& operator= (const ACE_Location_Node&)) }; -/* +/** * @class ACE_Object_Node * * @brief Keeps track of the symbol name for a shared object. @@ -386,7 +386,7 @@ private: ACE_UNIMPLEMENTED_FUNC (ACE_Object_Node& operator= (const ACE_Object_Node&)) }; -/* +/** * @class ACE_Function_Node * * @brief Keeps track of the symbol name of for a shared function. @@ -414,7 +414,7 @@ private: /// Return mangled function name that takes into account ACE /// versioned namespace. - /* + /** * This function embeds the ACE versioned namespace name into the * original function name if versioned namespace support has been * enabled and the original function name conforms to the ACE @@ -441,7 +441,7 @@ private: ACE_UNIMPLEMENTED_FUNC (ACE_Function_Node& operator= (const ACE_Function_Node&)) }; -/* +/** * @class ACE_Static_Function_Node * * @brief Keeps track of the symbol name for a function that is not @@ -498,7 +498,7 @@ public: private: - /* + /** * Not implemented to enforce no copying */ ACE_UNIMPLEMENTED_FUNC diff --git a/dep/ACE_wrappers/ace/Ping_Socket.h b/dep/ACE_wrappers/ace/Ping_Socket.h index 6f67b9f29..213f37fbd 100644 --- a/dep/ACE_wrappers/ace/Ping_Socket.h +++ b/dep/ACE_wrappers/ace/Ping_Socket.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Ping_Socket.h * * $Id: Ping_Socket.h 81737 2008-05-20 09:46:39Z johnnyw $ @@ -30,7 +30,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL class ACE_INET_Addr; -/* +/** * @class ACE_Ping_Socket * * @brief This class is useful to perform ICMP echo checks (pinging) diff --git a/dep/ACE_wrappers/ace/Pipe.h b/dep/ACE_wrappers/ace/Pipe.h index 9c32a9c07..b305456eb 100644 --- a/dep/ACE_wrappers/ace/Pipe.h +++ b/dep/ACE_wrappers/ace/Pipe.h @@ -1,7 +1,7 @@ // -*- C++ -*- //========================================================================== -/* +/** * @file Pipe.h * * $Id: Pipe.h 92010 2010-09-24 14:54:19Z shuston $ @@ -32,7 +32,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL class ACE_Message_Block; class ACE_Time_Value; -/* +/** * @class ACE_Pipe * * @brief Provides a portable bidirectional "pipe" abstraction. @@ -70,14 +70,14 @@ public: // = Accessors. - /* + /** * This is the "read" side of the pipe. Note, however, that * processes can also write to this handle as well since pipes are * bi-directional. */ ACE_HANDLE read_handle (void) const; - /* + /** * This is the "write" side of the pipe. Note, however, that * processes can also read to this handle as well since pipes are * bi-directional. @@ -112,7 +112,7 @@ public: /// Recv iovecs via <::readv>. ssize_t recv (iovec iov[], int n) const; - /* + /** * Send N char *ptrs and int lengths. Note that the char *'s * precede the ints (basically, an varargs version of writev). The * count N is the *total* number of trailing arguments, *not* a @@ -120,7 +120,7 @@ public: */ ssize_t send (size_t n, ...) const; - /* + /** * This is an interface to ::readv, that doesn't use the struct * iovec explicitly. The ... can be passed as an arbitrary number * of (char *ptr, int len) tuples. However, the count N is the diff --git a/dep/ACE_wrappers/ace/Priority_Reactor.h b/dep/ACE_wrappers/ace/Priority_Reactor.h index 80ddfb73d..2f29c4c07 100644 --- a/dep/ACE_wrappers/ace/Priority_Reactor.h +++ b/dep/ACE_wrappers/ace/Priority_Reactor.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Priority_Reactor.h * * $Id: Priority_Reactor.h 82723 2008-09-16 09:35:44Z johnnyw $ @@ -25,7 +25,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL -/* +/** * @class ACE_Priority_Reactor * * @brief Implements priority based dispatching. diff --git a/dep/ACE_wrappers/ace/Proactor.cpp b/dep/ACE_wrappers/ace/Proactor.cpp index 8f17ed459..983b8eabb 100644 --- a/dep/ACE_wrappers/ace/Proactor.cpp +++ b/dep/ACE_wrappers/ace/Proactor.cpp @@ -43,7 +43,7 @@ ACE_Proactor *ACE_Proactor::proactor_ = 0; /// only delete it safely if we created it!) bool ACE_Proactor::delete_proactor_ = false; -/* +/** * @class ACE_Proactor_Timer_Handler * * @brief A Handler for timer. It helps in the management of timers diff --git a/dep/ACE_wrappers/ace/Proactor.h b/dep/ACE_wrappers/ace/Proactor.h index 086d4f9cc..6b3f34f35 100644 --- a/dep/ACE_wrappers/ace/Proactor.h +++ b/dep/ACE_wrappers/ace/Proactor.h @@ -1,7 +1,7 @@ // -*- C++ -*- //============================================================================= -/* +/** * @file Proactor.h * * $Id: Proactor.h 80826 2008-03-04 14:51:23Z wotte $ @@ -43,7 +43,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL class ACE_Proactor_Impl; class ACE_Proactor_Timer_Handler; -/* +/** * @class ACE_Proactor_Handle_Timeout_Upcall * * @brief Functor for ACE_Timer_Queue. @@ -122,7 +122,7 @@ protected: ACE_Proactor *proactor_; }; -/* +/** * @class ACE_Proactor * * @brief A manager for asynchronous event demultiplexing. @@ -177,7 +177,7 @@ public: ACE_SYNCH_RECURSIVE_MUTEX> TIMER_QUEUE; - /* + /** * Constructor. If @a implementation is 0, the correct implementation * object will be created. @a delete_implementation flag determines * whether the implementation object should be deleted by the @@ -218,14 +218,14 @@ public: /// returns -1 or the method is invoked. static int run_event_loop (void); - /* + /** * Run the event loop until the method * returns -1, the method is invoked, or the * ACE_Time_Value expires, in which case 0 is returned. */ static int run_event_loop (ACE_Time_Value &tv); - /* + /** * Instruct the to terminate its event * loop. * This method wakes up all the threads blocked on waiting for @@ -233,13 +233,13 @@ public: */ static int end_event_loop (void); - /* + /** * Resets the static so that the * method can be restarted. */ static int reset_event_loop (void); - /* + /** * The singleton proactor is used by the ACE_Service_Config. * Therefore, we must check for the reconfiguration request and * handle it after handling an event. @@ -250,13 +250,13 @@ public: static int event_loop_done (void); /// Close the associated @c ACE_Proactor_Impl implementation object. - /* + /** * If @arg delete_implementation was specified to the @c open() method, * the implementation object is also deleted. */ int close (void); - /* + /** * You can add a hook to various run_event methods and the hook will * be called after handling every proactor event. If this function * returns 0, proactor_run_event_loop will check for the return value of @@ -266,14 +266,14 @@ public: typedef int (*PROACTOR_EVENT_HOOK)(ACE_Proactor *); // These methods work with an instance of a proactor. - /* + /** * Run the event loop until the * * method returns -1 or the method is invoked. */ int proactor_run_event_loop (PROACTOR_EVENT_HOOK = 0); - /* + /** * Run the event loop until the * method returns -1, the * method is invoked, @@ -283,7 +283,7 @@ public: int proactor_run_event_loop (ACE_Time_Value &tv, PROACTOR_EVENT_HOOK = 0); - /* + /** * Instruct the ACE_Proactor to terminate its event loop * and notifies the ACE_Proactor so that it can wake up * and close down gracefully. @@ -304,7 +304,7 @@ public: const void *completion_key); // = Timer management. - /* + /** * Schedule a @a handler that will expire after