diff options
Diffstat (limited to 'lib/binding.h')
| -rw-r--r-- | lib/binding.h | 14 |
1 files changed, 7 insertions, 7 deletions
| diff --git a/lib/binding.h b/lib/binding.h index 7fbe20e..5578a09 100644 --- a/lib/binding.h +++ b/lib/binding.h | |||
| @@ -12,9 +12,9 @@ namespace verbly { | |||
| 12 | integer, | 12 | integer, |
| 13 | string | 13 | string |
| 14 | }; | 14 | }; |
| 15 | 15 | ||
| 16 | // Default constructor | 16 | // Default constructor |
| 17 | 17 | ||
| 18 | binding() | 18 | binding() |
| 19 | { | 19 | { |
| 20 | } | 20 | } |
| @@ -37,22 +37,22 @@ namespace verbly { | |||
| 37 | ~binding(); | 37 | ~binding(); |
| 38 | 38 | ||
| 39 | // Generic accessors | 39 | // Generic accessors |
| 40 | 40 | ||
| 41 | type getType() const | 41 | type getType() const |
| 42 | { | 42 | { |
| 43 | return type_; | 43 | return type_; |
| 44 | } | 44 | } |
| 45 | 45 | ||
| 46 | // Integer | 46 | // Integer |
| 47 | 47 | ||
| 48 | binding(int arg); | 48 | binding(int arg); |
| 49 | 49 | ||
| 50 | int getInteger() const; | 50 | int getInteger() const; |
| 51 | 51 | ||
| 52 | // String | 52 | // String |
| 53 | 53 | ||
| 54 | binding(std::string arg); | 54 | binding(std::string arg); |
| 55 | 55 | ||
| 56 | std::string getString() const; | 56 | std::string getString() const; |
| 57 | 57 | ||
| 58 | private: | 58 | private: |
