Changes between Version 4 and Version 5 of Sysel/Ideas


Ignore:
Timestamp:
2011-03-28T19:46:30Z (14 years ago)
Author:
Jiri Svoboda
Comment:

Add out-of-date warnings

Legend:

Unmodified
Added
Removed
Modified
  • Sysel/Ideas

    v4 v5  
    77== Code organization ==
    88
     9'''Note:''' This section might be out of date.
     10
    911Sysel shall employ ''packages'' and ''modules''. Together, these two constructs provide full information about organization of the codebase and allow for a certain degree of freedom in how finely the code is partitioned, both in terms of namespace and code volume.
    1012
    1113=== Packages ===
     14
     15'''Note:''' This section might be out of date.
    1216
    1317Packages provide two main features: a namespace and visibility controls. Packages thus provide a greater level of isolation than mere classes and allow safe composition of code developed by different (uncoordinated) teams. Packages can have a well defined API/ABI and can be delivered in compiled form via libraries. Each package has a name which must be fully qualified.
     
    3438
    3539== Remote objects ==
     40
     41'''Note:''' This section might be out of date.
    3642
    3743=== Basics ===