source: trunk/src/objects/RpObjConfig.h @ 1615

Last change on this file since 1615 was 1568, checked in by dkearney, 15 years ago

adding dump/configure interface to curve object, plot object is broken

File size: 849 bytes
Line 
1/*
2 * ======================================================================
3 *  AUTHOR:  Derrick S. Kearney, Purdue University
4 *  Copyright (c) 2005-2009  Purdue Research Foundation
5 *
6 *  See the file "license.terms" for information on usage and
7 *  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
8 * ======================================================================
9 */
10
11#ifndef RAPPTURE_OBJECT_CONFIG_H
12#define RAPPTURE_OBJECT_CONFIG_H
13
14namespace Rappture {
15
16enum RapptureConfigureFlags {
17    RPCONFIG_XML    =(1<<0),       /* Configure Object from Rappture 1.0 XML. */
18    RPCONFIG_TREE   =(1<<1),       /* Configure Object from Rappture 1.5 Tree. */
19};
20
21typedef struct {
22    size_t indent;
23    size_t tabstop;
24    const char *retStr;
25} ClientDataXml;
26
27} // end namespace Rappture
28
29#endif // RAPPTURE_OBJECT_CONFIG_H
Note: See TracBrowser for help on using the repository browser.