dlangui v0.0.7 (2014-04-18T05:43:18Z)
Home
Dub
Repo
RefCountedObject
dlangui
core
types
base class for reference counted objects, maintains reference counter inplace.
class
RefCountedObject {
protected
int
_refCount
;
int
refCount
[@property getter];
void
addRef
();
void
releaseRef
();
~this
();
}
Destructor
~this
~this
()
Undocumented in source.
Members
Functions
addRef
void
addRef
()
Undocumented in source. Be warned that the author may not have intended to support it.
releaseRef
void
releaseRef
()
Undocumented in source. Be warned that the author may not have intended to support it.
Properties
refCount
int
refCount
[@property getter]
Undocumented in source. Be warned that the author may not have intended to support it.
Variables
_refCount
int
_refCount
;
Undocumented in source.
Meta
Source
See Implementation
dlangui
core
types
classes
RefCountedObject
enums
State
functions
appendPath
convertPathDelimiters
fromStringz
fromWStringz
isPathDelimiter
properties
exePath
structs
Glyph
Point
Rect
Ref
variables
PATH_DELIMITER
base class for reference counted objects, maintains reference counter inplace.