cppannotations/yo/memory.yo
Frank B. Brokken 23303c1c4f Flaws removed
git-svn-id: https://cppannotations.svn.sourceforge.net/svnroot/cppannotations/trunk@232 f6dd340e-d3f9-0310-b409-bdd246841980
2009-07-15 15:52:54 +00:00

73 lines
1.8 KiB
Text

INCLUDEFILE(mailus)
includefile(memory/intro)
sect(The operators `new' and `delete')
includefile(memory/new)
lsubsect(NEWARRAY)(Allocating arrays)
includefile(memory/newarray)
lsubsect(DELETEARRAY)(Deleting arrays)
includefile(memory/deletearray)
lsubsect(ENLARGEARRAY)(Enlarging arrays)
includefile(memory/enlargearray)
lsubsect(PLACEMENT)(The `placement new' operator)
includefile(memory/placement)
lsect(DESTRUCTOR)(The destructor)
includefile(memory/destruc)
lsubsect(DELETEPTRS)(Object pointers revisited)
includefile(memory/objectp)
lsubsect(NEWHANDLER)(The function set_new_handler())
includefile(memory/setnew)
sect(The assignment operator)
includefile(memory/assignment)
lsubsect(OVERLOADASSIGN)(Overloading the assignment operator)
includefile(memory/overload)
subsubsect(The member 'operator=()')
includefile(memory/operator)
lsect(DEFAULTED)(Defaulted and deleted class members (C++0x))
includefile(memory/defaulted)
sect(Plain Old Data (C++0x))
includefile(memory/pod)
sect(The `this' pointer)
includefile(memory/this)
subsect(Preventing self-destruction using `this')
includefile(memory/prevent)
subsect(Associativity of operators and this)
includefile(memory/associat)
sect(The copy constructor: initialization vs. assignment)
includefile(memory/initialisation)
lsubsect(CopyDestroy)\
(Similarities between the copy constructor and operator=())
includefile(memory/copyopis)
COMMENT(
subsect(Preventing certain members from being used)
includefile(memory/preventing)
END)
lsect(MOVE)(The move constructor (C++0x))
includefile(memory/move)
subsect(Move-only classes (C++0x))
includefile(memory/moveonly)
sect(Conclusion)
includefile(memory/conclusion)