scummvm/common
2009-11-26 10:59:46 +00:00
..
algorithm.h Change a couple places from 'end of namespace' to 'End of namespace', for consistency 2009-10-04 21:26:33 +00:00
archive.cpp Ooops... 2009-11-21 20:26:55 +00:00
archive.h Fixed bug in archive.cpp that caused at least one engine (SAGA) not to work 2009-10-03 20:12:44 +00:00
array.h Added operator== and != to Common::Array 2009-10-19 17:46:50 +00:00
config-file.cpp COMMON: Removed Stream::ioFailed() and clearIOFailed(), as they are deprecated; however, retained ioFailed in SeekableReadStream and File for now (so for now this mainly affects WriteStream subclasses) 2009-05-19 11:42:14 +00:00
config-file.h cleanup 2009-02-16 01:04:19 +00:00
config-manager.cpp COMMON: Removed Stream::ioFailed() and clearIOFailed(), as they are deprecated; however, retained ioFailed in SeekableReadStream and File for now (so for now this mainly affects WriteStream subclasses) 2009-05-19 11:42:14 +00:00
config-manager.h Reduce usage of Common::String::emptyString 2009-10-04 11:58:52 +00:00
debug.cpp COMMON: Remove dependency on engines code (by using the inversion principle). 2009-11-24 22:11:07 +00:00
debug.h Renamed common/console.* to common/textconsole.* to fix compilation under MSVC again (broken with commit #46130). MSVC places all object files for each engine in the same folder (even if they're in subfolders), which resulted in clashing between gui/console.* and common/console.*. There's no easy way around this, other than turning the resulting MSVC files into a big mess, so a simple file rename is more feasible 2009-11-26 10:59:46 +00:00
endian.h Slightly modified version of Patch #2838562: Improve endian.h and stream.h 2009-09-11 08:55:47 +00:00
error.h Change doxygen inline comments from "//!" to "///" as proposed on -devel 2009-10-08 21:28:57 +00:00
EventDispatcher.cpp Change a couple places from 'end of namespace' to 'End of namespace', for consistency 2009-10-04 21:26:33 +00:00
EventRecorder.cpp Change a couple places from 'end of namespace' to 'End of namespace', for consistency 2009-10-04 21:26:33 +00:00
EventRecorder.h Change a couple places from 'end of namespace' to 'End of namespace', for consistency 2009-10-04 21:26:33 +00:00
events.h Strip trailing whitespaces. 2009-07-25 13:00:09 +00:00
file.cpp Got rid of Common::File::addDefaultDirectory, instead implemented the solution proposed in "Case agnostic handling for directories (and files)" on -devel. 2009-09-23 00:15:00 +00:00
file.h Got rid of Common::File::addDefaultDirectory, instead implemented the solution proposed in "Case agnostic handling for directories (and files)" on -devel. 2009-09-23 00:15:00 +00:00
frac.h
fs.cpp Add comment why pattern is converted to lowercase in FSDirectory::listMatchingMembers. 2009-11-21 20:18:51 +00:00
fs.h Add a 'flat' option to FSDirectory to allow searching recursively for files in subdirectories 2009-06-01 00:01:32 +00:00
func.h typo 2009-11-24 22:10:34 +00:00
hash-str.h
hashmap.cpp Fix erase() sometimes hiding other hash elements. 2009-06-13 21:07:05 +00:00
hashmap.h Remove superfluous checks 2009-09-22 12:39:07 +00:00
iff_container.h Fix incorrectly placed doxygen comments; replace Common::ID2string by Common::tag2string 2009-11-24 22:08:34 +00:00
keyboard.h Added proper saving/loading of mapped key modifiers. Fixed modifier recognition in a much less hackish manner, (but still using a minor hack as a stopgap until KeyState can be replaced as the primary lookup type for the keymapper). 2009-08-14 08:11:18 +00:00
list_intern.h Strip trailing whitespaces in the whole code base. 2009-05-24 15:17:42 +00:00
list.h COMMON: Check for failed memory allocations; changed Common::String to use new/delete instead of malloc/free 2009-05-03 22:45:31 +00:00
md5.cpp COMMON: Remove various variants of the md5_file / md5_file_string funcs; turned the (disabled) MD5 test code into a working unit test 2009-11-23 22:30:22 +00:00
md5.h COMMON: Remove various variants of the md5_file / md5_file_string funcs; turned the (disabled) MD5 test code into a working unit test 2009-11-23 22:30:22 +00:00
memorypool.cpp COMMON: (Inactive) code to debug memory leaks in memory pools + typo fix 2009-09-06 13:26:14 +00:00
memorypool.h Fixed indentation and removed whitespaces at the end of line 2008-12-22 11:22:15 +00:00
module.mk Renamed common/console.* to common/textconsole.* to fix compilation under MSVC again (broken with commit #46130). MSVC places all object files for each engine in the same folder (even if they're in subfolders), which resulted in clashing between gui/console.* and common/console.*. There's no easy way around this, other than turning the resulting MSVC files into a big mess, so a simple file rename is more feasible 2009-11-26 10:59:46 +00:00
mutex.cpp do not include common/debug.h from common/util.h 2009-01-30 05:25:17 +00:00
mutex.h Moved default implementations for various OSystem methods into a new class BaseBackend 2009-01-30 03:35:47 +00:00
noncopyable.h
pack-end.h
pack-start.h
ptr.h Change a couple places from 'end of namespace' to 'End of namespace', for consistency 2009-10-04 21:26:33 +00:00
queue.h COMMON: Added Common::List::front() and back() method (similar to std::list) 2009-04-27 11:11:42 +00:00
rect.h Small formatting fixes 2009-10-21 08:45:24 +00:00
savefile.h Changed SaveFileManager methods to take Common::String params (instead of char pointers) 2009-05-29 14:38:22 +00:00
scummsys.h Remove SCUMMVM_USE_LONG_INT 2009-11-23 22:27:52 +00:00
serializer.h Commit digitall's patch for bugs #2892510 and #2892510 with an additional comment. 2009-11-06 17:21:43 +00:00
singleton.h
stack.h Strip trailing whitespaces in the whole code base. 2009-05-24 15:17:42 +00:00
str.cpp Fix broken size in Common::String::printf output in MSVC 2009-10-12 11:51:28 +00:00
str.h COMMON: Add "ignoreCase" parameter to matchString. 2009-09-23 00:14:06 +00:00
stream.cpp Introduced new type Common::DisposeAfterUse::Flag 2009-10-18 19:41:59 +00:00
stream.h Introduced new type Common::DisposeAfterUse::Flag 2009-10-18 19:41:59 +00:00
system.cpp Moved default implementations for various OSystem methods into a new class BaseBackend 2009-01-30 03:35:47 +00:00
system.h Introduce a new struct TimeDate, replacing struct tm in client code. May lead to compilation issues in ports, which should be trivial to fix, though 2009-10-08 19:41:38 +00:00
textconsole.cpp Renamed common/console.* to common/textconsole.* to fix compilation under MSVC again (broken with commit #46130). MSVC places all object files for each engine in the same folder (even if they're in subfolders), which resulted in clashing between gui/console.* and common/console.*. There's no easy way around this, other than turning the resulting MSVC files into a big mess, so a simple file rename is more feasible 2009-11-26 10:59:46 +00:00
textconsole.h Renamed common/console.* to common/textconsole.* to fix compilation under MSVC again (broken with commit #46130). MSVC places all object files for each engine in the same folder (even if they're in subfolders), which resulted in clashing between gui/console.* and common/console.*. There's no easy way around this, other than turning the resulting MSVC files into a big mess, so a simple file rename is more feasible 2009-11-26 10:59:46 +00:00
timer.h Clarify timer API. 2009-02-27 22:19:33 +00:00
unarj.cpp Introduced new type Common::DisposeAfterUse::Flag 2009-10-18 19:41:59 +00:00
unarj.h
unzip.cpp Introduced new type Common::DisposeAfterUse::Flag 2009-10-18 19:41:59 +00:00
unzip.h Renamed Archive::openFile to createReadStreamForMember 2009-01-23 04:45:44 +00:00
util.cpp COMMON: Remove dependency on engines code (by using the inversion principle). 2009-11-24 22:11:07 +00:00
util.h Renamed common/console.* to common/textconsole.* to fix compilation under MSVC again (broken with commit #46130). MSVC places all object files for each engine in the same folder (even if they're in subfolders), which resulted in clashing between gui/console.* and common/console.*. There's no easy way around this, other than turning the resulting MSVC files into a big mess, so a simple file rename is more feasible 2009-11-26 10:59:46 +00:00
xmlparser.cpp Introduced new type Common::DisposeAfterUse::Flag 2009-10-18 19:41:59 +00:00
xmlparser.h cleanup 2009-10-20 19:52:18 +00:00
zlib.cpp Fix code formatting (esp. 'if(' -> 'if (' etc., but also indention and other things) 2009-09-30 16:16:53 +00:00
zlib.h Fixed indentation and removed whitespaces at the end of line 2008-12-22 11:22:15 +00:00