MineLink
 All Data Structures Functions Variables Pages
destination.h
1 #ifndef __DESTINATION_H__
2 #define __DESTINATION_H__
3 
4 #include <string>
5 #include "named.h"
6 
7 using std::string;
8 
9 namespace delphos{
21 class Destination : public Named {
22 private:
23  string _attr_name;
24 public:
32  Destination(const string & destination_name, const string & value_attribute_name);
33 
40  Destination(const Destination & other);
41 
48  const string & ValueAttributeName() const;
49 
55  const string & GetValueAttributeName() const;
56 };
57 }
58 #endif
59 
const string & GetValueAttributeName() const
Retrieves the name of the attribute containing the block values sent to the destination.
Definition: destination.cpp:11
const string & ValueAttributeName() const
Retrieves the name of the attribute containing the block values sent to the destination.
Definition: destination.cpp:7
Defines a destination or process.
Definition: destination.h:21
Destination(const string &destination_name, const string &value_attribute_name)
Creates a new destination.
Definition: destination.cpp:3