source: trunk/src/objects/RpScatter.h @ 4600

Last change on this file since 4600 was 3177, checked in by mmc, 12 years ago

Updated all of the copyright notices to reference the transfer to
the new HUBzero Foundation, LLC.

File size: 1.0 KB
Line 
1/*
2 * ======================================================================
3 *  AUTHOR:  Derrick 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#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.