#include <assert.h>
Go to the source code of this file.
Namespaces | |
namespace | base |
struct is used (instead of class) for style reasons (though it's the same conceptually): class refers to an object, struct refers to a simple data structure made to be stored. These structures are defined because it is far more readable to have bla->link(somewhere) than the manual pointer link stuff every time. This reduces errors. Furthermore the default lists of the STL are double linked.