~ubuntu-branches/debian/sid/osgearth/sid

« back to all changes in this revision

Viewing changes to src/osgEarthSymbology/FeatureDataSet

  • Committer: Bazaar Package Importer
  • Author(s): Pirmin Kalberer
  • Date: 2011-07-14 22:13:36 UTC
  • Revision ID: james.westby@ubuntu.com-20110714221336-94igk9rskxveh794
Tags: upstream-2.0+dfsg
ImportĀ upstreamĀ versionĀ 2.0+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*-c++-*- */
 
2
/* osgEarth - Dynamic map generation toolkit for OpenSceneGraph
 
3
 * Copyright 2008-2009 Pelican Ventures, Inc.
 
4
 * http://osgearth.org
 
5
 *
 
6
 * osgEarth is free software; you can redistribute it and/or modify
 
7
 * it under the terms of the GNU Lesser General Public License as published by
 
8
 * the Free Software Foundation; either version 2 of the License, or
 
9
 * (at your option) any later version.
 
10
 *
 
11
 * This program is distributed in the hope that it will be useful,
 
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
 * GNU Lesser General Public License for more details.
 
15
 *
 
16
 * You should have received a copy of the GNU Lesser General Public License
 
17
 * along with this program.  If not, see <http://www.gnu.org/licenses/>
 
18
 */
 
19
#ifndef OSGEARTHSYMBOLOGY_FEATUREDATASET_H
 
20
#define OSGEARTHSYMBOLOGY_FEATUREDATASET_H 1
 
21
 
 
22
#include <osgEarthSymbology/Common>
 
23
#include <osgEarthFeatures/FeatureSource>
 
24
 
 
25
namespace osgEarth { namespace Symbology 
 
26
{
 
27
    /**
 
28
     * Source for (possibly dynamic) feature data that is to be symbolized.
 
29
     */
 
30
    class OSGEARTHSYMBOLOGY_EXPORT FeatureDataSet : public osg::Referenced
 
31
    {
 
32
    public:
 
33
        /**
 
34
         * Creates and returns an iterator that the caller can use to access
 
35
         * each of the Features in this dataset. Caller is responsible for the
 
36
         * return object.
 
37
         */
 
38
        virtual osgEarth::Features::FeatureCursor* createCursor() =0;
 
39
 
 
40
        /**
 
41
         * Gets the revision number of the dataset. Caller can use this is detect
 
42
         * whether it is up to date with the latest version of the data set.
 
43
         */
 
44
        virtual int getRevision() const =0;
 
45
 
 
46
    protected:
 
47
        FeatureDataSet();
 
48
    };
 
49
 
 
50
} } // namespace osgEarth::Symbology
 
51
 
 
52
 
 
53
#endif // OSGEARTHSYMBOLOGY_FEATUREDATASET_H
 
54