Renamed libsettable to libattributes.

This commit is contained in:
Jens Luedicke
2011-01-22 20:08:41 +01:00
parent e403394516
commit fb4eca99db
3 changed files with 35 additions and 19 deletions

View File

@@ -1,4 +1,4 @@
#include "settable.hpp"
#include "attributes.hpp"
#include <iostream>
@@ -13,9 +13,9 @@ int convert<int>(const std::string &value) {
}
struct foo : settable::settable {
struct foo : attributes {
foo() {
REGISTER_MEMBER(int, x);
REGISTER_ATTRIBUTE(int, x);
}
int x;