No description
Find a file
2015-07-07 18:46:19 +01:00
cmake make appveyor happier 2015-06-08 22:40:38 -04:00
data update AP209 ATS files. enum element_order now has the _order prefix on its values 2015-02-08 14:22:27 -05:00
doc update Doxyfile 2015-05-20 20:03:53 -04:00
example/ap203min Add ExternalProject_add based build of ap203min example 2015-03-27 08:38:38 -07:00
include Patch for MSVC2013 compilation 2015-01-26 19:04:28 -05:00
misc in appveyor summary, print errors first 2015-06-13 21:29:36 -04:00
src fix list / params handling 2015-07-07 18:46:19 +01:00
test add stepcore test for segfault in STEPattribute::set_null() 2015-05-20 20:51:14 -04:00
.gitignore update .gitignore 2015-02-08 17:51:05 -05:00
.travis.yml tweak travis-ci more 2015-02-08 14:58:29 -05:00
appveyor.yml give up on msbuild, seems to offer no benefits. go back to cmake --build 2015-06-14 21:23:08 -04:00
AUTHORS bump version (0.8), update AUTHORS, NEWS for v0.8, add travis-ci build status to README 2014-12-26 15:10:00 -05:00
ChangeLog v0.7: Update changelog, INSTALL, NEWS, README, version string 2013-04-15 20:07:01 -04:00
CMakeLists.txt make appveyor happier 2015-06-08 22:40:38 -04:00
COPYING Update text files for v0.6 2012-05-25 22:12:37 -04:00
ctest_matrix.cmake Case and whitespace on toplevel CMake files 2014-03-01 11:53:30 -05:00
CTestConfig.cmake Add CMake footer comment to CMake files 2014-02-28 22:06:09 -05:00
INSTALL v0.7: Update changelog, INSTALL, NEWS, README, version string 2013-04-15 20:07:01 -04:00
lcov.cmake Case and whitespace on toplevel CMake files 2014-03-01 11:53:30 -05:00
NEWS NEWS: forgot to include BRL-CAD changes 2014-12-26 16:55:44 -05:00
README.md rename altered rendering of sample code block 2015-01-02 14:07:54 -05:00
run_ctest.cmake Case and whitespace on toplevel CMake files 2014-03-01 11:53:30 -05:00
SC_VERSION.txt bump version (0.8), update AUTHORS, NEWS for v0.8, add travis-ci build status to README 2014-12-26 15:10:00 -05:00

Travis-CI build status: Build Status


STEPcode v0.8 -- stepcode.org, 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.