source: branches/blt4/src/objects/RpScatter.h @ 2742

Last change on this file since 2742 was 1560, checked in by dkearney, 15 years ago

updates to the object system, fixed up tree and xml parser objects, added some basic tests for them and adopted number object to accept xml text and configure itself from the parsed xml. added fermi3.cc example program which contains suggested interface from apps meeting.

File size: 1.0 KB
Line 
1/*
2 * ======================================================================
3 *  AUTHOR:  Derrick 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#include <errno.h>
11#include "RpCurve.h"
12
13#ifndef RAPPTURE_SCATTER_H
14#define RAPPTURE_SCATTER_H
15
16namespace Rappture {
17
18class Scatter : public Curve
19{
20    public:
21
22        Scatter();
23
24        Scatter(const char *path);
25
26        Scatter(const char *path,
27                const char *label,
28                const char *desc,
29                const char *group);
30
31        Scatter(const Scatter& o);
32
33        virtual ~Scatter();
34
35        // const char *xml();
36        const int is() const;
37
38    protected:
39};
40
41
42} // namespace Rappture
43
44/*--------------------------------------------------------------------------*/
45
46#endif // RAPPTURE_SCATTER_H
Note: See TracBrowser for help on using the repository browser.