Last change
on this file since 97dff0 was b11f5e, checked in by Frederik Heber <heber@…>, 12 years ago |
FIX: Value::setAsString(), ::getAsString take const ref.
- arg chain was string instances before, corrected to const ref.
- also extracted Value<bool> specialization into own module.
|
-
Property mode
set to
100644
|
File size:
514 bytes
|
Line | |
---|
1 | /*
|
---|
2 | * Value_string.hpp
|
---|
3 | *
|
---|
4 | * Created on: Jan 10, 2013
|
---|
5 | * Author: heber
|
---|
6 | */
|
---|
7 |
|
---|
8 | #ifndef VALUE_STRING_HPP_
|
---|
9 | #define VALUE_STRING_HPP_
|
---|
10 |
|
---|
11 | // include config.h
|
---|
12 | #ifdef HAVE_CONFIG_H
|
---|
13 | #include <config.h>
|
---|
14 | #endif
|
---|
15 |
|
---|
16 | #include <string>
|
---|
17 |
|
---|
18 | #include "Parameters/Value.hpp"
|
---|
19 |
|
---|
20 | template <>
|
---|
21 | bool Value<std::string>::isValidAsString(const std::string &_value) const throw(ParameterValidatorException);
|
---|
22 |
|
---|
23 | template <>
|
---|
24 | void Value<std::string>::setAsString(const std::string &_value) throw(ParameterException);
|
---|
25 |
|
---|
26 | #endif /* VALUE_STRING_HPP_ */
|
---|
Note:
See
TracBrowser
for help on using the repository browser.