Memosa-FVM  0.2
FieldLabel.h
Go to the documentation of this file.
1 // This file os part of FVM
2 // Copyright (c) 2012 FVM Authors
3 // See LICENSE file for terms.
4 
5 #ifndef _FIELDLABEL_H_
6 #define _FIELDLABEL_H_
7 
8 class FieldLabel
9 {
10 public:
11  FieldLabel(const string& name) :
12  _name(name)
13  {}
14 
15  const string& getName() const {return _name;}
16 private:
17  FieldLabel(const FieldLabel&);
18  const string _name;
19 };
20 
21 #endif
const string _name
Definition: FieldLabel.h:18
const string & getName() const
Definition: FieldLabel.h:15
FieldLabel(const string &name)
Definition: FieldLabel.h:11