No description
Find a file
Mark Pictor 698b9e0371 Update text files for v0.6
Add v0.6 info, and change urls in those files
2012-05-25 22:12:37 -04:00
cmake fix quotes 2012-05-05 11:17:45 -04:00
data Merge pull request #181 from mpictor/review/update_scl_macros 2012-05-16 17:07:15 -07:00
doc renamed - change urls, strings 2012-05-25 22:05:12 -04:00
include Implemeted functions/rules prototypes (to be continued) 2012-05-11 12:08:23 +02:00
misc Added express syntax highlighting file for notepad ++. 2012-03-13 20:39:53 +01:00
src renamed - change urls, strings 2012-05-25 22:05:12 -04:00
test * Better support of where/rules functions 2012-05-11 12:08:25 +02:00
AUTHORS Update AUTHORS 2012-03-08 11:50:50 -07:00
ChangeLog Update text files for v0.6 2012-05-25 22:12:37 -04:00
CMakeLists.txt renamed - change urls, strings 2012-05-25 22:05:12 -04:00
COPYING Update text files for v0.6 2012-05-25 22:12:37 -04:00
ctest_matrix.cmake cmake variables have been renamed 2012-03-26 19:56:02 -04:00
CTestConfig.cmake improve ctest 2011-10-18 21:21:25 -04:00
INSTALL Update text files for v0.6 2012-05-25 22:12:37 -04:00
NEWS Update text files for v0.6 2012-05-25 22:12:37 -04:00
README Update text files for v0.6 2012-05-25 22:12:37 -04:00
run_ctest.cmake fix false-positive build errors reported on cdash 2012-04-06 19:15:02 -04:00
SCL_VERSION.txt Update text files for v0.6 2012-05-25 22:12:37 -04:00
TODO Update text files for v0.1 release - ChangeLog, INSTALL, NEWS, README, TODO 2011-09-02 20:02:15 -04:00

***********************************************************************
STEPcode v0.6 -- http://github.com/stepcode/stepcode

* What is STEPcode? SC reads ISO10303-11 EXPRESS schemas and generates
  C++ source code that can read and write Part 21 files conforming
  to that schema. In addition to C++, SC includes experimental
  support for Python.

* Renamed in April/May 2012: SC was formerly known as STEP Class
  Libraries, SCL for short. It was renamed because the name wasn't
  accurate: the class libraries make up only a part of the code.

* Much of the work to update SC has been done by the developers of
  BRL-CAD, and SC (then STEP Class Library) was originally created at
  NIST in the 90's.

* For information on changes version-by-version, see the NEWS file

* Building and testing SCL - see the INSTALL file

* For more details on the libraries and executables, see the wiki:
  http://github.com/stepcode/stepcode/wiki/About-STEPcode

* For license details, see the COPYING file. Summary: 3-clause BSD.

***********************************************************************

***********************************************************************
CODING STANDARDS

SC's source has been reformatted with astyle. When making changes, try
to match the current formatting. The main points are:

  - compact (java-style) brackets:
        if( a == 3 ) {
            c = 5;
            function( a, b );
        } else {
            somefunc( );
        }
  - indents are 4 spaces
  - no tab characters
  - line endings are LF (linux), not CRLF (windows)
  - brackets around single-line conditionals
  - spaces inside parentheses and around operators
  - return type on the same line as the function name, unless that's
    too long
  - doxygen-style comments
    (see http://www.stack.nl/~dimitri/doxygen/docblocks.html)

If in doubt about a large patch, run astyle with the config file
misc/astyle.cfg. 
Download astyle from http://sourceforge.net/projects/astyle/files/astyle/

***********************************************************************

For more info, see the wiki.