source: trunk/src/core/RpUtilsCInterface.cc @ 2408

Last change on this file since 2408 was 1018, checked in by gah, 16 years ago

Massive changes: New directory/file layout

File size: 744 bytes
Line 
1/*
2 * ----------------------------------------------------------------------
3 *  INTERFACE: C Rappture Utils Source
4 *
5 * ======================================================================
6 *  AUTHOR:  Derrick Kearney, Purdue University
7 *  Copyright (c) 2004-2007  Purdue Research Foundation
8 *
9 *  See the file "license.terms" for information on usage and
10 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
11 * ======================================================================
12 */
13
14#include "RpUtils.h"
15#include "RpUtilsCInterface.h"
16
17#ifdef __cplusplus
18extern "C" {
19#endif
20
21int
22rpUtilsProgress (int percent, const char* text)
23{
24    return Rappture::Utils::progress(percent,text);
25}
26
27#ifdef __cplusplus
28}
29#endif
Note: See TracBrowser for help on using the repository browser.