From d48610a699458efa7ee3e47fe773ef3d70898dca Mon Sep 17 00:00:00 2001 From: Dave Beazley Date: Sun, 7 Oct 2001 17:43:35 +0000 Subject: [PATCH] *** empty log message *** git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@1799 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- swigweb/exec.ht | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/swigweb/exec.ht b/swigweb/exec.ht index 858453282..b7277ea25 100644 --- a/swigweb/exec.ht +++ b/swigweb/exec.ht @@ -59,12 +59,14 @@ prototyping tool. Specifically:
  • ANSI C/C++ syntax. SWIG parses a form of ANSI C syntax that has been extended with a number of special directives. As a result, interfaces are usually built by grabbing a header file -and tweaking it a little bit. +and tweaking it a little bit. This particular approach is especially +useful when the underlying C/C++ program undergoes frequent +modification.

  • SWIG is not a stub generator. SWIG produces code that you simply compile and run. You don't have to fill in any stubs or write -special code as you do with RPC-like systems. +special client/server code as you do with RPC-like systems.

  • SWIG does not define a protocol nor is it a component @@ -73,10 +75,10 @@ regarding the way in which software components are supposed to interact with each other. All it does is provide the glue needed to hook C code to other languages. -

    -

  • Designed to work with existing C/C++ code. SWIG requires little, if any, modifications -to existing code. For the most part, it encourages you to keep a clean separation between -C/C++ and its scripting interface. +

  • Designed to work with existing C/C++ code. SWIG +requires little, if any, modifications to existing code. For the most +part, it encourages you to keep a clean separation between C/C++ and +its scripting interface.

  • Extensibility. SWIG provides a variety of customization options that