source: trunk/src/core/scew_extras.h @ 544

Last change on this file since 544 was 511, checked in by dkearney, 18 years ago

moving all .h files to their respective src directories, updating tools.py to include python's re module, updated setup.py.in to use .h files from the installed version of rappture and to adapt to the new location of .h files. .h files are now all stored in the lib directory under the rappture installation folder. this should simplify people's code, so they dont have to include wierd search paths for header files. adjusted the paths in rappture.in, allowing people to use their own version of python and perl. octave on the other hand is still broken for people downloading our binary and not using libhdf5-1.6.2. src's makefile.in was modified to copy the .h files from the core and cee directories over to the rappture installation directory. the top level makefile.in has all kinds of changes mainly you can now type in ./configure --prefix=... --with-matlab=... and then make install. this will build and install the gui, language bindings, and examples. these changes will probably break the automatic builds but the necessary changes to the rappture-runtime package should be committed in good time.

File size: 978 bytes
Line 
1/*
2 * ======================================================================
3 *  Copyright (c) 2004-2005  Purdue Research Foundation
4 *
5 *  See the file "license.terms" for information on usage and
6 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
7 * ======================================================================
8 */
9#ifdef __cplusplus
10extern "C" {
11#endif
12
13extern scew_element*
14scew_element_parent(scew_element const* element);
15
16/**
17 * Returns a list of elements that matches the name specified. The
18 * number of elements is returned in count. The returned pointer must be
19 * freed after using it, calling the <code>scew_element_list_free</code>
20 * function.
21 */
22extern scew_element**
23scew_element_list_all(scew_element const* parent, unsigned int* count);
24
25extern int
26scew_element_copy_attr(scew_element const* fromElement, scew_element* toElement);
27
28extern scew_element*
29scew_element_copy (scew_element* element);
30
31#ifdef __cplusplus
32}
33#endif
34
Note: See TracBrowser for help on using the repository browser.