osgEarth 2.1.1
Public Member Functions | Protected Attributes

osgEarth::Style Class Reference

Inheritance diagram for osgEarth::Style:
Collaboration diagram for osgEarth::Style:

List of all members.

Public Member Functions

 Style ()
 Style (const std::string &name, const std::string &title)
const std::string & getName ()
void setName (const std::string &name)
const std::string & getTitle ()
void setTitle (const std::string &title)

Protected Attributes

std::string _name
std::string _title

Detailed Description

A WMS Style

Definition at line 42 of file Capabilities.


Constructor & Destructor Documentation

Style::Style ( )

Definition at line 43 of file Capabilities.cpp.

{
}
Style::Style ( const std::string &  name,
const std::string &  title 
)

Definition at line 47 of file Capabilities.cpp.

{
    _name = name;
    _title = title;
}

Member Function Documentation

const std::string& osgEarth::Style::getName ( ) [inline]

Gets the name of the style

Definition at line 51 of file Capabilities.

{return _name;}

Here is the caller graph for this function:

const std::string& osgEarth::Style::getTitle ( ) [inline]

Gets the title of the style

Definition at line 61 of file Capabilities.

{return _title;}
void osgEarth::Style::setName ( const std::string &  name) [inline]

Sets the name of the style

Definition at line 56 of file Capabilities.

{_name = name;}

Here is the caller graph for this function:

void osgEarth::Style::setTitle ( const std::string &  title) [inline]

Sets the title of the style

Definition at line 66 of file Capabilities.

{_title = title;}

Member Data Documentation

std::string osgEarth::Style::_name [protected]

Definition at line 69 of file Capabilities.

std::string osgEarth::Style::_title [protected]

Definition at line 70 of file Capabilities.


The documentation for this class was generated from the following files:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines