source: branches/1.7/src/objects/RpObjConfig.h @ 6313

Last change on this file since 6313 was 5679, checked in by ldelgass, 9 years ago

Full merge 1.3 branch to uq branch to sync. Fixed partial subdirectory merge
by removing mergeinfo from lang/python/Rappture directory.

  • Property svn:eol-style set to native
File size: 846 bytes
Line 
1/*
2 * ======================================================================
3 *  AUTHOR:  Derrick S. Kearney, Purdue University
4 *  Copyright (c) 2004-2012  HUBzero Foundation, LLC
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.